diff --git a/code/ZAS/Fire.dm b/code/ZAS/Fire.dm index e67d2ad3ac..73ce3f01e8 100644 --- a/code/ZAS/Fire.dm +++ b/code/ZAS/Fire.dm @@ -170,7 +170,7 @@ If it gains pressure too slowly, it may leak or just rupture instead of explodin continue //Spread the fire. - if(prob( 50 + 50 * (firelevel/vsc.fire_firelevel_multiplier) ) && my_tile.CanPass(null, enemy_tile, 0,0) && enemy_tile.CanPass(null, my_tile, 0,0)) + if(prob( 50 + 50 * (firelevel/vsc.fire_firelevel_multiplier) ) && my_tile.CanPass(src, enemy_tile, 0,0) && enemy_tile.CanPass(src, my_tile, 0,0)) enemy_tile.create_fire(firelevel) else diff --git a/code/__defines/belly_modes_vr.dm b/code/__defines/belly_modes_vr.dm index 2d8f714fc4..7ac58ddf6b 100644 --- a/code/__defines/belly_modes_vr.dm +++ b/code/__defines/belly_modes_vr.dm @@ -21,6 +21,7 @@ #define DM_FLAG_AFFECTWORN 0x10 #define DM_FLAG_JAMSENSORS 0x20 #define DM_FLAG_FORCEPSAY 0x40 +#define DM_FLAG_SLOWBODY 0x80 //CHOMPAdd //Item related modes #define IM_HOLD "Hold" diff --git a/code/__defines/chemistry.dm b/code/__defines/chemistry.dm index ed22966cbe..abaab99885 100644 --- a/code/__defines/chemistry.dm +++ b/code/__defines/chemistry.dm @@ -54,8 +54,9 @@ var/list/cheartstopper = list("potassium_chloride") // Thi #define MAX_PILL_SPRITE 24 //max icon state of the pill sprites #define MAX_BOTTLE_SPRITE 4 //max icon state of the pill sprites +#define MAX_PATCH_SPRITE 4 //max icon state of the patch sprites, CHOMPedit #define MAX_MULTI_AMOUNT 20 // Max number of pills/patches that can be made at once #define MAX_UNITS_PER_PILL 60 // Max amount of units in a pill #define MAX_UNITS_PER_PATCH 60 // Max amount of units in a patch #define MAX_UNITS_PER_BOTTLE 60 // Max amount of units in a bottle (it's volume) -#define MAX_CUSTOM_NAME_LEN 64 // Max length of a custom pill/condiment/whatever \ No newline at end of file +#define MAX_CUSTOM_NAME_LEN 64 // Max length of a custom pill/condiment/whatever diff --git a/code/__defines/misc_ch.dm b/code/__defines/misc_ch.dm index 0ea4cec334..9f53214a16 100644 --- a/code/__defines/misc_ch.dm +++ b/code/__defines/misc_ch.dm @@ -1,3 +1,5 @@ +//Department defines +#define DEPARTMENT_NONCREW "Non crew" //Material defines #define MAT_CARPET "red carpet" @@ -8,4 +10,4 @@ #define MAT_CARPET_SILVERBLUE "silver blue carpet" #define MAT_CARPET_PINK "pink carpet" #define MAT_CARPET_PURPLE "purple carpet" -#define MAT_CARPET_ORANGE "orange carpet" \ No newline at end of file +#define MAT_CARPET_ORANGE "orange carpet" diff --git a/code/_helpers/text.dm b/code/_helpers/text.dm index e2bc37d93c..5e77b4b09c 100644 --- a/code/_helpers/text.dm +++ b/code/_helpers/text.dm @@ -54,7 +54,9 @@ input = copytext(input,1,max_length) if(extra) - input = replace_characters(input, list("\n"=" ","\t"=" ")) + var/temp_input = replace_characters(input, list("\n"=" ","\t"=" "))//one character is replaced by two + if(length(input) < (length(temp_input) - 6))//6 is the number of linebreaks allowed per message + input = replace_characters(temp_input,list(" "=" "))//replace again, this time the double spaces with single ones if(encode) // The below \ escapes have a space inserted to attempt to enable CI auto-checking of span class usage. Please do not remove the space. diff --git a/code/_helpers/type2type.dm b/code/_helpers/type2type.dm index ef25f44142..e21d973b1b 100644 --- a/code/_helpers/type2type.dm +++ b/code/_helpers/type2type.dm @@ -293,21 +293,122 @@ return strtype return copytext(strtype, delim_pos) +// Concatenates a list of strings into a single string. A seperator may optionally be provided. +/proc/list2text(list/ls, sep) + if (ls.len <= 1) // Early-out code for empty or singleton lists. + return ls.len ? ls[1] : "" + + var/l = ls.len // Made local for sanic speed. + var/i = 0 // Incremented every time a list index is accessed. + + if (sep != null) + // Macros expand to long argument lists like so: sep, ls[++i], sep, ls[++i], sep, ls[++i], etc... + #define S1 sep, ls[++i] + #define S4 S1, S1, S1, S1 + #define S16 S4, S4, S4, S4 + #define S64 S16, S16, S16, S16 + + . = "[ls[++i]]" // Make sure the initial element is converted to text. + + // Having the small concatenations come before the large ones boosted speed by an average of at least 5%. + if (l-1 & 0x01) // 'i' will always be 1 here. + . = text("[][][]", ., S1) // Append 1 element if the remaining elements are not a multiple of 2. + if (l-i & 0x02) + . = text("[][][][][]", ., S1, S1) // Append 2 elements if the remaining elements are not a multiple of 4. + if (l-i & 0x04) + . = text("[][][][][][][][][]", ., S4) // And so on.... + if (l-i & 0x08) + . = text("[][][][][][][][][][][][][][][][][]", ., S4, S4) + if (l-i & 0x10) + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S16) + if (l-i & 0x20) + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S16, S16) + if (l-i & 0x40) + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S64) + while (l > i) // Chomp through the rest of the list, 128 elements at a time. + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S64, S64) + + #undef S64 + #undef S16 + #undef S4 + #undef S1 + else + // Macros expand to long argument lists like so: ls[++i], ls[++i], ls[++i], etc... + #define S1 ls[++i] + #define S4 S1, S1, S1, S1 + #define S16 S4, S4, S4, S4 + #define S64 S16, S16, S16, S16 + + . = "[ls[++i]]" // Make sure the initial element is converted to text. + + if (l-1 & 0x01) // 'i' will always be 1 here. + . += S1 // Append 1 element if the remaining elements are not a multiple of 2. + if (l-i & 0x02) + . = text("[][][]", ., S1, S1) // Append 2 elements if the remaining elements are not a multiple of 4. + if (l-i & 0x04) + . = text("[][][][][]", ., S4) // And so on... + if (l-i & 0x08) + . = text("[][][][][][][][][]", ., S4, S4) + if (l-i & 0x10) + . = text("[][][][][][][][][][][][][][][][][]", ., S16) + if (l-i & 0x20) + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S16, S16) + if (l-i & 0x40) + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S64) + while (l > i) // Chomp through the rest of the list, 128 elements at a time. + . = text("[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]\ + [][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]", ., S64, S64) + + #undef S64 + #undef S16 + #undef S4 + #undef S1 + +// Converts a string into a list by splitting the string at each delimiter found. (discarding the seperator) +/proc/text2list(text, delimiter="\n") + var/delim_len = length(delimiter) + if (delim_len < 1) + return list(text) + + . = list() + var/last_found = 1 + var/found + + do + found = findtext(text, delimiter, last_found, 0) + . += copytext(text, last_found, found) + last_found = found + delim_len + while (found) + /proc/type2parent(child) var/string_type = "[child]" var/last_slash = findlasttext(string_type, "/") - if(last_slash == 1) - switch(child) - if(/datum) - return null - if(/obj || /mob) - return /atom/movable - if(/area || /turf) - return /atom - else - return /datum + if (last_slash != 1) + return text2path(copytext(string_type, 1, last_slash)) + switch (child) + if (/datum) + return null + if (/obj, /mob) + return /atom/movable + if (/area, /turf) + return /atom + else + return /datum - return text2path(copytext(string_type, 1, last_slash)) //checks if a file exists and contains text //returns text as a string if these conditions are met diff --git a/code/controllers/subsystems/transcore_vr.dm b/code/controllers/subsystems/transcore_vr.dm index 6bffac865d..81364db733 100644 --- a/code/controllers/subsystems/transcore_vr.dm +++ b/code/controllers/subsystems/transcore_vr.dm @@ -74,9 +74,13 @@ SUBSYSTEM_DEF(transcore) //In a human BITSET(H.hud_updateflag, BACKUP_HUD) - if(H == imp.imp_in && H.mind && H.stat < DEAD) - db.m_backup(H.mind,H.nif) - persist_nif_data(H) + if(H == imp.imp_in && H.stat < DEAD) //CHOMPEdit Start + if(H.mind) + db.m_backup(H.mind,H.nif) + persist_nif_data(H) + else if(H.vr_link && H.vr_link.mind) + db.m_backup(H.vr_link.mind,H.nif) + persist_nif_data(H) //CHOMPEdit End if(MC_TICK_CHECK) return diff --git a/code/datums/components/material_container.dm b/code/datums/components/material_container.dm index fbad2752ee..2b0c74e269 100644 --- a/code/datums/components/material_container.dm +++ b/code/datums/components/material_container.dm @@ -152,6 +152,11 @@ to_chat(user, "[parent] cannot contain [material].") return + // Our sheet had no material. Whoops. + if(!matter_per_sheet) + to_chat(user, "[S] does not contain any matter acceptable by [parent].") + return + // If we can't fit the material for one sheet, we're full. if(!has_space(matter_per_sheet)) to_chat(user, "[parent] is full. Please remove materials from [parent] in order to insert more.") diff --git a/code/datums/looping_sounds/machinery_sounds.dm b/code/datums/looping_sounds/machinery_sounds.dm index 0330811428..d7011dd094 100644 --- a/code/datums/looping_sounds/machinery_sounds.dm +++ b/code/datums/looping_sounds/machinery_sounds.dm @@ -80,7 +80,7 @@ /datum/looping_sound/cerealmaker start_sound = 'sound/machines/kitchen/cerealmaker/cerealmaker-start.ogg' - start_length = 10 + start_length = 10 mid_sounds = list('sound/machines/kitchen/cerealmaker/cerealmaker-mid1.ogg'=10) mid_length = 60 end_sound = 'sound/machines/kitchen/cerealmaker/cerealmaker-stop.ogg' @@ -104,4 +104,14 @@ mid_length = 70 end_sound = 'sound/machines/air_pump/airpumpshutdown.ogg' volume = 15 - pref_check = /datum/client_preference/air_pump_noise \ No newline at end of file + pref_check = /datum/client_preference/air_pump_noise + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/vehicle_engine + start_sound = 'sound/machines/vehicle/engine_start.ogg' + start_length = 2 + mid_sounds = list('sound/machines/vehicle/engine_mid.ogg'=1) + mid_length = 6 + end_sound = 'sound/machines/vehicle/engine_end.ogg' + volume = 20 diff --git a/code/datums/riding.dm b/code/datums/riding.dm index 9dd32dcd93..ec5afff5d5 100644 --- a/code/datums/riding.dm +++ b/code/datums/riding.dm @@ -225,3 +225,28 @@ /datum/riding/boat/get_offsets(pass_index) // list(dir = x, y, layer) return list("[NORTH]" = list(1, 2), "[SOUTH]" = list(1, 2), "[EAST]" = list(1, 2), "[WEST]" = list(1, 2)) + +/datum/riding/snowmobile + only_one_driver = TRUE // Keep your hands to yourself back there! + +/datum/riding/snowmobile/get_offsets(pass_index) // list(dir = x, y, layer) + var/H = 3 // Horizontal seperation. + var/V = 2 // Vertical seperation. + var/O = 2 // Vertical offset. + switch(pass_index) + if(1) // Person on front. + return list( + "[NORTH]" = list( 0, O+V, MOB_LAYER), + "[SOUTH]" = list( 0, O, ABOVE_MOB_LAYER), + "[EAST]" = list( H, O, MOB_LAYER), + "[WEST]" = list(-H, O, MOB_LAYER) + ) + if(2) // Person on back. + return list( + "[NORTH]" = list( 0, O, ABOVE_MOB_LAYER), + "[SOUTH]" = list( 0, O+V, MOB_LAYER), + "[EAST]" = list(-H, O, MOB_LAYER), + "[WEST]" = list( H, O, MOB_LAYER) + ) + else + return null // This will runtime, but we want that since this is out of bounds. diff --git a/code/datums/supplypacks/hydroponics_vr.dm b/code/datums/supplypacks/hydroponics_vr.dm index 7476fdd29b..fa912852e7 100644 --- a/code/datums/supplypacks/hydroponics_vr.dm +++ b/code/datums/supplypacks/hydroponics_vr.dm @@ -70,4 +70,10 @@ name = "Jerboa crate" cost = 10 containertype = /obj/structure/largecrate/animal/jerboa - containername = "Jerboa crate" \ No newline at end of file + containername = "Jerboa crate" + +/datum/supply_pack/hydro/tits + name = "A pair of great tits" + cost = 10 + containertype = /obj/structure/largecrate/tits + containername = "A pair of great tits" diff --git a/code/datums/supplypacks/security.dm b/code/datums/supplypacks/security.dm index 5c4ddf1a6a..fc8d9b373b 100644 --- a/code/datums/supplypacks/security.dm +++ b/code/datums/supplypacks/security.dm @@ -444,7 +444,8 @@ /obj/item/weapon/storage/belt/security = 3, /obj/item/clothing/glasses/sunglasses/sechud = 3, /obj/item/device/radio/headset/headset_sec/alt = 3, - /obj/item/clothing/suit/storage/hooded/wintercoat/security = 3 + /obj/item/clothing/suit/storage/hooded/wintercoat/security = 3, + /obj/item/clothing/glasses/sunglasses/sechud/tactical_sec_vis = 3 ) cost = 10 containertype = /obj/structure/closet/crate/nanothreads diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm index 767268dc7f..116a17c67e 100644 --- a/code/defines/obj/weapon.dm +++ b/code/defines/obj/weapon.dm @@ -39,6 +39,12 @@ throwforce = 0 throw_speed = 4 throw_range = 20 + var/randomize = TRUE + var/square_chance = 10 + +/obj/item/weapon/soap/Initialize() + if(randomize && prob(square_chance)) + icon_state = "[icon_state]-alt" /obj/item/weapon/soap/nanotrasen desc = "A NanoTrasen-brand bar of soap. Smells of phoron, a years-old marketing gimmick." @@ -55,10 +61,6 @@ desc = "An untrustworthy bar of soap. Smells of fear." icon_state = "soapsyndie" -/obj/item/weapon/soap/syndie - desc = "An dubious bar of soap. Smells of lyes." - icon_state = "soapsyndie" - /obj/item/weapon/soap/space_soap desc = "Smells like hot metal and walnuts." icon_state = "space_soap" @@ -135,7 +137,6 @@ desc = "Smells like honey." icon_state = "golden_soap" - /obj/item/weapon/bikehorn name = "bike horn" desc = "A horn off of a bicycle." diff --git a/code/game/gamemodes/events/holidays/Holidays.dm b/code/game/gamemodes/events/holidays/Holidays.dm index c04d6408b6..9c156a50bd 100644 --- a/code/game/gamemodes/events/holidays/Holidays.dm +++ b/code/game/gamemodes/events/holidays/Holidays.dm @@ -22,7 +22,7 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t Holiday = list() // reset our switch now so we can recycle it as our Holiday name - var/YY = text2num(time2text(world.timeofday, "YY")) // get the current year + //var/YY = text2num(time2text(world.timeofday, "YY")) // get the current year - unused currently but can be used for floating dates var/MM = text2num(time2text(world.timeofday, "MM")) // get the current month var/DD = text2num(time2text(world.timeofday, "DD")) // get the current day @@ -36,56 +36,63 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t Holiday["New Years's Day"] = "The day of the new solar year on Sol." if(12) Holiday["Vertalliq-Qerr"] = "Vertalliq-Qerr, translated to mean 'Festival of the Royals', is a \ - Skrell holiday that celebrates the Qerr-Katish and all they have provided for the rest of Skrell society, \ + skrellian holiday that celebrates the Qerr-Katish and all they have provided for the rest of skrellian society, \ it often features colourful displays and skilled performers take this time to show off some of their more \ - fancy displays." + elaborate displays." + if(14) + Holiday["Lohri"] = "A human festival traditionally celebrating the end of winter on the Indian subcontinent. \ + The holiday is now celebrated independently of seasons in many colonies with large populations of Indian \ + descent. Traditions include the burning of bonfires, dancing, and door-to-door singing in exchange for treats." + if(30) + Holiday["Lunar New Year"] = "Originally the new year on the ancient lunisolar calendar, the Lunar New Year is \ + celebrated with a wide variety of east Asian traditions with roots in Chinese, Japanese, Korean, Vietnamese, \ + Tibetan, Mongolian, and Ryukyu cultures. Elaborate parades, performances, dances and meals are usual staples." if(2) //Feb switch(DD) if(2) - Holiday["Groundhog Day"] = "An unoffical holiday based on ancient folklore that originated on Earth, \ - that involves the worship of an almighty groundhog, that could control the weather based on if it casted a shadow." + Holiday["Groundhog Day"] = "An unoffical holiday based on medieval folklore that originated on Earth, \ + that involves the reverence of a prophetic animal - traditionally a badger, fox or groundhog - that was \ + said to be able to predict, or even control the changing of the seasons." if(14) - Holiday["Valentine's Day"] = "An old holiday that revolves around romance and love." + Holiday["Valentine's Day"] = "A human holiday that revolves around expressions of romance and love. \ + In particular, the exchanging of gifts, letters and cards is traditional." + if(15) + Holiday["Lantern Festival"] = "A human holiday with origins in Chinese new year celebrations. Participants \ + carry or hang elaborate paper lanterns that are thought to bring good luck. Today, electric lights are often used \ + in environments where open flames would be hazardous or non-functional." if(17) Holiday["Random Acts of Kindness Day"] = "An unoffical holiday that challenges everyone to perform \ - acts of kindness to their friends, co-workers, and strangers, for no reason." + acts of kindness to their friends, co-workers, and strangers, with no strings attached." if(3) //Mar switch(DD) if(3) - Holiday["Qixm-tes"] = "Qixm-tes, or 'Day of mourning', is a Skrell holiday where Skrell gather at places \ - of worship and sing a song of mourning for all those who have died in service to their empire." + Holiday["Qixm-tes"] = "Qixm-tes, or 'Day of mourning', is a skrellian holiday where skrell gather at places \ + of worship and sing a song of mourning for all those who have died in service to their kingdoms." if(14) Holiday["Pi Day"] = "An unoffical holiday celebrating the mathematical constant Pi. It is celebrated on \ March 14th, as the digits form 3 14, the first three significant digits of Pi. Observance of Pi Day generally \ involve eating (or throwing) pie, due to a pun. Pies also tend to be round, and thus relatable to Pi." if(17) - Holiday["St. Patrick's Day"] = "An old holiday originating from Earth, Sol, celebrating the color green, \ - shamrocks, attending parades, and drinking alcohol." + Holiday["St. Patrick's Day"] = "A holiday originating on Earth, celebrating a popular version of Irish culture. \ + Traditions include elaborate parades, wearing of the colour green, and drinking alcohol." + if(18) + Holiday["Holi"] = "Also known as the Festival of Colours, a human Hindu festival celebrating divine love and the \ + triumph of good over evil. Traditionally a bonfire is lit overnight, followed by the free-for-all smearing of \ + celebrants with colourful pigments, and the forgiveness of past wrongs." if(27) - if(YY == 16) - Holiday["Easter"] = "" - if(31) - if(YY == 13) - Holiday["Easter"] = "" + Holiday["Easter"] = "A Earth springtime festival variously celebrating rebirth and the beginning of the planting \ + season. Traditionally celebrated with the painting and exchange of eggs, sometimes made from chocolate. \ + The holiday's date was standardized in the 22nd century." if(4) //Apr switch(DD) if(1) - Holiday["April Fool's Day"] = "An old holiday that endevours one to pull pranks and spread hoaxes on their friends." - if(YY == 18) - Holiday["Easter"] = "" - if(8) - if(YY == 15) - Holiday["Easter"] = "" - if(16) - if(YY == 17) //Easter can go die for all of this copypasta. - Holiday["Easter"] = "" - - if(20) - if(YY == 14) - Holiday["Easter"] = "" + Holiday["April Fool's Day"] = "A human holiday that endevours one to pull pranks and spread hoaxes on their friends." + if(5) + Holiday["First Day of Passover"] = "The first of eight days of a human holiday celebrating the exodus of ancient Jewish people \ + from slavery, and of the spring harvest. The most well-known tradition is the Sedar meal. The date was standardized in the 22nd century." if(22) Holiday["Earth Day"] = "A holiday of enviromentalism, that originated on it's namesake, Earth." @@ -100,7 +107,7 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t Observance of this day varies throughout human space, but most common traditions are the act of bringing flowers to graves,\ attending parades, and the wearing of poppies (either paper or real) in one's clothing." if(28) - Holiday["Jiql-tes"] = "A Skrellian holiday that translates to 'Day of Celebration', Skrell communities \ + Holiday["Jiql-tes"] = "A skrellian holiday that translates to 'Day of Celebration', skrell communities \ gather for a grand feast and give gifts to friends and close relatives." if(6) //Jun @@ -113,7 +120,11 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t and to thank blood donors for their voluntary, life-saving gifts of blood." if(20) Holiday["Civil Servant's Day"] = "Civil Servant's Day is a holiday observed in SCG member states that honors civil servants everywhere,\ -+ (especially those who are members of the armed forces and the emergency services), or have been or have been civil servants in the past." + (especially those who are members of the armed forces and the emergency services), or have been or have been civil servants in the past." +/* if(25) + Holiday["Merhyat Njarha"] = "A Njarir'Akhan tajaran tradition translating to \"Harmony of the House\", in which Njarjirii citizens pay \ + homage to their ruling house and their ancestors. Traditions include large communal meals and dances hosted by the ruling house, \ + and the intensive upkeep of community spaces."*/ if(7) //Jul switch(DD) @@ -126,36 +137,43 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t if(8) //Aug switch(DD) -// if(10) -// Holiday["S'randarr's Day"] = "A Tajaran holiday that occurs on the longest day of the year in summer, -// on Ahdomai. It is named after the Tajaran deity of Light, and huge celebrations are common." -//VOREStation Add - Of course we need this. - if(8) - Holiday["Vore Day"] = "A holiday representing the innate desire in all/most/some/a few of us to devour each other or be devoured. \ - That's probably why you're here, isn't it? Get to it, then!" -//VOREStation Add End. - + if(11) + Holiday["Tajaran Contact Day"] = "The anniversary of first contact between SolGov and the tajaran species, widely observed\ + throughout tajaran and human space. Marks the date that in 2513, a human exploration team investigating electromagnetic \ + emissions from the Meralar system made radio contact with the tajaran scientific outpost that had broadcast them." + if(20) + Holiday["Obon"] = "An ancient Earth holiday originating in east Asia, for the honouring of one's ancestral spirits. \ + Traditions include the maintenance of grave sites and memorials, and community traditional dance performances." if(27) Holiday["Forgiveness Day"] = "A time to forgive and be forgiven." if(9) //Sep switch(DD) if(17) - Holiday["Qill-xamr"] = "Translated to 'Night of the dead', it is a Skrell holiday where Skrell \ + Holiday["Qill-xamr"] = "Translated to 'Night of the dead', it is a skrellian holiday where skrell \ communities hold parties in order to remember loved ones who passed, unlike Qixm-tes, this applies to everyone \ and is a joyful celebration." if(19) - Holiday["Talk-Like-a-Pirate Day"] = "Ahoy, matey! Tis unoffical holiday be celebratin' the jolly \ - good humor of speakin' like the pirates of old." + Holiday["Talk-Like-a-Pirate Day"] = "Ahoy, matey! It be the unoffical holiday celebratin' the salty \ + sea humor of speakin' like the pirates of old." + if(20) + Holiday["Rosh Hashanah"] = "An old human holiday that marks the traditional Hebrew new year." if(28) Holiday["Stupid-Questions Day"] = "Known as Ask A Stupid Question Day, it is an unoffical holiday \ created by teachers in Sol, very long ago, to encourage students to ask more questions in the classroom." if(10) //Oct switch(DD) + if(9) + Holiday["Lief Eriksson Day"] = "A day commemorating Norse explorer Lief Eriksson, an early Scandinavian cultural figure \ + who is thought to have been the first European to set foot in North America." if(16) Holiday["Boss' Day"] = "Boss' Day has traditionally been a day for employees to thank their bosses for the difficult work that they do \ throughout the year. This day was created for the purpose of strengthening the bond between employer and employee." + if(21) + Holiday["First Day of Diwali"] = "An ancient Hindu, Jain and Sikh festival lasting five days, celebrating victory of light over darkness, good over \ + evil, and knowledge over ignorance. It is celebrated by the wearing of your finest clothes, decorating with oil lamps and rangolis, \ + fireworks, and gift-giving. Electric lights are often used in modern times where oil lamps would be hazardous or inoperable." if(31) Holiday["Halloween"] = "Originating from Earth, Halloween is also known as All Saints' Eve, and \ is celebrated by some by attending costume parties, trick-or-treating, carving faces in pumpkins, or visiting \ @@ -163,6 +181,10 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t if(11) //Nov switch(DD) + if(1) + Holiday["Day of the Dead"] = "An old human holiday celebrating the lives of deceased friends and family members, \ + by means of good humour and joyful parties. Offerings are often left at altars to the dead, and exchanging gifts \ + among the living is not uncommon." if(13) Holiday["Kindness Day"] = "Kindness Day is an unofficial holiday to highlight good deeds in the \ community, focusing on the positive power and the common thread of kindness which binds humanity and \ @@ -182,16 +204,17 @@ var/global/list/Holiday = list() //Holidays are lists now, so we can have more t if(10) Holiday["Human-Rights Day"] = "An old holiday created by an intergovernmental organization known back than as the United Nations, \ human rights were not recognized globally at the time, and the holiday was made in honor of the Universal Declaration of Human Rights. \ - These days, SolGov ensures that past efforts were not in vein, and continues to honor this holiday across the galaxy." + These days, SolGov ensures that past efforts were not in vein, and continues to honor this holiday across the galaxy as a historical \ + reminder." if(22) - Holiday["Vertalliq-qixim"] = "A Skrellian holiday that celebrates the Skrell's first landing on one of \ - their moons. It's often celebrated with grand festivals." + Holiday["Vertalliq-qixim"] = "A skrellian holiday that celebrates the skrell's first landing on one of \ + their moons. It's often celebrated with grand festivals." if(24) Holiday["Christmas Eve"] = "The eve of Christmas, an old holiday from Earth that mainly involves gift \ giving, decorating, family reunions, and a fat red human breaking into people's homes to steal milk and cookies." if(25) Holiday["Christmas"] = "Christmas is a very old holiday that originated in Earth, Sol. It was a \ - religious holiday for the Christian religion, which would later form Unitarianism. Nowdays, the holiday is celebrated \ + religious holiday for the Christian religion, which would later form Unitarianism. Nowadays, the holiday is celebrated \ generally by giving gifts, symbolic decoration, and reuniting with one's family. It also features a mythical fat \ red human, known as Santa, who broke into people's homes to loot cookies and milk." if(31) diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm index e33bbf11d9..9c5de6d54b 100644 --- a/code/game/jobs/job/civilian_vr.dm +++ b/code/game/jobs/job/civilian_vr.dm @@ -30,7 +30,7 @@ spawn_positions = 2 pto_type = PTO_CIVILIAN alt_titles = list("Hydroponicist" = /datum/alt_title/hydroponicist, "Cultivator" = /datum/alt_title/cultivator, "Farmer" = /datum/alt_title/farmer, - "Gardener" = /datum/alt_title/gardener, "Florist" = /datum/alt_title/florsit) + "Gardener" = /datum/alt_title/gardener, "Florist" = /datum/alt_title/florsit, "Rancher" = /datum/alt_title/rancher) /datum/alt_title/hydroponicist title = "Hydroponicist" @@ -45,6 +45,10 @@ title = "Florist" title_blurb = "A Florist may be less professional than their counterparts, and are more likely to tend to the public gardens if they aren't needed elsewhere." +/datum/alt_title/rancher + title = "Rancher" + title_blurb = "A Rancher is tasked with the care, feeding, raising, and harvesting of livestock." + /datum/job/qm pto_type = PTO_CARGO diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index cf09d52861..b0e678298b 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -174,6 +174,10 @@ //return (brain_type && LAZYACCESS(ideal_age_by_species, brain_type)) || LAZYACCESS(ideal_age_by_species, brain_type) || ideal_character_age //VOREStation Removal /datum/job/proc/is_species_banned(species_name, brain_type) + // CHOMPEdit begin -- Shadekin cannot be any crew position + if(species_name == SPECIES_SHADEKIN) + return TRUE + // CHOMPEdit end return FALSE // VOREStation Edit - Any species can be any job. /* VOREStation Removal if(banned_job_species == null) diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 570fbf32ab..63f8a702e0 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -657,8 +657,7 @@ var/global/datum/controller/occupations/job_master var/obj/belly/vore_spawn_gut var/mob/living/prey_to_nomph - var/datum/job/J = SSjob.get_job(rank) - fail_deadly = J?.offmap_spawn + //CHOMPEdit - Remove fail_deadly addition on offmap_spawn //Spawn them at their preferred one if(C && C.prefs.spawnpoint) @@ -804,7 +803,8 @@ var/global/datum/controller/occupations/job_master .["msg"] = spawnpos.msg .["channel"] = spawnpos.announce_channel else - if(fail_deadly) + var/datum/job/J = SSjob.get_job(rank) + if(fail_deadly || J?.offmap_spawn) to_chat(C, "Your chosen spawnpoint ([spawnpos.display_name]) is unavailable for your chosen job. Please correct your spawn point choice.") return to_chat(C, "Your chosen spawnpoint ([spawnpos.display_name]) is unavailable for your chosen job. Spawning you at the Arrivals shuttle instead.") diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 3c949ba66d..e71f4eb72b 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -51,6 +51,8 @@ var/const/ASSISTANT =(1<<11) var/const/BRIDGE =(1<<12) var/const/ENTERTAINER =(1<<13) //VOREStation Add +var/const/OTHER =(1<<10) //CHOMPStation Add +var/const/NONCREW =(1<<0) //CHOMPStation Add /* // CHOMPedit: Comment out Talon positions, we don't have that here. //VOREStation Add var/const/TALON =(1<<3) diff --git a/code/game/machinery/casino_ch.dm b/code/game/machinery/casino_ch.dm index 13c65bc335..e892d1218b 100644 --- a/code/game/machinery/casino_ch.dm +++ b/code/game/machinery/casino_ch.dm @@ -277,7 +277,7 @@ "sodawater", "lemon_lime", "sugar", "orangejuice", "limejuice", "watermelonjuice", "thirteenloko", "grapesoda", "coffee", "cafe_latte", "soy_latte", "hot_coco", "milk", "cream", "tea", "ice", "orangejuice", "lemonjuice", "limejuice", "berryjuice", "mint", "lemon_lime", "sugar", "orangejuice", "limejuice", "sodawater", - "tonic", "beer", "kahlua", "whiskey", "wine", "vodka", "gin", "rum", "tequilla", "vermouth", "cognac", + "tonic", "beer", "kahlua", "whiskey", "redwine", "vodka", "gin", "rum", "tequilla", "vermouth", "cognac", "ale", "mead", "bitters", "champagne", "singulo", "doctorsdelight", "nothing", "banana", "honey", "egg", "coco", "cherryjelly", "carrotjuice", "applejuice", "tomatojuice", "peanutbutter", "soymilk", "grenadine", "gingerale", "roy_rogers", "patron", "goldschlager", "gelatin", "melonliquor", "bluecuracao", "thirteenloko", "deadrum", "sake", "acidspit", diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm index 44459d1b96..67fc80168a 100644 --- a/code/game/machinery/rechargestation.dm +++ b/code/game/machinery/rechargestation.dm @@ -84,6 +84,16 @@ R.adjustBruteLoss(-weld_rate) if(wire_rate && R.getFireLoss() && cell.checked_use(wire_power_use * wire_rate * CELLRATE)) R.adjustFireLoss(-wire_rate) + + //VOREStation Add Start + else if(ispAI(occupant)) + var/mob/living/silicon/pai/P = occupant + + if(P.nutrition < 400) + P.nutrition = min(P.nutrition+10, 400) + cell.use(7000/450*10) + //VOREStation Add End + else if(ishuman(occupant)) var/mob/living/carbon/human/H = occupant @@ -258,6 +268,21 @@ occupant = R update_icon() return 1 + + //VOREStation Add Start + else if(istype(L, /mob/living/silicon/pai)) + var/mob/living/silicon/pai/P = L + + if(P.incapacitated()) + return + + add_fingerprint(P) + P.reset_view(src) + P.forceMove(src) + occupant = P + update_icon() + return 1 + //VOREStation Add End else if(istype(L, /mob/living/carbon/human)) var/mob/living/carbon/human/H = L diff --git a/code/game/machinery/virtual_reality/vr_console.dm b/code/game/machinery/virtual_reality/vr_console.dm index 81df6d934b..b66bc2dff8 100644 --- a/code/game/machinery/virtual_reality/vr_console.dm +++ b/code/game/machinery/virtual_reality/vr_console.dm @@ -23,6 +23,7 @@ active_power_usage = 200 light_color = "#FF0000" + /obj/machinery/vr_sleeper/Initialize() . = ..() default_apply_parts() @@ -246,14 +247,14 @@ avatar.shapeshifter_change_shape(occupant.species.name) avatar.forceMove(get_turf(S)) // Put the mob on the landmark, instead of inside it - +//CHOMPedit start VR fix occupant.enter_vr(avatar) //Yes, I am using a aheal just so your markings transfer over, I could not get .prefs.copy_to working. This is very stupid, and I can't be assed to rewrite this. Too bad! avatar.revive() - avatar.revive() + avatar.species.equip_survival_gear(avatar) avatar.verbs += /mob/living/carbon/human/proc/exit_vr //ahealing removes the prommie verbs and the VR verbs, giving it back - avatar.Sleeping(1) +//CHOMPedit end // Prompt for username after they've enterred the body. var/newname = sanitize(tgui_input_text(avatar, "You are entering virtual reality. Your username is currently [src.name]. Would you like to change it to something else?", "Name change", null, MAX_NAME_LEN), MAX_NAME_LEN) if (newname) diff --git a/code/game/objects/effects/bump_teleporter.dm b/code/game/objects/effects/bump_teleporter.dm index 0286622705..581aeea16f 100644 --- a/code/game/objects/effects/bump_teleporter.dm +++ b/code/game/objects/effects/bump_teleporter.dm @@ -23,12 +23,12 @@ var/list/obj/effect/bump_teleporter/BUMP_TELEPORTERS = list() if(!ismob(user)) //user.loc = src.loc //Stop at teleporter location return - + var/mob/M = user //VOREStation edit if(!id_target) //user.loc = src.loc //Stop at teleporter location, there is nowhere to teleport to. return for(var/obj/effect/bump_teleporter/BT in BUMP_TELEPORTERS) if(BT.id == src.id_target) - usr.loc = BT.loc //Teleport to location with correct id. - return \ No newline at end of file + M.forceMove(BT.loc) //Teleport to location with correct id. //VOREStation Edit + return diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index da675f6828..7c88ab8ad3 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -42,6 +42,10 @@ latejoin_gatewaystation += loc delete_me = 1 return + if("JoinLateSifPlains") + latejoin_plainspath += loc + delete_me = 1 + return //CHOMPEdit End if("JoinLateElevator") latejoin_elevator += loc diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm index d67d4f503b..6c50140a65 100644 --- a/code/game/objects/items/stacks/tiles/tile_types.dm +++ b/code/game/objects/items/stacks/tiles/tile_types.dm @@ -208,6 +208,12 @@ icon_state = "techtile_grid" no_variants = FALSE +/obj/item/stack/tile/floor/techmaint + name = "maint techfloor tile" + singular_name = "maint techfloor tile" + icon_state = "techtile_maint" + no_variants = FALSE + /obj/item/stack/tile/floor/steel_dirty name = "steel floor tile" singular_name = "steel floor tile" diff --git a/code/game/objects/items/weapons/manuals.dm b/code/game/objects/items/weapons/manuals.dm index 679e342ad2..f153e11fa8 100644 --- a/code/game/objects/items/weapons/manuals.dm +++ b/code/game/objects/items/weapons/manuals.dm @@ -982,6 +982,9 @@

Food for Dummies

Here is a guide on basic food recipes and also how to not poison your customers accidentally. +

((OOC link for updated working recipes here))

+ vore-station.net/infodump/recipes_food.html +

Basics:

Knead an egg and some flour to make dough. Bake that to make a bun or flatten and cut it. @@ -1848,4 +1851,4 @@
- "} \ No newline at end of file + "} diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 3afc5d64a5..c218e6cc08 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -116,6 +116,40 @@ desc = "Holds tools, looks snazzy." icon_state = "utilitybelt_ce" item_state = "utility_ce" + storage_slots = 8 //If they get better everything-else, why not the belt too? + can_hold = list( + /obj/item/weapon/rcd, //They've given one from the get-go, it's hard to imagine they wouldn't be given something that can store it neater than a bag + /obj/item/weapon/tool/crowbar, + /obj/item/weapon/tool/screwdriver, + /obj/item/weapon/weldingtool, + /obj/item/weapon/tool/wirecutters, + /obj/item/weapon/tool/wrench, + /obj/item/device/multitool, + /obj/item/device/flashlight, + /obj/item/weapon/cell/device, + /obj/item/stack/cable_coil, + /obj/item/device/t_scanner, + /obj/item/device/analyzer, + /obj/item/clothing/glasses, + /obj/item/clothing/gloves, + /obj/item/device/pda, + /obj/item/device/megaphone, + /obj/item/taperoll, + /obj/item/device/radio/headset, + /obj/item/device/robotanalyzer, + /obj/item/weapon/material/minihoe, + /obj/item/weapon/material/knife/machete/hatchet, + /obj/item/device/analyzer/plant_analyzer, + /obj/item/weapon/extinguisher/mini, + /obj/item/weapon/tape_roll, + /obj/item/device/integrated_electronics/wirer, + /obj/item/device/integrated_electronics/debugger, + /obj/item/weapon/shovel/spade, + /obj/item/stack/nanopaste, + /obj/item/device/geiger, + /obj/item/areaeditor/blueprints, //It's a bunch of paper that could prolly be rolled up & slipped into the belt, not to mention CE only, see the RCD's thing above + /obj/item/wire_reader //As above + ) /obj/item/weapon/storage/belt/utility/chief/full starts_with = list( @@ -296,9 +330,11 @@ /obj/item/device/flash, /obj/item/weapon/flame/lighter, /obj/item/weapon/reagent_containers/food/snacks/donut/, - /obj/item/ammo_magazine, - /obj/item/weapon/gun/projectile/colt/detective, - /obj/item/device/holowarrant + ///obj/item/ammo_magazine, //Detectives don't get projectile weapons as standard here + ///obj/item/weapon/gun/projectile/colt/detective, //Detectives don't get projectile weapons as standard here + /obj/item/weapon/gun/energy/stunrevolver/detective, //In keeping with the same vein as above, they can store their special one + /obj/item/device/holowarrant, + /obj/item/weapon/reagent_containers/food/drinks/flask ) /obj/item/weapon/storage/belt/soulstone diff --git a/code/game/objects/random/_random.dm b/code/game/objects/random/_random.dm index 460ef4ef4f..3d68245676 100644 --- a/code/game/objects/random/_random.dm +++ b/code/game/objects/random/_random.dm @@ -6,12 +6,14 @@ var/spawn_nothing_percentage = 0 // this variable determines the likelyhood that this random object will not spawn anything var/drop_get_turf = TRUE -// creates a new object and deletes itself + /obj/random/Initialize() + . = INITIALIZE_HINT_QDEL ..() - if(!prob(spawn_nothing_percentage)) - try_spawn_item() - return INITIALIZE_HINT_QDEL + if (prob(spawn_nothing_percentage)) + return + try_spawn_item() + /obj/random/proc/try_spawn_item() var/atom/result = spawn_item() diff --git a/code/game/objects/random/guns_and_ammo.dm b/code/game/objects/random/guns_and_ammo.dm index 9d6053336d..96184919da 100644 --- a/code/game/objects/random/guns_and_ammo.dm +++ b/code/game/objects/random/guns_and_ammo.dm @@ -507,7 +507,6 @@ /obj/random/projectile/scrapped_gun name = "broken gun spawner" desc = "Spawns a random broken gun, or rarely a fully functional one." - icon = 'icons/obj/gun.dmi' icon_state = "gun_scrap" /obj/random/projectile/scrapped_gun/item_to_spawn() diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index f6f1e3c5f0..934d119d77 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -245,6 +245,7 @@ desc = "Hot Stuff." icon_state = "sus" spawn_nothing_percentage = 50 + /obj/random/contraband/item_to_spawn() return pick(prob(6);/obj/item/weapon/storage/pill_bottle/paracetamol, //VOREStation Edit, prob(4);/obj/item/weapon/storage/pill_bottle/happy, @@ -307,10 +308,10 @@ prob(5);/obj/item/weapon/spacecash/c1000) /obj/random/soap - name = "Random Soap" - desc = "This is a random bar of soap." - icon = 'icons/obj/items.dmi' - icon_state = "soap" + name = "Random Soap (All)" + desc = "This is a random bar of soap. Includes special types." + icon = 'icons/obj/soap.dmi' + icon_state = "rainbow_soap" /obj/random/soap/item_to_spawn() return pick(/obj/item/weapon/soap, @@ -338,6 +339,35 @@ /obj/item/weapon/soap/red_soap, /obj/item/weapon/soap/golden_soap) +/obj/random/soap_common + name = "Random Soap (Common)" + desc = "This is a random bar of soap. Only has the basic types; no NT, deluxe, or syndisoap." + icon = 'icons/obj/soap.dmi' + icon_state = "rainbow_soap" + +/obj/random/soap_common/item_to_spawn() + return pick(/obj/item/weapon/soap, + /obj/item/weapon/soap/space_soap, + /obj/item/weapon/soap/space_soap, + /obj/item/weapon/soap/water_soap, + /obj/item/weapon/soap/fire_soap, + /obj/item/weapon/soap/rainbow_soap, + /obj/item/weapon/soap/diamond_soap, + /obj/item/weapon/soap/uranium_soap, + /obj/item/weapon/soap/silver_soap, + /obj/item/weapon/soap/brown_soap, + /obj/item/weapon/soap/white_soap, + /obj/item/weapon/soap/grey_soap, + /obj/item/weapon/soap/pink_soap, + /obj/item/weapon/soap/purple_soap, + /obj/item/weapon/soap/blue_soap, + /obj/item/weapon/soap/cyan_soap, + /obj/item/weapon/soap/green_soap, + /obj/item/weapon/soap/yellow_soap, + /obj/item/weapon/soap/orange_soap, + /obj/item/weapon/soap/red_soap, + /obj/item/weapon/soap/golden_soap) + /obj/random/drinkbottle name = "random drink" desc = "This is a random drink." diff --git a/code/game/objects/structures/catwalk.dm b/code/game/objects/structures/catwalk.dm index d4ba52ef82..ae5dc0c666 100644 --- a/code/game/objects/structures/catwalk.dm +++ b/code/game/objects/structures/catwalk.dm @@ -13,7 +13,9 @@ var/static/plating_colors = list( /obj/item/stack/tile/floor = "#858a8f", /obj/item/stack/tile/floor/dark = "#4f4f4f", - /obj/item/stack/tile/floor/white = "#e8e8e8") + /obj/item/stack/tile/floor/white = "#e8e8e8", + /obj/item/stack/tile/floor/techmaint = "#4d585b", + /obj/item/stack/tile/floor/techgrey = "#363f43") var/health = 100 var/maxhealth = 100 @@ -189,3 +191,13 @@ icon_state = "catwalk_platedwhite" tile = /obj/item/stack/tile/floor/white platecolor = "#e8e8e8" + +/obj/effect/catwalk_plated/techmaint + icon_state = "catwalk_techmaint" + tile = /obj/item/stack/tile/floor/techmaint + platecolor = "#4d585b" + +/obj/effect/catwalk_plated/techfloor + icon_state = "catwalk_techfloor" + tile = /obj/item/stack/tile/floor/techgrey + platecolor = "#363f43" \ No newline at end of file diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index 3b35be2479..47ec0eedf0 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -162,4 +162,9 @@ /obj/structure/largecrate/animal/weretiger name = "Weretiger Crate" desc = "You can hear a lot of annoyed scratches, clearly someone doesn't enjoy being locked up." - starts_with = list(/mob/living/simple_mob/vore/weretiger) \ No newline at end of file + starts_with = list(/mob/living/simple_mob/vore/weretiger) + +/obj/structure/largecrate/tits + name = "A pair of Great tits" + desc = "You can hear two round things inside" + starts_with = list (/mob/living/simple_mob/animal/passive/bird/azure_tit/great, /mob/living/simple_mob/animal/passive/bird/azure_tit/great) diff --git a/code/game/objects/structures/fireaxe.dm b/code/game/objects/structures/fireaxe.dm index 29159503ab..7234baf50e 100644 --- a/code/game/objects/structures/fireaxe.dm +++ b/code/game/objects/structures/fireaxe.dm @@ -12,10 +12,13 @@ var/hitstaken = 0 var/locked = 1 var/smashed = 0 + var/starts_with_axe = TRUE /obj/structure/fireaxecabinet/Initialize() . = ..() - fireaxe = new /obj/item/weapon/material/twohanded/fireaxe() + if(starts_with_axe) + fireaxe = new /obj/item/weapon/material/twohanded/fireaxe() + update_icon() /obj/structure/fireaxecabinet/attackby(var/obj/item/O as obj, var/mob/user as mob) //Marker -Agouri //..() //That's very useful, Erro @@ -184,3 +187,7 @@ if(fireaxe) hasaxe = 1 icon_state = text("fireaxe[][][][]",hasaxe,open,hitstaken,smashed) + + +/obj/structure/fireaxecabinet/empty + starts_with_axe = FALSE diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index d21dfc0579..daee0ca179 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -299,7 +299,7 @@ /obj/structure/bed/chair/sofa/update_layer() // Corner east/west should be on top of mobs, any other state's north should be. - if((corner_piece && ((dir & EAST) || (dir & WEST))) || (!corner_piece && (dir & NORTH))) + if(!corner_piece && (dir & NORTH)) plane = MOB_PLANE layer = MOB_LAYER + 0.1 else @@ -318,6 +318,18 @@ base_icon = "sofacorner" corner_piece = TRUE +/obj/structure/bed/chair/sofa/corner/update_icon() + ..() + var/cache_key = "[base_icon]-armrest-[padding_material ? padding_material.name : "no_material"]-permanent" + if(isnull(stool_cache[cache_key])) + var/image/I = image(icon, "[base_icon]_armrest") + I.plane = MOB_PLANE + I.layer = ABOVE_MOB_LAYER + if(padding_material) + I.color = padding_material.icon_colour + stool_cache[cache_key] = I + add_overlay(stool_cache[cache_key]) + // Wooden nonsofa - no corners /obj/structure/bed/chair/sofa/pew name = "pew bench" diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 9a921ab260..8e9101d3b9 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -419,6 +419,7 @@ var/list/flooring_types /decl/flooring/tiling/new_tile/techmaint icon_base = "techmaint" + build_type = /obj/item/stack/tile/floor/techmaint /decl/flooring/tiling/new_tile/monofloor icon_base = "monofloor" diff --git a/code/global_ch.dm b/code/global_ch.dm deleted file mode 100644 index 09ed953a16..0000000000 --- a/code/global_ch.dm +++ /dev/null @@ -1,5 +0,0 @@ - -var/list/shell_module_blacklist = list( - "Sci-borg", "Research" - ) -var/list/latejoin_gatewaystation = list() \ No newline at end of file diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 44d11a9f38..77ab40adc1 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -239,7 +239,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) /datum/admin_help/proc/FullMonty(ref_src) if(!ref_src) ref_src = "\ref[src]" - . = ADMIN_FULLMONTY_NONAME(initiator.mob) + if(initiator && initiator.mob) + . = ADMIN_FULLMONTY_NONAME(initiator.mob) + else + . = "Initiator disconnected." if(state == AHELP_ACTIVE) . += ClosureLinks(ref_src) diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index c9c35312f7..24ba5c9d00 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -473,6 +473,9 @@ for(var/i = 1 to 4) assets["bottle-[i].png"] = icon('icons/obj/chemical.dmi', "bottle-[i]") + for(var/i = 1 to 4) // CHOMPedit + assets["patch[i].png"] = icon('icons/obj/chemical.dmi', "patch[i]") // CHOMPedit + for(var/asset_name in assets) register_asset(asset_name, assets[asset_name]) 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 b6791ccf0d..652544d7e0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -133,3 +133,9 @@ Talon pin display_name = "Talon pin" description = "A small enamel pin of the Talon logo." path = /obj/item/clothing/accessory/talon + +//Rat badge + +/datum/gear/accessory/altevian_badge + display_name = "altevian badge" + path = /obj/item/clothing/accessory/altevian_badge \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm index 9aae4969ef..e444dcaa85 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm @@ -62,6 +62,14 @@ display_name = "Security HUDpatch" path = /obj/item/clothing/glasses/hud/security/eyepatch +/datum/gear/eyes/security/secpatch2 + display_name = "Security HUDpatch MKII" + path = /obj/item/clothing/glasses/hud/security/eyepatch2 + +/datum/gear/eyes/security/tac_sec_visor + display_name = "Tactical AR visor (Security)" + path = /obj/item/clothing/glasses/sunglasses/sechud/tactical_sec_vis + /datum/gear/eyes/medical/medpatch display_name = "Health HUDpatch" path = /obj/item/clothing/glasses/hud/health/eyepatch 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 80d8d5a5f1..20a8fb57dd 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -276,6 +276,18 @@ ckeywhitelist = list("chaleur") character_name = list("Hisako Arato") +/datum/gear/fluff/perrin_robes + path = /obj/item/clothing/under/fluff/gildedrobe_perrin + display_name = "Perrin's Robes" + ckeywhitelist = list("codeme") + character_name = list("Perrin Kade") + +/datum/gear/fluff/perrin_shoes + path = /obj/item/clothing/shoes/fluff/gildedshoes_perrin + display_name = "Perrin's Shoes" + ckeywhitelist = list("codeme") + character_name = list("Perrin Kade") + /datum/gear/fluff/jade_stamp path = /obj/item/weapon/stamp/fluff/jade_horror display_name = "Official Council of Mid Horror rubber stamp" @@ -467,6 +479,13 @@ ckeywhitelist = list("jacobdragon") character_name = list("Earthen Breath") +/datum/gear/fluff/jademanique_freyr_mask + path = /obj/item/clothing/mask/fluff/freyr_mask + display_name = "Freyr's Mask" + slot = slot_head + ckeywhitelist = list("jademanique") + character_name = list("Freyr") + /datum/gear/fluff/cirra_box path = /obj/item/weapon/storage/box/fluff/cirra display_name = "Cirra's Box" @@ -1028,6 +1047,12 @@ ckeywhitelist = list("stiphs") character_name = list("Lilith Vespers") +/datum/gear/fluff/greek_dress + path = /obj/item/clothing/under/fluff/greek_dress + display_name = "mytilenean Dress" + ckeywhitelist = list("sudate") + character_name = list("Shea Corbett") + /datum/gear/fluff/silent_mimemask path = /obj/item/clothing/mask/gas/sexymime display_name = "Silent Stripe's Mime Mask" @@ -1085,6 +1110,13 @@ ckeywhitelist = list("thedavestdave") character_name = list("Roy Tilton") +/datum/gear/fluff/lucky_amour + path = /obj/item/clothing/suit/armor/combat/crusader_costume/lucky + display_name = "Lucky's amour" + ckeywhitelist = list ("thedavestdave") + character_name = list("Lucky") + allowed_roles = list("Chaplain") + /datum/gear/fluff/monty_balaclava path = /obj/item/clothing/mask/balaclava display_name = "Monty's Balaclava" @@ -1321,16 +1353,3 @@ display_name = "Health Service Achievement medal" ckeywhitelist = list("zodiacshadow") character_name = list("Nehi Maximus") - -/datum/gear/fluff/lucky_amour - path = /obj/item/clothing/suit/armor/combat/crusader_costume/lucky - display_name = "Lucky's amour" - ckeywhitelist = list ("thedavestdave") - character_name = list("Lucky") - allowed_roles = "Chaplain" - -/datum/gear/fluff/greek_dress - path = /obj/item/clothing/under/fluff/greek_dress - display_name = "mytilenean Dress" - ckeywhitelist = list("sudate") - character_name = list("Shea Corbett") diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index f014232fe3..d2d04029c3 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -94,6 +94,7 @@ /datum/gear/uniform/altevian_outfit description = "A uniform commonly seen from altevians during their work. The material on this uniform seems to be made of durable thread that can handle the stress of most matters of labor." display_name = "altevian duty jumpsuit selection (Altevian)" + whitelisted = SPECIES_ALTEVIAN sort_category = "Xenowear" /datum/gear/uniform/altevian_outfit/New() @@ -103,6 +104,24 @@ pants[initial(uniform_type.name)] = uniform_type gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants)) +/datum/gear/accessory/altevian_aquila + description = "An emblem commonly seen worn by the altevians for their work operations." + display_name = "royal altevian navy emblem selection" + whitelisted = SPECIES_ALTEVIAN + sort_category = "Xenowear" + +/datum/gear/accessory/altevian_aquila/New() + ..() + var/list/badges = list( + "gold emblem" = /obj/item/clothing/accessory/altevian_badge/aquila, + "silver emblem" = /obj/item/clothing/accessory/altevian_badge/aquila/silver, + "bronze emblem" = /obj/item/clothing/accessory/altevian_badge/aquila/bronze, + "black emblem" = /obj/item/clothing/accessory/altevian_badge/aquila/black, + "blue emblem" = /obj/item/clothing/accessory/altevian_badge/aquila/exotic, + "purple emblem" = /obj/item/clothing/accessory/altevian_badge/aquila/phoron, + "red emblem" = /obj/item/clothing/accessory/altevian_badge/aquila/hydrogen) + gear_tweaks += new/datum/gear_tweak/path(sortAssoc(badges)) + // Taur stuff /datum/gear/suit/taur/drake_cloak display_name = "drake cloak (Drake-taur)" diff --git a/code/modules/client/preference_setup/occupation/occupation.dm b/code/modules/client/preference_setup/occupation/occupation.dm index 3d70326a18..c80766fde4 100644 --- a/code/modules/client/preference_setup/occupation/occupation.dm +++ b/code/modules/client/preference_setup/occupation/occupation.dm @@ -19,6 +19,11 @@ S["job_talon_high"] >> pref.job_talon_high //VOREStation Add End S["player_alt_titles"] >> pref.player_alt_titles + //CHOMPStation Add + S["job_other_low"] >> pref.job_other_low + S["job_other_med"] >> pref.job_other_med + S["job_other_high"] >> pref.job_other_high + //CHOMPStation Add End /datum/category_item/player_setup_item/occupation/save_character(var/savefile/S) S["alternate_option"] << pref.alternate_option @@ -37,6 +42,11 @@ S["job_talon_high"] << pref.job_talon_high //VOREStation Add End S["player_alt_titles"] << pref.player_alt_titles + //CHOMPStation Add + S["job_other_low"] << pref.job_other_low + S["job_other_med"] << pref.job_other_med + S["job_other_high"] << pref.job_other_high + //CHOMPStation Add End /datum/category_item/player_setup_item/occupation/sanitize_character() pref.alternate_option = sanitize_integer(pref.alternate_option, 0, 2, initial(pref.alternate_option)) @@ -54,6 +64,11 @@ pref.job_talon_med = sanitize_integer(pref.job_talon_med, 0, 65535, initial(pref.job_talon_med)) pref.job_talon_low = sanitize_integer(pref.job_talon_low, 0, 65535, initial(pref.job_talon_low)) //VOREStation Add End + //CHOMPStation Add + pref.job_other_high = sanitize_integer(pref.job_other_high, 0, 65535, initial(pref.job_other_high)) + pref.job_other_med = sanitize_integer(pref.job_other_med, 0, 65535, initial(pref.job_other_med)) + pref.job_other_low = sanitize_integer(pref.job_other_low, 0, 65535, initial(pref.job_other_low)) + //CHOMPStation Add End if(!(pref.player_alt_titles)) pref.player_alt_titles = new() if(!job_master) @@ -320,6 +335,7 @@ pref.job_medsci_high = 0 pref.job_engsec_high = 0 pref.job_talon_high = 0 //VOREStation Add + pref.job_other_high = 0 //CHOMPStation Add // Level is equal to the desired new level of the job. So for a value of 4, we want to disable the job. /datum/category_item/player_setup_item/occupation/proc/SetJobDepartment(var/datum/job/job, var/level) @@ -377,6 +393,20 @@ if(3) pref.job_talon_low |= job.flag VOREStation Add End*/ + //CHOMPStation Add + if(OTHER) + pref.job_other_low &= ~job.flag + pref.job_other_med &= ~job.flag + pref.job_other_high &= ~job.flag + switch(level) + if(1) + reset_jobhigh() + pref.job_other_high = job.flag + if(2) + pref.job_other_med |= job.flag + if(3) + pref.job_other_low |= job.flag + //CHOMPStation Add End return 1 @@ -399,6 +429,12 @@ pref.job_talon_low = 0 //VOREStation Add End + //CHOMPStation Add + pref.job_other_high = 0 + pref.job_other_med = 0 + pref.job_other_low = 0 + //CHOMPStation Add End + pref.player_alt_titles.Cut() /datum/preferences/proc/GetPlayerAltTitle(datum/job/job) @@ -431,4 +467,14 @@ return job_engsec_med if(3) return job_engsec_low + //CHOMPStation Add + if(OTHER) + switch(level) + if(1) + return job_other_high + if(2) + return job_other_med + if(3) + return job_other_low + //CHOMPStation Add End return 0 diff --git a/code/modules/client/preferences_ch.dm b/code/modules/client/preferences_ch.dm deleted file mode 100644 index ac31bd2daa..0000000000 --- a/code/modules/client/preferences_ch.dm +++ /dev/null @@ -1,2 +0,0 @@ -/datum/preferences - var/digitigrade = 0 // 0 = no digi, 1 = default, 2+ = digi styles... (Not used yet) \ No newline at end of file diff --git a/code/modules/client/preferences_spawnpoints.dm b/code/modules/client/preferences_spawnpoints.dm index 6078808c30..04c1a26669 100644 --- a/code/modules/client/preferences_spawnpoints.dm +++ b/code/modules/client/preferences_spawnpoints.dm @@ -13,6 +13,7 @@ var/list/spawntypes = list() var/list/restrict_job = null var/list/disallow_job = null var/announce_channel = "Common" + var/allow_offmap_spawn = FALSE //CHOMPEdit - add option to allow offmap spawns to a spawnpoint without entirely restricting that spawnpoint var/allowed_mob_types = JOB_SILICON|JOB_CARBON /datum/spawnpoint/proc/check_job_spawning(job) @@ -26,7 +27,7 @@ var/list/spawntypes = list() if(!J) // Couldn't find, admin shenanigans? Allow it return 1 - if(J.offmap_spawn && !(job in restrict_job)) + if(J.offmap_spawn && !allow_offmap_spawn && !(job in restrict_job)) //CHOMPEdit - add option to allow offmap spawns to a spawnpoint without entirely restricting that spawnpoint return 0 if(!(J.mob_type & allowed_mob_types)) @@ -40,6 +41,7 @@ var/list/spawntypes = list() /datum/spawnpoint/arrivals display_name = "Arrivals Shuttle" msg = "will arrive to the station shortly by shuttle" + disallow_job = list("Non-Crew") //CHOMPEdit add /datum/spawnpoint/arrivals/New() ..() @@ -65,6 +67,7 @@ var/list/spawntypes = list() display_name = "Cryogenic Storage" msg = "has completed cryogenic revival" allowed_mob_types = JOB_CARBON + disallow_job = list("Non-Crew") //CHOMPEdit add /datum/spawnpoint/cryo/New() ..() @@ -74,6 +77,7 @@ var/list/spawntypes = list() display_name = "Cyborg Storage" msg = "has been activated from storage" allowed_mob_types = JOB_SILICON + disallow_job = list("Non-Crew") //CHOMPEdit add /datum/spawnpoint/cyborg/New() ..() @@ -100,7 +104,8 @@ var/global/list/latejoin_tram = list() /datum/spawnpoint/tram display_name = "Tram Station" msg = "will arrive to the station shortly by shuttle" + disallow_job = list("Non-Crew") //CHOMPEdit add /datum/spawnpoint/tram/New() ..() - turfs = latejoin_tram \ No newline at end of file + turfs = latejoin_tram diff --git a/code/modules/clothing/glasses/glasses_vr.dm b/code/modules/clothing/glasses/glasses_vr.dm index 63be852414..880547db4b 100644 --- a/code/modules/clothing/glasses/glasses_vr.dm +++ b/code/modules/clothing/glasses/glasses_vr.dm @@ -72,6 +72,45 @@ off_state = "eyepatch" enables_planes = list(VIS_CH_STATUS,VIS_CH_HEALTH,VIS_FULLBRIGHT,VIS_MESONS) +/obj/item/clothing/glasses/sunglasses/sechud/tactical_sec_vis + name = "tactical AR visor" + desc = "Special AR visor designed for security teams, protects your eyes and provides useful data. The red lights provide extra style and intimidation." + icon_state = "tacsecvis1" + icon = 'icons/inventory/eyes/item_vr.dmi' + icon_override = 'icons/inventory/eyes/mob_vr.dmi' + enables_planes = list(VIS_CH_ID,VIS_CH_WANTED,VIS_CH_IMPTRACK,VIS_CH_IMPLOYAL,VIS_CH_IMPCHEM) + flash_protection = FLASH_PROTECTION_MODERATE + item_flags = AIRTIGHT + body_parts_covered = EYES + action_button_name = "Change scanning pattern" + action_button_is_hands_free = TRUE + var/static/list/tac_sec_vis_anim = list() + +/obj/item/clothing/glasses/sunglasses/sechud/tactical_sec_vis/Initialize(mapload) + . = ..() + tac_sec_vis_anim = list( + "Scanning pattern 1" = image(icon = src.icon, icon_state = "tacsecvis1"), + "Scanning pattern 2" = image(icon = src.icon, icon_state = "tacsecvis2"), + "Scanning pattern 3" = image(icon = src.icon, icon_state = "tacsecvis3"), + "Scanning pattern 4" = image(icon = src.icon, icon_state = "tacsecvis4"), + ) + +/obj/item/clothing/glasses/sunglasses/sechud/tactical_sec_vis/attack_self(mob/user) + . = ..() + if(!istype(user) || user.incapacitated()) + return + + var/static/list/options = list("Scanning pattern 1" = "tacsecvis1", "Scanning pattern 2" = "tacsecvis2", "Scanning pattern 3" = "tacsecvis3","Scanning pattern 4" ="tacsecvis4") + + var/choice = show_radial_menu(user, src, tac_sec_vis_anim, custom_check = FALSE, radius = 36, require_near = TRUE) + + if(src && choice && !user.incapacitated() && in_range(user,src)) + icon_state = options[choice] + user.update_inv_glasses() + user.update_action_buttons() + to_chat(user, "Your [src] now displays [choice] .") + return 1 + /*---Tajaran-specific Eyewear---*/ /obj/item/clothing/glasses/tajblind diff --git a/code/modules/clothing/glasses/hud_vr.dm b/code/modules/clothing/glasses/hud_vr.dm index 272d0863c8..12f409204e 100644 --- a/code/modules/clothing/glasses/hud_vr.dm +++ b/code/modules/clothing/glasses/hud_vr.dm @@ -258,6 +258,31 @@ icon_state = initial(icon_state) update_clothing_icon() +/obj/item/clothing/glasses/hud/security/eyepatch2 + name = "Security Hudpatch MKII" + desc = "An eyepatch with built in scanners, that analyzes those in view and provides accurate data about their ID status and security records. This updated model offers better ergonomics and updated sensors." + icon = 'icons/inventory/eyes/item_vr.dmi' + icon_override = 'icons/inventory/eyes/mob_vr.dmi' + icon_state = "sec_eyepatch" + item_state_slots = list(slot_r_hand_str = "blindfold", slot_l_hand_str = "blindfold") + body_parts_covered = 0 + enables_planes = list(VIS_CH_ID,VIS_CH_WANTED,VIS_CH_IMPTRACK,VIS_CH_IMPLOYAL,VIS_CH_IMPCHEM) + var/eye = null + +/obj/item/clothing/glasses/hud/security/eyepatch2/verb/switcheye() + set name = "Switch Eyepatch" + set category = "Object" + set src in usr + if(!istype(usr, /mob/living)) return + if(usr.stat) return + + eye = !eye + if(eye) + icon_state = "[icon_state]_1" + else + icon_state = initial(icon_state) + update_clothing_icon() + /obj/item/clothing/glasses/hud/health/eyepatch name = "Medical Hudpatch" diff --git a/code/modules/clothing/head/hood_vr.dm b/code/modules/clothing/head/hood_vr.dm index 5483c461af..cc911db7c8 100644 --- a/code/modules/clothing/head/hood_vr.dm +++ b/code/modules/clothing/head/hood_vr.dm @@ -33,4 +33,23 @@ name = "Talon winter hood" desc = "A cozy winter hood attached to a heavy winter jacket." icon_override = 'icons/inventory/head/mob_vr.dmi' - icon_state = "winterhood_talon" \ No newline at end of file + icon_state = "winterhood_talon" + +//Food costumes +// Hotdog suit hood +/obj/item/clothing/head/hood_vr/hotdog_hood + name = "Hotdog suit hood" + desc = "The hood of a hotdog suit, attached to said hotdog suit." //Honestly i just don't know how to force the costume to hide hats. + icon = 'icons/inventory/head/mob_vr.dmi' + icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "hotdog_hood" + flags_inv = HIDEEARS|BLOCKHAIR + +// Turnip suit hood +/obj/item/clothing/head/hood_vr/turnip_hood + name = "Turnip suit hood" + desc = "The hood of a hotdog suit, attached to said hotdog suit. Most cooks cut this part off and throw it in the garbage" + icon = 'icons/inventory/head/mob_vr.dmi' + icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "turnip_hood" + flags_inv = HIDEEARS|BLOCKHAIR \ No newline at end of file diff --git a/code/modules/clothing/suits/hooded_vr.dm b/code/modules/clothing/suits/hooded_vr.dm index 4b79a4e3c0..d6f1465f45 100644 --- a/code/modules/clothing/suits/hooded_vr.dm +++ b/code/modules/clothing/suits/hooded_vr.dm @@ -79,6 +79,31 @@ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) hoodtype = /obj/item/clothing/head/hood/winter/talon +// Food costumes +/obj/item/clothing/suit/storage/hooded/foodcostume //Separate type of costume that does not cover arms and legs. Similar to a cheap mascot costume. + body_parts_covered = UPPER_TORSO|LOWER_TORSO + flags_inv = HIDETIE|HIDEHOLSTER + cold_protection = UPPER_TORSO|LOWER_TORSO + action_button_name = "Toggle Hood" + +/obj/item/clothing/suit/storage/hooded/foodcostume/hotdog //Belly filler uniform :^). + name = "hotdog costume" + desc = "A giant hotdog costume, comes with authentic artificial hotdog scent." + icon = 'icons/inventory/suit/item_vr.dmi' + icon_override = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "hotdog" + item_state_slots = list(slot_r_hand_str = "hotdog", slot_l_hand_str = "hotdog") + hoodtype = /obj/item/clothing/head/hood_vr/hotdog_hood + +/obj/item/clothing/suit/storage/hooded/foodcostume/turnip //Honey wake up, new vorny jail uniform just dropped. + name = "turnip costume" + desc = "A giant turnip costume, extra padding helps the wearer stand in the same spot for hours." + icon = 'icons/inventory/suit/item_vr.dmi' + icon_override = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "turnip" + item_state_slots = list(slot_r_hand_str = "turnip", slot_l_hand_str = "turnip") + hoodtype = /obj/item/clothing/head/hood_vr/turnip_hood + //Functional hoodie /obj/item/clothing/suit/storage/hooded/hoodie diff --git a/code/modules/clothing/under/accessories/altevian_vr.dm b/code/modules/clothing/under/accessories/altevian_vr.dm index ec3322d185..b75757b94a 100644 --- a/code/modules/clothing/under/accessories/altevian_vr.dm +++ b/code/modules/clothing/under/accessories/altevian_vr.dm @@ -75,4 +75,35 @@ name = "Purple Comfortable Scarf" icon_state = "altevian-scarf-purple" item_state = "altevian-scarf-purple" - overlay_state = "altevian-scarf-purple" \ No newline at end of file + overlay_state = "altevian-scarf-purple" + + + +/obj/item/clothing/accessory/altevian_badge + name = "Altevian Civilian Badge" + desc = "An emblem commonly seen worn by the altevians off-work or by visitors of their ships." + icon_state = "altevian_badge" + slot = ACCESSORY_SLOT_MEDAL + +/obj/item/clothing/accessory/altevian_badge/aquila + name = "Royal Altevian Navy Emblem" + desc = "An emblem commonly seen worn by the altevians for their work operations." + icon_state = "altevian_aquila" + +/obj/item/clothing/accessory/altevian_badge/aquila/silver + icon_state = "altevian_aquila_silver" + +/obj/item/clothing/accessory/altevian_badge/aquila/bronze + icon_state = "altevian_aquila_bronze" + +/obj/item/clothing/accessory/altevian_badge/aquila/black + icon_state = "altevian_aquila_black" + +/obj/item/clothing/accessory/altevian_badge/aquila/exotic + icon_state = "altevian_aquila_exotic" + +/obj/item/clothing/accessory/altevian_badge/aquila/phoron + icon_state = "altevian_aquila_phoron" + +/obj/item/clothing/accessory/altevian_badge/aquila/hydrogen + icon_state = "altevian_aquila_hydrogen" \ No newline at end of file diff --git a/code/modules/clothing/under/accessories/holster_vr.dm b/code/modules/clothing/under/accessories/holster_vr.dm index db610037d6..5032134302 100644 --- a/code/modules/clothing/under/accessories/holster_vr.dm +++ b/code/modules/clothing/under/accessories/holster_vr.dm @@ -3,6 +3,17 @@ desc = "A specialized holster, made specifically for Kinetic Accelerators." can_hold = list(/obj/item/weapon/gun/energy/kinetic_accelerator) +/obj/item/clothing/accessory/holster/waist/lanyard + name = "baton lanyard" + desc = "A sturdy tether with quick-release carabiner that can keep several patterns of standard-issue security baton ready for quick usage." + icon_state = "holster_lanyard" + overlay_state = "holster_lanyard" + can_hold = list( + /obj/item/weapon/melee/baton, + /obj/item/weapon/melee/classic_baton, + /obj/item/weapon/melee/telebaton + ) + /obj/item/clothing/accessory/holster/machete/rapier name = "rapier sheath" desc = "A beautiful red sheath, probably for a beautiful blade." diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm index 97a6ed2aa6..101df4b4dc 100644 --- a/code/modules/economy/vending_machines.dm +++ b/code/modules/economy/vending_machines.dm @@ -1237,6 +1237,8 @@ /obj/item/clothing/mask/bandana/red = 5, /obj/item/clothing/suit/storage/hooded/wintercoat/security = 5, /obj/item/clothing/accessory/armband = 5, + /obj/item/clothing/glasses/sunglasses/sechud/tactical_sec_vis = 5, //VoreStation edit - cool visor!!! + /obj/item/clothing/glasses/hud/security/eyepatch2 = 5, //VoreStation edit - cool eyepatch! /obj/item/clothing/accessory/holster/armpit = 2, //VOREStation edit - gives some variety of available holsters for those who forgot to bring their own /obj/item/clothing/accessory/holster/waist = 2, //VOREStation edit - But also reduces the number per type, so there's 8 overall rather than like, 20 /obj/item/clothing/accessory/holster/hip = 2, //VOREStation edit diff --git a/code/modules/economy/vending_machines_vr.dm b/code/modules/economy/vending_machines_vr.dm index 1f7871a85d..9492802e86 100644 --- a/code/modules/economy/vending_machines_vr.dm +++ b/code/modules/economy/vending_machines_vr.dm @@ -1524,7 +1524,9 @@ /obj/item/clothing/gloves/combat/knight_costume = 3, /obj/item/clothing/gloves/combat/knight_costume/brown = 3, /obj/item/clothing/shoes/knight_costume = 3, - /obj/item/clothing/shoes/knight_costume/black = 3) + /obj/item/clothing/shoes/knight_costume/black = 3, + /obj/item/clothing/suit/storage/hooded/foodcostume/hotdog = 3, + /obj/item/clothing/suit/storage/hooded/foodcostume/turnip = 3) prices = list(/obj/item/clothing/suit/storage/hooded/costume/carp = 200, /obj/item/clothing/suit/storage/hooded/costume/carp = 200, /obj/item/clothing/suit/chickensuit = 200, @@ -1589,7 +1591,9 @@ /obj/item/clothing/gloves/combat/knight_costume = 200, /obj/item/clothing/gloves/combat/knight_costume/brown = 200, /obj/item/clothing/shoes/knight_costume = 200, - /obj/item/clothing/shoes/knight_costume/black = 200) + /obj/item/clothing/shoes/knight_costume/black = 200, + /obj/item/clothing/suit/storage/hooded/foodcostume/hotdog = 200, + /obj/item/clothing/suit/storage/hooded/foodcostume/turnip = 200) premium = list(/obj/item/clothing/suit/imperium_monk = 3, /obj/item/clothing/suit/barding/agatha = 2, /obj/item/clothing/suit/barding/alt_agatha = 2, diff --git a/code/modules/emotes/definitions/audible.dm b/code/modules/emotes/definitions/audible.dm index d702a32d3a..8808ed38f5 100644 --- a/code/modules/emotes/definitions/audible.dm +++ b/code/modules/emotes/definitions/audible.dm @@ -140,7 +140,7 @@ /decl/emote/audible/bug_buzz key = "bbuzz" - emote_message_3p = "buzzes its wings." + emote_message_3p = "buzzes USER_THEIR wings." emote_sound = 'sound/voice/BugBuzz.ogg' /decl/emote/audible/bug_chitter @@ -244,4 +244,4 @@ emote_message_3p = "prbts." emote_message_1p_target = "You prbt at TARGET." emote_message_3p_target = "prbts at TARGET." - emote_sound = 'sound/voice/prbt.ogg' \ No newline at end of file + emote_sound = 'sound/voice/prbt.ogg' diff --git a/code/modules/emotes/emote_mob.dm b/code/modules/emotes/emote_mob.dm index 53e8f11548..7e5ad1caf0 100644 --- a/code/modules/emotes/emote_mob.dm +++ b/code/modules/emotes/emote_mob.dm @@ -128,6 +128,7 @@ if(findtext(subtext, "*")) // abort abort! to_chat(emoter, SPAN_WARNING("You may use only one \"["*"]\" symbol in your emote.")) + to_chat(emoter, SPAN_WARNING(message)) return if(pretext) diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index ad34247ece..09cddf7347 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -1890,7 +1890,6 @@ . = ..() reagents.add_reagent("protein", 3) - /obj/item/weapon/reagent_containers/food/snacks/rofflewaffles name = "Roffle Waffles" desc = "Waffles from Roffle. Co." @@ -2147,6 +2146,15 @@ . = ..() reagents.add_reagent("protein", 3) +/obj/item/weapon/reagent_containers/food/snacks/clubsandwich + name = "Club Sandwich" + desc = "Tastes like the good feelings when you're part of a clique." + icon_state = "clubsandwich" + trash = "obj/item/trash/plate" + nutriment_amt = 3 + nutriment_desc = list("a galactic economy coming together in pursuit of mundane foods" = 3) + bitesize = 2 + /obj/item/weapon/reagent_containers/food/snacks/toastedsandwich name = "Toasted Sandwich" desc = "Now if you only had a pepper bar." diff --git a/code/modules/food/recipes_microwave.dm b/code/modules/food/recipes_microwave.dm index 1f470c81bb..7993260ee0 100644 --- a/code/modules/food/recipes_microwave.dm +++ b/code/modules/food/recipes_microwave.dm @@ -236,6 +236,17 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/jellysandwich/peanutbutter +/datum/recipe/clubsandwich + reagents = list("mayo" = 5) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/slice/bread, + /obj/item/weapon/reagent_containers/food/snacks/slice/bread, + /obj/item/weapon/reagent_containers/food/snacks/meat/chicken, + /obj/item/weapon/reagent_containers/food/snacks/bacon, + /obj/item/weapon/reagent_containers/food/snacks/cheesewedge + ) + fruit = list("tomato" = 1, "lettuce" = 1) + result = /obj/item/weapon/reagent_containers/food/snacks/clubsandwich /datum/recipe/tomatosoup fruit = list("tomato" = 2) diff --git a/code/modules/hydroponics/seed_packets.dm b/code/modules/hydroponics/seed_packets.dm index 4a08f897da..1574365617 100644 --- a/code/modules/hydroponics/seed_packets.dm +++ b/code/modules/hydroponics/seed_packets.dm @@ -118,6 +118,9 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds) /obj/item/seeds/glowberryseed seed_type = "glowberries" +/obj/item/seeds/peppercornseed + seed_type = "peppercorns" + /obj/item/seeds/bananaseed seed_type = "banana" diff --git a/code/modules/hydroponics/seed_storage_vr.dm b/code/modules/hydroponics/seed_storage_vr.dm index cf7a856d85..44f9d8cc8d 100644 --- a/code/modules/hydroponics/seed_storage_vr.dm +++ b/code/modules/hydroponics/seed_storage_vr.dm @@ -25,6 +25,7 @@ /obj/item/seeds/orangeseed = 3, /obj/item/seeds/onionseed = 3, /obj/item/seeds/peanutseed = 3, + /obj/item/seeds/peppercornseed = 2, /obj/item/seeds/plumpmycelium = 3, /obj/item/seeds/poppyseed = 3, /obj/item/seeds/potatoseed = 3, @@ -83,6 +84,7 @@ /obj/item/seeds/nettleseed = 2, /obj/item/seeds/orangeseed = 3, /obj/item/seeds/peanutseed = 3, + /obj/item/seeds/peppercornseed = 2, /obj/item/seeds/plastiseed = 3, /obj/item/seeds/plumpmycelium = 3, /obj/item/seeds/poppyseed = 3, diff --git a/code/modules/hydroponics/seedtypes/berries.dm b/code/modules/hydroponics/seedtypes/berries.dm index 2ad36353fe..3654a62cb3 100644 --- a/code/modules/hydroponics/seedtypes/berries.dm +++ b/code/modules/hydroponics/seedtypes/berries.dm @@ -67,4 +67,16 @@ set_trait(TRAIT_YIELD,3) set_trait(TRAIT_POTENCY,50) set_trait(TRAIT_PRODUCT_COLOUR,"#7A5454") - set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.35) \ No newline at end of file + set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.35) + +/datum/seed/berry/peppercorn + name = "peppercorns" + seed_name = "peppercorn berry" + kitchen_tag = "peppercorns" + display_name = "peppercorn bush" + chems = list("blackpepper" = list(5,10)) + +/datum/seed/berry/peppercorn/New() + ..() + set_trait(TRAIT_PRODUCT_COLOUR,"#303030") + set_trait(TRAIT_WATER_CONSUMPTION, 2) \ No newline at end of file diff --git a/code/modules/hydroponics/trays/tray_tools.dm b/code/modules/hydroponics/trays/tray_tools.dm index 3e5bd91b6a..cf8fd8d581 100644 --- a/code/modules/hydroponics/trays/tray_tools.dm +++ b/code/modules/hydroponics/trays/tray_tools.dm @@ -11,6 +11,13 @@ item_state = "hedget" force = 7 //One point extra than standard wire cutters. +/obj/item/weapon/tool/wirecutters/clippers/trimmers/afterattack(atom/A as mob|obj|turf|area, mob/user as mob, proximity) + if(!proximity) return + ..() + if(A && istype(A,/obj/effect/plant)) + var/obj/effect/plant/P = A + P.die_off() + /obj/item/device/analyzer/plant_analyzer name = "plant analyzer" icon = 'icons/obj/device.dmi' @@ -31,7 +38,7 @@ if(!ui) ui = new(user, src, "PlantAnalyzer", name) ui.open() - + /obj/item/device/analyzer/plant_analyzer/tgui_state(mob/user) return GLOB.tgui_inventory_state @@ -51,7 +58,7 @@ /obj/item/device/analyzer/plant_analyzer/tgui_act(action, list/params, datum/tgui/ui, datum/tgui_state/state) if(..()) return TRUE - + switch(action) if("print") print_report(usr) @@ -277,7 +284,7 @@ if(get_trait(TRAIT_SPORING)) data["trait_info"] += "It occasionally releases reagent carrying spores into the atmosphere." - + if(exude_gasses && exude_gasses.len) for(var/gas in exude_gasses) var/amount = "" @@ -296,4 +303,4 @@ amount = "small amounts of " data["trait_info"] += "It will consume [amount][gas_data.name[gas]] from the environment." - return data + return data \ No newline at end of file diff --git a/code/modules/instruments/songs/play_legacy.dm b/code/modules/instruments/songs/play_legacy.dm index 9d7ba493d4..bd964765cb 100644 --- a/code/modules/instruments/songs/play_legacy.dm +++ b/code/modules/instruments/songs/play_legacy.dm @@ -86,5 +86,8 @@ var/mob/living/L = M L.apply_status_effect(STATUS_EFFECT_GOOD_MUSIC) */ + if(!M) + hearing_mobs -= M + continue M.playsound_local(source, null, volume * using_instrument.volume_multiplier, S = music_played, preference = /datum/client_preference/instrument_toggle, volume_channel = VOLUME_CHANNEL_INSTRUMENTS) // Could do environment and echo later but not for now diff --git a/code/modules/maps/tg/reader.dm b/code/modules/maps/tg/reader.dm index bb320e27ae..34692e2152 100644 --- a/code/modules/maps/tg/reader.dm +++ b/code/modules/maps/tg/reader.dm @@ -418,6 +418,14 @@ GLOBAL_DATUM_INIT(_preloader, /dmm_suite/preloader, new) if(orientation != 0) // 0 means no rotation var/atom/A = . A.set_dir(turn(A.dir, orientation)) + if(istype(crds, /turf/simulated/floor)) //CHOMPAdd: Wilderness ceilings! + var/turf/simulated/floor/F = crds + if(istype(F.loc, /area/submap) && F.outdoors != 1) + for(var/obj/effect/zone_divider/ZD in F.contents) + qdel(ZD) + var/turf/above = GetAbove(F) + if(above && istype(above, /turf/simulated/open)) + above.ChangeTurf(get_base_turf_by_area(F), FALSE, TRUE) //CHOMPAdd End /dmm_suite/proc/create_atom(path, crds) set waitfor = FALSE diff --git a/code/modules/materials/sheets/stone.dm b/code/modules/materials/sheets/stone.dm index c30766cda4..ff8864ccef 100644 --- a/code/modules/materials/sheets/stone.dm +++ b/code/modules/materials/sheets/stone.dm @@ -26,7 +26,7 @@ /obj/item/stack/material/concrete name = "concrete brick" - icon_state = "brick" + icon_state = "sheet-brick" default_type = "concrete" no_variants = FALSE apply_colour = 1 diff --git a/code/modules/mining/ore_redemption_machine/equipment_vendor.dm b/code/modules/mining/ore_redemption_machine/equipment_vendor.dm index 27ddc6d783..3cd370c58e 100644 --- a/code/modules/mining/ore_redemption_machine/equipment_vendor.dm +++ b/code/modules/mining/ore_redemption_machine/equipment_vendor.dm @@ -93,9 +93,6 @@ EQUIPMENT("Resonator", /obj/item/resonator, 900), EQUIPMENT("Silver Pickaxe", /obj/item/weapon/pickaxe/silver, 1200), EQUIPMENT("Super Resonator", /obj/item/resonator/upgraded, 2500), - EQUIPMENT("Fine Excavation Kit - Chisels", /obj/item/weapon/storage/excavation, 500), - EQUIPMENT("Fine Excavation Kit - Measuring Tape", /obj/item/device/measuring_tape, 125), - EQUIPMENT("Fine Excavation Kit - Hand Pick", /obj/item/weapon/pickaxe/hand, 375), EQUIPMENT("Explosive Excavation Kit - Plastic Charge",/obj/item/weapon/plastique/seismic/locked, 1500), EQUIPMENT("Industrial Equipment - Phoron Bore", /obj/item/weapon/gun/magnetic/matfed/phoronbore/loaded, 3000), EQUIPMENT("Industrial Equipment - Inducer", /obj/item/weapon/inducer, 3500), diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index d62004069e..cd6dfd962d 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -455,7 +455,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp to_chat(usr, "You cannot follow a mob standing on holy grounds!") return if(get_z(target) in using_map?.secret_levels) - to_chat(src, SPAN_WARNING("Sorry, that target is in an area that ghosts aren't allowed to go.")) + to_chat(src, "Sorry, that target is in an area that ghosts aren't allowed to go.") return if(target != src) if(following && following == target) @@ -463,7 +463,11 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp following = target to_chat(src, "Now following [target]") if(ismob(target)) - forceMove(get_turf(target)) + var/target_turf = get_turf(target) + if(!target_turf) + to_chat(usr, "This mob does not seem to exist in the tangible world.") + return + forceMove(target_turf) var/mob/M = target M.following_mobs += src else diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index dd816d1e8f..b8e4629299 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -99,11 +99,13 @@ // If the body is in VR, move the mind back to the real world if(vr_holder) + src.died_in_vr = TRUE //CHOMPedit, so avatar.dm can delete bodies src.exit_vr() src.vr_holder.vr_link = null for(var/obj/item/W in src) src.drop_from_inventory(W) + // If our mind is in VR, bring it back to the real world so it can die with its body if(vr_link) vr_link.exit_vr() diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 6e0db885bb..6c03a47d47 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -158,6 +158,15 @@ var/list/_human_default_emotes = list( /decl/emote/audible/mothscream, /decl/emote/audible/mothchitter, /decl/emote/audible/mothlaugh, + /decl/emote/audible/multichirp, + /decl/emote/audible/gnarl, + /decl/emote/audible/teshsqueak, + /decl/emote/audible/teshchirp, + /decl/emote/audible/teshtrill, + /decl/emote/visible/bounce, + /decl/emote/visible/jiggle, + /decl/emote/visible/lightup, + /decl/emote/visible/vibrate, //VOREStation Add End //CHOMP Add start /decl/emote/audible/prbt2 diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 2cb5300a7f..897ac2d2ca 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -76,9 +76,9 @@ BP_L_LEG = skip_body & EXAMINE_SKIPLEGS, BP_R_LEG = skip_body & EXAMINE_SKIPLEGS) + var/gender_hidden = (skip_gear & EXAMINE_SKIPJUMPSUIT) && (skip_body & EXAMINE_SKIPFACE) var/gender_key = get_visible_gender(user, gender_hidden) - var/datum/gender/T = gender_datums[gender_key] if (!T) CRASH({"Null gender datum on examine: mob="[src]",hidden="[gender_hidden]",key="[gender_key]",bio="[gender]",id="[identifying_gender]""}) @@ -107,93 +107,88 @@ if(w_uniform && !(skip_gear & EXAMINE_SKIPJUMPSUIT) && w_uniform.show_examine) //Ties var/tie_msg + var/tie_msg_warn if(istype(w_uniform,/obj/item/clothing/under) && !(skip_gear & EXAMINE_SKIPTIE)) var/obj/item/clothing/under/U = w_uniform if(LAZYLEN(U.accessories)) - var/list/accessories_visible = list() //please let this fix the stupid fucking runtimes + tie_msg += ". Attached to it is" + tie_msg_warn += "! Attached to it is" + var/list/accessory_descs = list() if(skip_gear & EXAMINE_SKIPHOLSTER) for(var/obj/item/clothing/accessory/A in U.accessories) if(A.show_examine && !istype(A, /obj/item/clothing/accessory/holster)) // If we're supposed to skip holsters, actually skip them - accessories_visible.Add(A) + accessory_descs += "\a [A]" else for(var/obj/item/clothing/accessory/A in U.accessories) if(A.concealed_holster == 0 && A.show_examine) - accessories_visible.Add(A) - - if(accessories_visible.len) - tie_msg += " Attached to it is [english_list(accessories_visible)]." - - var/list/pocket_msg - if(l_store) - var/l_store_message = l_store.pocket_description(src, user) - if(l_store_message) - LAZYADD(pocket_msg, l_store_message) - if(r_store) - var/r_store_message = r_store.pocket_description(src, user) - if(r_store_message) - LAZYADD(pocket_msg, r_store_message) - if(LAZYLEN(pocket_msg)) - tie_msg += " Near the waist it has [english_list(pocket_msg)]." + accessory_descs += "\a [A]" + tie_msg += " [lowertext(english_list(accessory_descs))]." if(w_uniform.blood_DNA) - msg += "[T.He] [T.is] wearing \icon[w_uniform][bicon(w_uniform)] [w_uniform.gender==PLURAL?"some":"a"] [(w_uniform.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [w_uniform.name]![tie_msg]" + msg += "[T.He] [T.is] wearing [bicon(w_uniform)] [w_uniform.gender==PLURAL?"some":"a"] [(w_uniform.blood_color != "#030303") ? "blood" : "oil"]-stained [w_uniform.name]![tie_msg]" else - msg += "[T.He] [T.is] wearing \icon[w_uniform][bicon(w_uniform)] \a [w_uniform].[tie_msg]" + msg += "[T.He] [T.is] wearing [bicon(w_uniform)] \a [w_uniform].[tie_msg]" //head if(head && !(skip_gear & EXAMINE_SKIPHELMET) && head.show_examine) if(head.blood_DNA) - msg += "[T.He] [T.is] wearing \icon[head][bicon(head)] [head.gender==PLURAL?"some":"a"] [(head.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [head.name] on [T.his] head!" + msg += "[T.He] [T.is] wearing [bicon(head)] [head.gender==PLURAL?"some":"a"] [(head.blood_color != "#030303") ? "blood" : "oil"]-stained [head.name] on [T.his] head!" else - msg += "[T.He] [T.is] wearing \icon[head][bicon(head)] \a [head] on [T.his] head." + msg += "[T.He] [T.is] wearing [bicon(head)] \a [head] on [T.his] head." //suit/armour if(wear_suit) var/tie_msg + var/tie_msg_warn if(istype(wear_suit,/obj/item/clothing/suit)) var/obj/item/clothing/suit/U = wear_suit if(LAZYLEN(U.accessories)) - tie_msg += " Attached to it is [english_list(U.accessories)]." + tie_msg += ". Attached to it is" + tie_msg_warn += "! Attached to it is" + var/list/accessory_descs = list() + for(var/accessory in U.accessories) + accessory_descs += "\a [accessory]" + tie_msg += " [lowertext(english_list(accessory_descs))]." if(wear_suit.blood_DNA) - msg += "[T.He] [T.is] wearing \icon[wear_suit][bicon(wear_suit)] [wear_suit.gender==PLURAL?"some":"a"] [(wear_suit.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [wear_suit.name][tie_msg]!" + msg += "[T.He] [T.is] wearing [bicon(wear_suit)] [wear_suit.gender==PLURAL?"some":"a"] [(wear_suit.blood_color != "#030303") ? "blood" : "oil"]-stained [wear_suit.name]![tie_msg]" else - msg += "[T.He] [T.is] wearing \icon[wear_suit][bicon(wear_suit)] \a [wear_suit].[tie_msg]" + msg += "[T.He] [T.is] wearing [bicon(wear_suit)] \a [wear_suit].[tie_msg]" //suit/armour storage if(s_store && !(skip_gear & EXAMINE_SKIPSUITSTORAGE) && s_store.show_examine) if(s_store.blood_DNA) - msg += "[T.He] [T.is] carrying \icon[s_store][bicon(s_store)] [s_store.gender==PLURAL?"some":"a"] [(s_store.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [s_store.name] on [T.his] [wear_suit.name]!" + msg += "[T.He] [T.is] carrying [bicon(s_store)] [s_store.gender==PLURAL?"some":"a"] [(s_store.blood_color != "#030303") ? "blood" : "oil"]-stained [s_store.name] on [T.his] [wear_suit.name]!" else - msg += "[T.He] [T.is] carrying \icon[s_store][bicon(s_store)] \a [s_store] on [T.his] [wear_suit.name]." + msg += "[T.He] [T.is] carrying [bicon(s_store)] \a [s_store] on [T.his] [wear_suit.name]." //back if(back && !(skip_gear & EXAMINE_SKIPBACKPACK) && back.show_examine) if(back.blood_DNA) - msg += "[T.He] [T.has] \icon[back][bicon(back)] [back.gender==PLURAL?"some":"a"] [(back.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [back] on [T.his] back." + msg += "[T.He] [T.has] [bicon(back)] [back.gender==PLURAL?"some":"a"] [(back.blood_color != "#030303") ? "blood" : "oil"]-stained [back] on [T.his] back." else - msg += "[T.He] [T.has] \icon[back][bicon(back)] \a [back] on [T.his] back." + msg += "[T.He] [T.has] [bicon(back)] \a [back] on [T.his] back." //left hand if(l_hand && l_hand.show_examine) if(l_hand.blood_DNA) - msg += "[T.He] [T.is] holding \icon[l_hand][bicon(l_hand)] [l_hand.gender==PLURAL?"some":"a"] [(l_hand.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [l_hand.name] in [T.his] left hand!" + msg += "[T.He] [T.is] holding [bicon(l_hand)] [l_hand.gender==PLURAL?"some":"a"] [(l_hand.blood_color != "#030303") ? "blood" : "oil"]-stained [l_hand.name] in [T.his] left hand!" else - msg += "[T.He] [T.is] holding \icon[l_hand][bicon(l_hand)] \a [l_hand] in [T.his] left hand." + msg += "[T.He] [T.is] holding [bicon(l_hand)] \a [l_hand] in [T.his] left hand." //right hand if(r_hand && r_hand.show_examine) if(r_hand.blood_DNA) - msg += "[T.He] [T.is] holding \icon[r_hand][bicon(r_hand)] [r_hand.gender==PLURAL?"some":"a"] [(r_hand.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [r_hand.name] in [T.his] right hand!" + msg += "[T.He] [T.is] holding [bicon(r_hand)] [r_hand.gender==PLURAL?"some":"a"] [(r_hand.blood_color != "#030303") ? "blood" : "oil"]-stained [r_hand.name] in [T.his] right hand!" else - msg += "[T.He] [T.is] holding \icon[r_hand][bicon(r_hand)] \a [r_hand] in [T.his] right hand." + msg += "[T.He] [T.is] holding [bicon(r_hand)] \a [r_hand] in [T.his] right hand." //gloves if(gloves && !(skip_gear & EXAMINE_SKIPGLOVES) && gloves.show_examine) if(gloves.blood_DNA) - msg += "[T.He] [T.has] \icon[gloves][bicon(gloves)] [gloves.gender==PLURAL?"some":"a"] [(gloves.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [gloves.name] on [T.his] hands!" + msg += "[T.He] [T.has] [bicon(gloves)] [gloves.gender==PLURAL?"some":"a"] [(gloves.blood_color != "#030303") ? "blood" : "oil"]-stained [gloves.name] on [T.his] hands!" else - msg += "[T.He] [T.has] \icon[gloves][bicon(gloves)] \a [gloves] on [T.his] hands." + msg += "[T.He] [T.has] [bicon(gloves)] \a [gloves] on [T.his] hands." else if(blood_DNA && !(skip_body & EXAMINE_SKIPHANDS)) msg += "[T.He] [T.has] [(hand_blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained hands!" @@ -211,16 +206,16 @@ //belt if(belt && !(skip_gear & EXAMINE_SKIPBELT) && belt.show_examine) if(belt.blood_DNA) - msg += "[T.He] [T.has] \icon[belt][bicon(belt)] [belt.gender==PLURAL?"some":"a"] [(belt.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [belt.name] about [T.his] waist!" + msg += "[T.He] [T.has] [bicon(belt)] [belt.gender==PLURAL?"some":"a"] [(belt.blood_color != "#030303") ? "blood" : "oil"]-stained [belt.name] about [T.his] waist!" else - msg += "[T.He] [T.has] \icon[belt][bicon(belt)] \a [belt] about [T.his] waist." + msg += "[T.He] [T.has] [bicon(belt)] \a [belt] about [T.his] waist." //shoes if(shoes && !(skip_gear & EXAMINE_SKIPSHOES) && shoes.show_examine) if(shoes.blood_DNA) - msg += "[T.He] [T.is] wearing \icon[shoes][bicon(shoes)] [shoes.gender==PLURAL?"some":"a"] [(shoes.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [shoes.name] on [T.his] feet!" + msg += "[T.He] [T.is] wearing [bicon(shoes)] [shoes.gender==PLURAL?"some":"a"] [(shoes.blood_color != "#030303") ? "blood" : "oil"]-stained [shoes.name] on [T.his] feet!" else - msg += "[T.He] [T.is] wearing \icon[shoes][bicon(shoes)] \a [shoes] on [T.his] feet." + msg += "[T.He] [T.is] wearing [bicon(shoes)] \a [shoes] on [T.his] feet." else if(feet_blood_DNA && !(skip_body & EXAMINE_SKIPHANDS)) msg += "[T.He] [T.has] [(feet_blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained feet!" @@ -231,38 +226,28 @@ descriptor = "in [T.his] mouth" if(wear_mask.blood_DNA) - msg += "[T.He] [T.has] \icon[wear_mask][bicon(wear_mask)] [wear_mask.gender==PLURAL?"some":"a"] [(wear_mask.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [wear_mask.name] [descriptor]!" + msg += "[T.He] [T.has] [bicon(wear_mask)] [wear_mask.gender==PLURAL?"some":"a"] [(wear_mask.blood_color != "#030303") ? "blood" : "oil"]-stained [wear_mask.name] [descriptor]!" else - msg += "[T.He] [T.has] \icon[wear_mask][bicon(wear_mask)] \a [wear_mask] [descriptor]." + msg += "[T.He] [T.has] [bicon(wear_mask)] \a [wear_mask] [descriptor]." //eyes if(glasses && !(skip_gear & EXAMINE_SKIPEYEWEAR) && glasses.show_examine) if(glasses.blood_DNA) - msg += "[T.He] [T.has] \icon[glasses][bicon(glasses)] [glasses.gender==PLURAL?"some":"a"] [(glasses.blood_color != SYNTH_BLOOD_COLOUR) ? "blood" : "oil"]-stained [glasses] covering [T.his] eyes!" + msg += "[T.He] [T.has] [bicon(glasses)] [glasses.gender==PLURAL?"some":"a"] [(glasses.blood_color != "#030303") ? "blood" : "oil"]-stained [glasses] covering [T.his] eyes!" else - msg += "[T.He] [T.has] \icon[glasses][bicon(glasses)] \a [glasses] covering [T.his] eyes." + msg += "[T.He] [T.has] [bicon(glasses)] \a [glasses] covering [T.his] eyes." //left ear if(l_ear && !(skip_gear & EXAMINE_SKIPEARS) && l_ear.show_examine) - msg += "[T.He] [T.has] \icon[l_ear][bicon(l_ear)] \a [l_ear] on [T.his] left ear." + msg += "[T.He] [T.has] [bicon(l_ear)] \a [l_ear] on [T.his] left ear." //right ear if(r_ear && !(skip_gear & EXAMINE_SKIPEARS) && r_ear.show_examine) - msg += "[T.He] [T.has] \icon[r_ear][bicon(r_ear)] \a [r_ear] on [T.his] right ear." + msg += "[T.He] [T.has] [bicon(r_ear)] \a [r_ear] on [T.his] right ear." //ID if(wear_id && wear_id.show_examine) - /*var/id - if(istype(wear_id, /obj/item/device/pda)) - var/obj/item/device/pda/pda = wear_id - id = pda.owner - else if(istype(wear_id, /obj/item/weapon/card/id)) //just in case something other than a PDA/ID card somehow gets in the ID slot :[ - var/obj/item/weapon/card/id/idcard = wear_id - id = idcard.registered_name - if(id && (id != real_name) && (get_dist(src, usr) <= 1) && prob(10)) - msg += "[T.He] [T.is] wearing \icon[wear_id][bicon(wear_id)] \a [wear_id] yet something doesn't seem right..." - else*/ - msg += "[T.He] [T.is] wearing \icon[wear_id][bicon(wear_id)] \a [wear_id]." + msg += "[T.He] [T.is] wearing [bicon(wear_id)]\a [wear_id]." //Jitters if(is_jittery) @@ -438,6 +423,9 @@ msg += "Physical status: \[[medical]\]" msg += "Medical records: \[View\] \[Add comment\]" + if(hasHUD(user,"best")) + msg += "Employment records: \[View\] \[Add comment\]" + var/flavor_text = print_flavor_text() if(flavor_text) @@ -476,5 +464,3 @@ else if(istype(M, /mob/living/silicon/robot)) var/mob/living/silicon/robot/R = M return R.sensor_type //VOREStation Add - Borgo sensors are now binary so just have them on or off - - return 0 diff --git a/code/modules/mob/living/carbon/human/examine_vr.dm b/code/modules/mob/living/carbon/human/examine_vr.dm index 52162a96af..5fce5e9e9b 100644 --- a/code/modules/mob/living/carbon/human/examine_vr.dm +++ b/code/modules/mob/living/carbon/human/examine_vr.dm @@ -80,6 +80,9 @@ if("medical") if(omni.mode == "med" || omni.mode == "best") return TRUE + if("best") + if(omni.mode == "best") + return TRUE return FALSE diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index aa441c3909..59460e4f95 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -569,10 +569,97 @@ var/mob/living/silicon/robot/U = usr R.fields[text("com_[counter]")] = text("Made by [U.name] ([U.modtype] [U.braintype]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [game_year]
[t1]") + if (href_list["emprecord"]) + if(hasHUD(usr,"best")) + var/perpname = "wot" + var/read = 0 + + var/obj/item/weapon/card/id/I = GetIdCard() + if(I) + perpname = I.registered_name + else + perpname = name + for (var/datum/data/record/E in data_core.general) + if (E.fields["name"] == perpname) + for (var/datum/data/record/R in data_core.general) + if (R.fields["id"] == E.fields["id"]) + if(hasHUD(usr,"best")) + to_chat(usr, "Name: [R.fields["name"]]") + to_chat(usr, "Assignment: [R.fields["real_rank"]] ([R.fields["rank"]])") + to_chat(usr, "Home System: [R.fields["home_system"]]") + to_chat(usr, "Citizenship: [R.fields["citizenship"]]") + to_chat(usr, "Primary Employer: [R.fields["personal_faction"]]") + to_chat(usr, "Religious Beliefs: [R.fields["religion"]]") + to_chat(usr, "Notes: [R.fields["notes"]]") + to_chat(usr, "\[View Comment Log\]") + read = 1 + + if(!read) + to_chat(usr, "Unable to locate a data core entry for this person.") + + if (href_list["emprecordComment"]) + if(hasHUD(usr,"best")) + var/perpname = "wot" + var/read = 0 + + var/obj/item/weapon/card/id/I = GetIdCard() + if(I) + perpname = I.registered_name + else + perpname = name + for (var/datum/data/record/E in data_core.general) + if (E.fields["name"] == perpname) + for (var/datum/data/record/R in data_core.general) + if (R.fields["id"] == E.fields["id"]) + if(hasHUD(usr,"best")) + read = 1 + var/counter = 1 + while(R.fields[text("com_[]", counter)]) + to_chat(usr, "[R.fields[text("com_[]", counter)]]") + counter++ + if (counter == 1) + to_chat(usr, "No comment found") + to_chat(usr, "\[Add comment\]") + + if(!read) + to_chat(usr, "Unable to locate a data core entry for this person.") + + if (href_list["emprecordadd"]) + if(hasHUD(usr,"best")) + var/perpname = "wot" + var/obj/item/weapon/card/id/I = GetIdCard() + if(I) + perpname = I.registered_name + else + perpname = name + for (var/datum/data/record/E in data_core.general) + if (E.fields["name"] == perpname) + for (var/datum/data/record/R in data_core.general) + if (R.fields["id"] == E.fields["id"]) + if(hasHUD(usr,"best")) + var/t1 = sanitize(tgui_input_text(usr, "Add Comment:", "Emp. records", null, null, multiline = TRUE, prevent_enter = TRUE)) + if ( !(t1) || usr.stat || usr.restrained() || !(hasHUD(usr,"best")) ) + return + var/counter = 1 + while(R.fields[text("com_[]", counter)]) + counter++ + if(istype(usr,/mob/living/carbon/human)) + var/mob/living/carbon/human/U = usr + R.fields[text("com_[counter]")] = text("Made by [U.get_authentification_name()] ([U.get_assignment()]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [game_year]
[t1]") + if(istype(usr,/mob/living/silicon/robot)) + var/mob/living/silicon/robot/U = usr + R.fields[text("com_[counter]")] = text("Made by [U.name] ([U.modtype] [U.braintype]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [game_year]
[t1]") + if (href_list["lookitem"]) var/obj/item/I = locate(href_list["lookitem"]) src.examinate(I) + if (href_list["lookitem_desc_only"]) + var/obj/item/I = locate(href_list["lookitem_desc_only"]) + if(!I) + return + usr.examinate(I, 1) + if (href_list["lookmob"]) var/mob/M = locate(href_list["lookmob"]) src.examinate(M) @@ -864,7 +951,7 @@ if(VISIBLE_GENDER_FORCE_BIOLOGICAL) return gender else - if((wear_mask || (head?.flags_inv & HIDEMASK)) && (wear_suit?.flags_inv & HIDEJUMPSUIT)) + if(((wear_mask?.flags_inv & HIDEFACE) || (head?.flags_inv & HIDEMASK) || (head?.flags_inv & HIDEFACE)) && (wear_suit?.flags_inv & HIDEJUMPSUIT)) return PLURAL if(species?.ambiguous_genders && user) if(ishuman(user)) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index df6919690c..31a5e7be7d 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -402,7 +402,7 @@ emp_act return // PERSON BEING HIT: CAN BE DROP PRED, ALLOWS THROW VORE. // PERSON BEING THROWN: DEVOURABLE, ALLOWS THROW VORE, CAN BE DROP PREY. - if((can_be_drop_pred && throw_vore) && (thrown_mob.devourable && thrown_mob.throw_vore && thrown_mob.can_be_drop_prey)) //Prey thrown into pred. + if((can_be_drop_pred && throw_vore && vore_selected) && (thrown_mob.devourable && thrown_mob.throw_vore && thrown_mob.can_be_drop_prey)) //Prey thrown into pred. vore_selected.nom_mob(thrown_mob) //Eat them!!! visible_message("[thrown_mob] is thrown right into [src]'s [lowertext(vore_selected.name)]!") if(thrown_mob.loc != vore_selected) @@ -412,7 +412,7 @@ emp_act // PERSON BEING HIT: CAN BE DROP PREY, ALLOWS THROW VORE, AND IS DEVOURABLE. // PERSON BEING THROWN: CAN BE DROP PRED, ALLOWS THROW VORE. - else if((can_be_drop_prey && throw_vore && devourable) && (thrown_mob.can_be_drop_pred && thrown_mob.throw_vore)) //Pred thrown into prey. + else if((can_be_drop_prey && throw_vore && devourable) && (thrown_mob.can_be_drop_pred && thrown_mob.throw_vore && thrown_mob.vore_selected)) //Pred thrown into prey. visible_message("[src] suddenly slips inside of [thrown_mob]'s [lowertext(thrown_mob.vore_selected.name)] as [thrown_mob] flies into them!") thrown_mob.vore_selected.nom_mob(src) //Eat them!!! if(src.loc != thrown_mob.vore_selected) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 5763041914..bbd12e5e97 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -291,11 +291,13 @@ var/obj/item/organ/internal/I = null //Used for further down below when an organ is picked. if(!radiation) if(species.appearance_flags & RADIATION_GLOWS) + glow_override = FALSE set_light(0) if(accumulated_rads) accumulated_rads -= RADIATION_SPEED_COEFFICIENT //Accumulated rads slowly dissipate very slowly. Get to medical to get it treated! else if(((life_tick % 5 == 0) && radiation) || (radiation > 600)) //Radiation is a slow, insidious killer. Unless you get a massive dose, then the onset is sudden! if(species.appearance_flags & RADIATION_GLOWS) + glow_override = TRUE set_light(max(1,min(5,radiation/15)), max(1,min(10,radiation/25)), species.get_flesh_colour(src)) // END DOGSHIT SNOWFLAKE @@ -1200,9 +1202,11 @@ var/turf/T = loc light_amount = T.get_lumcount() / 10 adjust_nutrition(light_amount) - //CHOMPEdit End // nutrition decrease - if (nutrition > 0 && stat != DEAD) + if(nutrition <= 0 && species.shrinks && size_multiplier > RESIZE_TINY) + nutrition = 0.1 + //CHOMPEdit End + if(nutrition > 0 && stat != DEAD) var/nutrition_reduction = species.hunger_factor for(var/datum/modifier/mod in modifiers) diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 2d116e98e0..37f8470dc9 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -102,12 +102,14 @@ var/flash_mod = 1 // Stun from blindness modifier (flashes and flashbangs) var/flash_burn = 0 // how much damage to take from being flashed if light hypersensitive var/sound_mod = 1 // Multiplier to the effective *range* of flashbangs. a flashbang's bang hits an entire screen radius, with some falloff. - var/chem_strength_heal = 1 // Multiplier to most beneficial chem strength - var/chem_strength_pain = 1 // Multiplier to painkiller strength (could be used in a negative trait to simulate long-term addiction reducing effects, etc.) - var/chem_strength_tox = 1 // Multiplier to toxic chem strength (inc. chloral/sopo/mindbreaker/etc. thresholds) + + var/chem_strength_heal = 1 // Multiplier to most beneficial chem strength + var/chem_strength_pain = 1 // Multiplier to painkiller strength (could be used in a negative trait to simulate long-term addiction reducing effects, etc.) + var/chem_strength_tox = 1 // Multiplier to toxic chem strength (inc. chloral/sopo/mindbreaker/etc. thresholds) + var/chem_strength_alcohol = 1 // Multiplier to alcohol strength; 0.5 = half, 0 = no effect at all, 2 = double, etc. + var/chemOD_threshold = 1 // Multiplier to overdose threshold; lower = easier overdosing var/chemOD_mod = 1 // Damage modifier for overdose; higher = more damage from ODs - var/alcohol_mod = 1 // Multiplier to alcohol strength; 0.5 = half, 0 = no effect at all, 2 = double, etc. var/pain_mod = 1 // Multiplier to pain effects; 0.5 = half, 0 = no effect (equal to NO_PAIN, really), 2 = double, etc. var/stun_mod = 1 // Multiplier to stun effects; 0.5 = half, - = no effect (immune), 2 = double, etc. var/weaken_mod = 1 // Multiplier to weakness effects; 0.5 = half, - = no effect (immune), 2 = double, etc. diff --git a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm index e33a98502e..0b6a891890 100644 --- a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm @@ -48,6 +48,31 @@ trait_points = 2 + //CHOMPEdit Start - add a bunch of default emotes + default_emotes = list( + /decl/emote/audible/teshsqueak, + /decl/emote/audible/teshchirp, + /decl/emote/audible/teshtrill, + /decl/emote/audible/vox_shriek, + /decl/emote/audible/squish, + /decl/emote/audible/chirp, + /decl/emote/visible/bounce, + /decl/emote/visible/jiggle, + /decl/emote/visible/lightup, + /decl/emote/visible/vibrate, + /decl/emote/audible/gnarl, + /decl/emote/audible/purr, + /decl/emote/audible/purrlong, + /decl/emote/human/swish, + /decl/emote/human/wag, + /decl/emote/human/sway, + /decl/emote/human/qwag, + /decl/emote/human/fastsway, + /decl/emote/human/swag, + /decl/emote/human/stopsway + ) + //CHOMPEdit End + /datum/species/custom/update_sort_hint() sort_hint = SPECIES_SORT_CUSTOM 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 d65f2afb7a..fe9f8ce017 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -60,6 +60,8 @@ var/datum/species/shapeshifter/promethean/prometheans oxy_mod = 0 flash_mod = 0.5 //No centralized, lensed eyes. item_slowdown_mod = 1.33 + + chem_strength_alcohol = 2 cloning_modifier = /datum/modifier/cloning_sickness/promethean 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 d54928b455..c1fdd74b69 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -71,6 +71,7 @@ name_language = LANGUAGE_UNATHI species_language = LANGUAGE_UNATHI health_hud_intensity = 2.5 + chem_strength_alcohol = 0.75 min_age = 32 max_age = 260 @@ -198,6 +199,7 @@ name_language = LANGUAGE_SIIK species_language = LANGUAGE_SIIK health_hud_intensity = 2.5 + chem_strength_alcohol = 1.25 min_age = 18 max_age = 110 @@ -304,6 +306,7 @@ species_language = LANGUAGE_SKRELLIAN assisted_langs = list(LANGUAGE_EAL, LANGUAGE_TERMINUS, LANGUAGE_ROOTLOCAL, LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX) health_hud_intensity = 2 + chem_strength_alcohol = 5 water_movement = -3 @@ -519,6 +522,7 @@ show_ssd = "completely quiescent" health_hud_intensity = 2.5 item_slowdown_mod = 0.1 + chem_strength_alcohol = 0 num_alternate_languages = 3 name_language = LANGUAGE_ROOTLOCAL 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 5d09da2de6..4ec3cb46df 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 @@ -97,10 +97,10 @@ if (getBruteLoss() || getFireLoss() || getHalLoss() || getToxLoss() || getOxyLoss() || getBrainLoss()) //fails if they have any of the main damage types return FALSE for (var/obj/item/organ/O in organs) //check their organs just in case they're being sneaky and somehow have organ damage but no health damage - if (O.damage) + if (O.is_damaged() || O.status) return FALSE for (var/obj/item/organ/O in internal_organs) //check their organs just in case they're being sneaky and somehow have organ damage but no health damage - if (O.damage) + if (O.is_damaged() || O.status) return FALSE return TRUE diff --git a/code/modules/mob/living/carbon/human/species/station/teshari_vr.dm b/code/modules/mob/living/carbon/human/species/station/teshari_vr.dm index 4e61c3b169..b7f46bcc3c 100644 --- a/code/modules/mob/living/carbon/human/species/station/teshari_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/teshari_vr.dm @@ -1,5 +1,5 @@ /datum/species/teshari - mob_size = MOB_SMALL //YW Edit: changed from MOB_MEDIUM to MOB_SMALL + mob_size = MOB_MEDIUM spawn_flags = SPECIES_CAN_JOIN icobase = 'icons/mob/human_races/r_teshari_vr.dmi' deform = 'icons/mob/human_races/r_teshari_vr.dmi' diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 30ce470894..7aae2b9d69 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -281,8 +281,75 @@ custom_only = FALSE allergen = ALLERGEN_COFFEE +/datum/trait/neutral/allergy_reaction + name = "Allergy Reaction: Disable Toxicity" + desc = "Take this trait to disable the toxic damage effect of being exposed to one of your allergens. Combine with the Disable Suffocation trait to have purely nonlethal reactions." + cost = 0 + custom_only = FALSE + var/reaction = AG_TOX_DMG + +/datum/trait/neutral/allergy_reaction/apply(var/datum/species/S,var/mob/living/carbon/human/H) + S.allergen_reaction ^= reaction + ..(S,H) + +/datum/trait/neutral/allergy_reaction/oxy + name = "Allergy Reaction: Disable Suffocation" + desc = "Take this trait to disable the oxygen deprivation damage effect of being exposed to one of your allergens. Combine with the Disable Toxicity trait to have purely nonlethal reactions." + cost = 0 + custom_only = FALSE + reaction = AG_OXY_DMG + +/datum/trait/neutral/allergy_reaction/brute + name = "Allergy Reaction: Spontaneous Trauma" + desc = "When exposed to one of your allergens, your skin develops unnatural bruises and other 'stigmata'-like injuries. Be aware that untreated wounds may become infected." + cost = 0 + custom_only = FALSE + reaction = AG_PHYS_DMG + +/datum/trait/neutral/allergy_reaction/burn + name = "Allergy Reaction: Blistering" + desc = "When exposed to one of your allergens, your skin develops unnatural blisters and burns, as if exposed to fire. Be aware that untreated burns are very susceptible to infection!" + cost = 0 + custom_only = FALSE + reaction = AG_BURN_DMG + +/datum/trait/neutral/allergy_reaction/pain + name = "Allergy Reaction: Disable Pain" + desc = "Take this trait to disable experiencing pain after being exposed to one of your allergens." + cost = 0 + custom_only = FALSE + reaction = AG_PAIN + +/datum/trait/neutral/allergy_reaction/weaken + name = "Allergy Reaction: Knockdown" + desc = "When exposed to one of your allergens, you will experience sudden and abrupt loss of muscle control and tension, resulting in immediate collapse and immobility. Does nothing if you have no allergens." + cost = 0 + custom_only = FALSE + reaction = AG_WEAKEN + +/datum/trait/neutral/allergy_reaction/blurry + name = "Allergy Reaction: Disable Blurring" + desc = "Take this trait to disable the blurred/impeded vision effect of allergens." + cost = 0 + custom_only = FALSE + reaction = AG_BLURRY + +/datum/trait/neutral/allergy_reaction/sleepy + name = "Allergy Reaction: Fatigue" + desc = "When exposed to one of your allergens, you will experience fatigue and tiredness, and may potentially pass out entirely. Does nothing if you have no allergens." + cost = 0 + custom_only = FALSE + reaction = AG_SLEEPY + +/datum/trait/neutral/allergy_reaction/confusion + name = "Allergy Reaction: Disable Confusion" + desc = "Take this trait to disable the confusion/disorientation effect of allergens." + cost = 0 + custom_only = FALSE + reaction = AG_CONFUSE + /datum/trait/neutral/allergen_reduced_effect - name = "Reduced Allergen Reaction" + name = "Allergen Reaction: Reduced Intensity" desc = "This trait drastically reduces the effects of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to special reactions (such as unathi drowsiness from sugars)." cost = 0 custom_only = FALSE @@ -290,7 +357,7 @@ excludes = list(/datum/trait/neutral/allergen_increased_effect) /datum/trait/neutral/allergen_increased_effect - name = "Increased Allergen Reaction" + name = "Allergen Reaction: Increased Intensity" desc = "This trait drastically increases the effects of allergen reactions, enough that even a small dose can be lethal. If you don't have any allergens set, it does nothing. It does not apply to special reactions (such as unathi drowsiness from sugars)." cost = 0 custom_only = FALSE @@ -343,45 +410,53 @@ // Alcohol Traits Start Here, from negative to positive. /datum/trait/neutral/alcohol_intolerance_advanced name = "Liver of Air" - desc = "The only way you can hold a drink is if it's in your own two hands, and even then you'd best not inhale too deeply near it. Drinks are three times as strong." + desc = "The only way you can hold a drink is if it's in your own two hands, and even then you'd best not inhale too deeply near it. Alcohol hits you three times as hard as they do other people." cost = 0 custom_only = FALSE - var_changes = list("alcohol_mod" = 3) // 300% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this! + var_changes = list("chem_strength_alcohol" = 3) /datum/trait/neutral/alcohol_intolerance_basic name = "Liver of Lilies" - desc = "You have a hard time with alcohol. Maybe you just never took to it, or maybe it doesn't agree with you... either way, drinks are twice as strong." + desc = "You have a hard time with alcohol. Maybe you just never took to it, or maybe it doesn't agree with your system... either way, alcohol hits you twice as hard." cost = 0 custom_only = FALSE - var_changes = list("alcohol_mod" = 2) // 200% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this! + var_changes = list("chem_strength_alcohol" = 2) /datum/trait/neutral/alcohol_intolerance_slight name = "Liver of Tulips" - desc = "You have a slight struggle with alcohol. Drinks are one and a half times stronger." + desc = "You are what some might call 'a bit of a lightweight', but you can still keep your drinks down... most of the time. Alcohol hits you fifty percent harder." cost = 0 custom_only = FALSE - var_changes = list("alcohol_mod" = 1.5) // 150% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this! + var_changes = list("chem_strength_alcohol" = 1.5) + +/datum/trait/neutral/alcohol_tolerance_reset + name = "Liver of Unremarkableness" + desc = "This trait exists to reset alcohol (in)tolerance for non-custom species to baseline normal. It can only be taken by Skrell, Tajara, Unathi, Diona, and Prometheans, as it would have no effect on other species." + cost = 0 + custom_only = FALSE + var_changes = list("chem_strength_alcohol" = 1) + allowed_species = list(SPECIES_SKRELL,SPECIES_TAJ,SPECIES_UNATHI,SPECIES_DIONA,SPECIES_PROMETHEAN) /datum/trait/neutral/alcohol_tolerance_basic name = "Liver of Iron" - desc = "You can hold drinks much better than those lily-livered land-lubbers! Arr! Drinks are only three-quarters as strong." + desc = "You can hold drinks much better than those lily-livered land-lubbers! Arr! Alcohol's effects on you are reduced by about a quarter." cost = 0 custom_only = FALSE - var_changes = list("alcohol_mod" = 0.75) // 75% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this! + var_changes = list("chem_strength_alcohol" = 0.75) /datum/trait/neutral/alcohol_tolerance_advanced name = "Liver of Steel" - desc = "Drinks tremble before your might! You can hold your alcohol twice as well as those blue-bellied barnacle boilers! Drinks are only half as strong." + desc = "Drinks tremble before your might! You can hold your alcohol twice as well as those blue-bellied barnacle boilers! Alcohol has just half the effect on you as it does on others." cost = 0 custom_only = FALSE - var_changes = list("alcohol_mod" = 0.5) // 50% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this! + var_changes = list("chem_strength_alcohol" = 0.5) /datum/trait/neutral/alcohol_immunity name = "Liver of Durasteel" desc = "You've drunk so much that most booze doesn't even faze you. It takes something like a Pan-Galactic or a pint of Deathbell for you to even get slightly buzzed." cost = 0 custom_only = FALSE - var_changes = list("alcohol_mod" = 0.25) // 25% as effective if alcohol_mod is set to 1. If it's not 1 in species.dm, update this! + var_changes = list("chem_strength_alcohol" = 0.25) // Alcohol Traits End Here. /datum/trait/neutral/colorblind/mono diff --git a/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm b/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm index 680e9d69bb..023a9272cb 100644 --- a/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/xenochimera_trait_vr.dm @@ -43,7 +43,7 @@ cost = 0 category = 0 custom_only = FALSE - var_changes = list("unarmed_types" = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws/chimera, /datum/unarmed_attack/bite/sharp, /datum/unarmed_attack/bite/sharp/numbing)) // CHOMPEdit: Fix 'chimera unarmed attacks with this trait + var_changes = list("unarmed_types" = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws/chimera, /datum/unarmed_attack/bite/sharp, /datum/unarmed_attack/bite/sharp/numbing)) // Fixes the parent forgetting to add 'chimera-specific claws /datum/trait/positive/snowwalker/xenochimera sort = TRAIT_SORT_SPECIES @@ -65,6 +65,8 @@ custom_only = FALSE /datum/trait/positive/winged_flight/xenochimera + sort = TRAIT_SORT_SPECIES + allowed_species = list(SPECIES_XENOCHIMERA) name = "Xenochhimera: Winged Flight" desc = "Allows you to fly by using your wings. Don't forget to bring them!" cost = 0 diff --git a/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm b/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm index ec054ab520..c9254c0c9a 100644 --- a/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm +++ b/code/modules/mob/living/carbon/human/species/virtual_reality/avatar.dm @@ -79,7 +79,7 @@ src.vr_link = avatar // Can't reuse vr_holder so that death can automatically eject users from VR // Move the mind - avatar.Sleeping(1) + // avatar.Sleeping(1) So vox don't drop their can, also feels arbitrary src.mind.transfer_to(avatar) to_chat(avatar, "You have enterred Virtual Reality!\nAll normal gameplay rules still apply.\nWounds you suffer here won't persist when you leave VR, but some of the pain will.\nYou can leave VR at any time by using the \"Exit Virtual Reality\" verb in the Abilities tab, or by ghosting.") //No more prommie VR thing, so removed tidbit about changing appearance to_chat(avatar, " You black out for a moment, and wake to find yourself in a new body in virtual reality.") // So this is what VR feels like? @@ -117,4 +117,14 @@ if(istype(vr_holder.loc, /obj/machinery/vr_sleeper)) var/obj/machinery/vr_sleeper/V = vr_holder.loc - V.go_out() \ No newline at end of file + V.go_out() + + if(died_in_vr) + spawn(3000) //Delete the body after 5 minutes to make sure mob subsystem doesn't cry + var/list/slots = list(slot_back,slot_handcuffed,slot_l_store,slot_r_store,slot_wear_mask,slot_l_hand,slot_r_hand,slot_wear_id,slot_glasses,slot_gloves,slot_head,slot_shoes,slot_belt,slot_wear_suit,slot_w_uniform,slot_s_store,slot_l_ear,slot_r_ear) + for(var/slot in slots) + var/obj/item/I = get_equipped_item(slot = slot) + if(I) + unEquip(I,force = TRUE) + release_vore_contents(include_absorbed = TRUE, silent = TRUE) + qdel(src) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index b5ef3b1d56..5f63f1d757 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -151,32 +151,28 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() var/matrix/M = matrix() var/anim_time = 3 - // VOREStation Edit Start: Porting Taur Loafing - if(tail_style?.can_loaf && resting) // Only call these if we're resting? - update_tail_showing() - return // No need to do the rest, we return early - /* // Commenting this out as sleeping is fucky - if(tail_style?.can_loaf && lying && sleeping) // If we're put under by anesthetic or fainting - update_tail_showing() - // return // No need to do the rest, we return early - */ - // VOREStation Edit End - //Due to some involuntary means, you're laying now if(lying && !resting && !sleeping) anim_time = 1 //Thud if(lying && !species.prone_icon) //Only rotate them if we're not drawing a specific icon for being prone. - var/randn = rand(1, 2) - if(randn <= 1) // randomly choose a rotation - M.Turn(-90) + // CHOMPEdit Start Loafy Time + if(tail_style?.can_loaf && resting) // Only call these if we're resting? + update_tail_showing() + M.Scale(desired_scale_x, desired_scale_y) else - M.Turn(90) - M.Scale(desired_scale_y, desired_scale_x)//VOREStation Edit - if(species.icon_height == 64)//VOREStation Edit - M.Translate(13,-22) - else - M.Translate(1,-6) + var/randn = rand(1, 2) + if(randn <= 1) // randomly choose a rotation + M.Turn(-90) + else + M.Turn(90) + if(species.icon_height == 64) + M.Translate(13,-22) + else + M.Translate(1,-6) + M.Scale(desired_scale_y, desired_scale_x) + M.Translate(center_offset * desired_scale_x, (vis_height/2)*(desired_scale_y-1)) //CHOMPEdit + // CHOMPEdit End layer = MOB_LAYER -0.01 // Fix for a byond bug where turf entry order no longer matters else M.Scale(desired_scale_x, desired_scale_y)//VOREStation Edit @@ -743,16 +739,34 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() if(!l_ear && !r_ear) return //Why bother, if no ear sprites + if(hide_headset) //CHOMPEdit Start + if(l_ear && istype(l_ear, /obj/item/device/radio/headset)) //No need to generate blank images if only headsets are present. + if(!r_ear || istype(r_ear, /obj/item/device/radio/headset)) + return + if(r_ear && istype(r_ear, /obj/item/device/radio/headset)) + if(!l_ear || istype(l_ear, /obj/item/device/radio/headset)) + return + // Blank image upon which to layer left & right overlays. var/image/both = image(icon = 'icons/effects/effects.dmi', icon_state = "nothing", layer = BODY_LAYER+EARS_LAYER) if(l_ear) - var/image/standing = l_ear.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_l_ear_str, default_icon = INV_EARS_DEF_ICON, default_layer = EARS_LAYER) - both.add_overlay(standing) + if(istype(l_ear, /obj/item/device/radio/headset)) + if(!hide_headset) + var/image/standing = l_ear.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_l_ear_str, default_icon = INV_EARS_DEF_ICON, default_layer = EARS_LAYER) + both.add_overlay(standing) + else + var/image/standing = l_ear.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_l_ear_str, default_icon = INV_EARS_DEF_ICON, default_layer = EARS_LAYER) + both.add_overlay(standing) if(r_ear) - var/image/standing = r_ear.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_r_ear_str, default_icon = INV_EARS_DEF_ICON, default_layer = EARS_LAYER) - both.add_overlay(standing) + if(istype(r_ear, /obj/item/device/radio/headset)) + if(!hide_headset) + var/image/standing = r_ear.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_r_ear_str, default_icon = INV_EARS_DEF_ICON, default_layer = EARS_LAYER) + both.add_overlay(standing) + else + var/image/standing = r_ear.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_r_ear_str, default_icon = INV_EARS_DEF_ICON, default_layer = EARS_LAYER) + both.add_overlay(standing) //CHOMPEdit End overlays_standing[EARS_LAYER] = both apply_layer(EARS_LAYER) @@ -1278,13 +1292,13 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() //If you have a custom tail selected if(tail_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL && !istaurtail(tail_style)) && !tail_hidden) - var/icon/tail_s = new/icon("icon" = tail_style.icon, "icon_state" = (tail_style.can_loaf && resting) ? "[tail_style.icon_state]_loaf" : (wagging && tail_style.ani_state ? tail_style.ani_state : tail_style.icon_state)) // VOREStation Edit: Taur Loafing + var/icon/tail_s = new/icon("icon" = (tail_style.can_loaf && resting) ? tail_style.icon_loaf : tail_style.icon, "icon_state" = (wagging && tail_style.ani_state ? tail_style.ani_state : tail_style.icon_state)) //CHOMPEdit if(tail_style.can_loaf && !is_shifted) - pixel_y = (resting) ? -tail_style.loaf_offset : 0 //move player down, then taur up, to fit the overlays correctly // VOREStation Edit: Taur + pixel_y = (resting) ? -tail_style.loaf_offset*size_multiplier : default_pixel_y //move player down, then taur up, to fit the overlays correctly // VOREStation Edit: Taur Loafing if(tail_style.do_colouration) tail_s.Blend(rgb(src.r_tail, src.g_tail, src.b_tail), tail_style.color_blend_mode) if(tail_style.extra_overlay) - var/icon/overlay = new/icon("icon" = tail_style.icon, "icon_state" = (tail_style?.can_loaf && resting) ? "[tail_style.extra_overlay]_loaf" : tail_style.extra_overlay) // VOREStation Edit: Taur Loafing + var/icon/overlay = new/icon("icon" = (tail_style?.can_loaf && resting) ? tail_style.icon_loaf : tail_style.icon, "icon_state" = tail_style.extra_overlay) //CHOMPEdit if(wagging && tail_style.ani_state) overlay = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.extra_overlay_w) overlay.Blend(rgb(src.r_tail2, src.g_tail2, src.b_tail2), tail_style.color_blend_mode) @@ -1296,7 +1310,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() qdel(overlay) if(tail_style.extra_overlay2) - var/icon/overlay = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.extra_overlay2) + var/icon/overlay = new/icon("icon" = (tail_style?.can_loaf && resting) ? tail_style.icon_loaf : tail_style.icon, "icon_state" = tail_style.extra_overlay2) //CHOMPEdit if(wagging && tail_style.ani_state) overlay = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.extra_overlay2_w) overlay.Blend(rgb(src.r_tail3, src.g_tail3, src.b_tail3), tail_style.color_blend_mode) @@ -1314,7 +1328,6 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() if(istaurtail(tail_style)) var/datum/sprite_accessory/tail/taur/taurtype = tail_style working.pixel_x = -16 - working.pixel_y = (tail_style.can_loaf && resting) ? tail_style.loaf_offset : 0 // VOREStation Edit: Taur Loafing if(taurtype.can_ride && !riding_datum) riding_datum = new /datum/riding/taur(src) verbs |= /mob/living/carbon/human/proc/taur_mount diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 6356bfb7b3..eb7462967e 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -238,6 +238,9 @@ return /mob/living/proc/handle_light() + if(glow_override) + return FALSE + if(instability >= TECHNOMANCER_INSTABILITY_MIN_GLOW) var/distance = round(sqrt(instability / 2)) if(distance) diff --git a/code/modules/mob/living/living_defines.dm b/code/modules/mob/living/living_defines.dm index c5e7a857b8..031d6ddb89 100644 --- a/code/modules/mob/living/living_defines.dm +++ b/code/modules/mob/living/living_defines.dm @@ -55,7 +55,8 @@ var/image/dsoverlay = null //Overlay used for darksight eye adjustments - var/glow_toggle = 0 // If they're glowing! + var/glow_toggle = FALSE // If they're glowing! + var/glow_override = FALSE // Ignore the manual toggle var/glow_range = 2 var/glow_intensity = null var/glow_color = "#FFFFFF" // The color they're glowing! @@ -80,4 +81,4 @@ var/flying = 0 // Allows flight var/inventory_panel_type = /datum/inventory_panel var/datum/inventory_panel/inventory_panel - var/last_resist_time = 0 // world.time of the most recent resist that wasn't on cooldown. + var/last_resist_time = 0 // world.time of the most recent resist that wasn't on cooldown. diff --git a/code/modules/mob/living/login.dm b/code/modules/mob/living/login.dm index 6a49e34be2..e68d333cec 100644 --- a/code/modules/mob/living/login.dm +++ b/code/modules/mob/living/login.dm @@ -19,6 +19,7 @@ verbs |= /mob/living/proc/lick verbs |= /mob/living/proc/smell verbs |= /mob/living/proc/switch_scaling + verbs |= /mob/living/proc/mute_entry //CHOMPEdit verbs |= /mob/living/proc/center_offset //CHOMPEdit if(!no_vore) 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 df768c12be..8b29d89494 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 @@ -100,6 +100,7 @@ "Acheron" = "mechoid-Medical", "Shellguard Noble" = "Noble-MED", "ZOOM-BA" = "zoomba-medical", + "W02M" = "worm-surgeon", "Feminine Humanoid" = "uptall-medical" ) @@ -110,6 +111,7 @@ "Acheron" = "mechoid-Medical", "Shellguard Noble" = "Noble-MED", "ZOOM-BA" = "zoomba-crisis", + "W02M" = "worm-crisis", "Feminine Humanoid" = "uptall-crisis" ) @@ -121,6 +123,7 @@ "Acheron" = "mechoid-Service", "Shellguard Noble" = "Noble-SRV", "ZOOM-BA" = "zoomba-service", + "W02M" = "worm-service", "Feminine Humanoid" = "uptall-service" ) @@ -131,6 +134,7 @@ "Acheron" = "mechoid-Service", "Shellguard Noble" = "Noble-SRV", "ZOOM-BA" = "zoomba-clerical", + "W02M" = "worm-service", "Feminine Humanoid" = "uptall-service" ) @@ -141,6 +145,7 @@ "Acheron" = "mechoid-Janitor", "Shellguard Noble" = "Noble-CLN", "ZOOM-BA" = "zoomba-janitor", + "W02M" = "worm-janitor", "Feminine Humanoid" = "uptall-janitor" ) @@ -151,6 +156,7 @@ "Acheron" = "mechoid-Security", "Shellguard Noble" = "Noble-SEC", "ZOOM-BA" = "zoomba-security", + "W02M" = "worm-security", "Feminine Humanoid" = "uptall-security" ) @@ -161,6 +167,7 @@ "Acheron" = "mechoid-Miner", "Shellguard Noble" = "Noble-DIG", "ZOOM-BA" = "zoomba-miner", + "W02M" = "worm-miner", "Feminine Humanoid" = "uptall-miner" ) @@ -171,6 +178,7 @@ "Acheron" = "mechoid-Standard", "Shellguard Noble" = "Noble-STD", "ZOOM-BA" = "zoomba-standard", + "W02M" = "worm-standard", "Feminine Humanoid" = "uptall-standard", "Feminine Humanoid, Variant 2" = "uptall-standard2" ) @@ -180,6 +188,7 @@ "Acheron" = "mechoid-Engineering", "Shellguard Noble" = "Noble-ENG", "ZOOM-BA" = "zoomba-engineering", + "W02M" = "worm-engineering", "Feminine Humanoid" = "uptall-engineering" ) @@ -189,6 +198,7 @@ "Acheron" = "mechoid-Science", "ZOOM-BA" = "zoomba-research", "XI-GUS" = "spiderscience", + "W02M" = "worm-janitor", "Feminine Humanoid" = "uptall-science" ) @@ -197,6 +207,7 @@ vr_sprites = list( "Acheron" = "mechoid-Combat", "ZOOM-BA" = "zoomba-combat", + "W02M" = "worm-combat", "Feminine Humanoid" = "uptall-security" ) diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm index a321313c71..80adc27206 100644 --- a/code/modules/mob/living/silicon/robot/robot_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_vr.dm @@ -66,7 +66,16 @@ "uptall-engineering", "uptall-miner", "uptall-security", - "uptall-science" + "uptall-science", + "worm-standard", + "worm-engineering", + "worm-janitor", + "worm-crisis", + "worm-miner", + "worm-security", + "worm-combat", + "worm-surgeon", + "worm-service" ) //List of all used sprites that are in robots_vr.dmi 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 9f22991009..44337adbf6 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -57,14 +57,14 @@ can_be_drop_prey = TRUE //CHOMP Add This also counts for spontaneous prey for telenoms and phase noms. var/damage_threshold = 0 //For some mobs, they have a damage threshold required to deal damage to them. + var/nom_mob = FALSE //If a mob is meant to be hostile for vore purposes but is otherwise not hostile, if true makes certain AI ignore the mob var/voremob_loaded = FALSE //CHOMPedit: On-demand belly loading. // Release belly contents before being gc'd! /mob/living/simple_mob/Destroy() release_vore_contents() - if(prey_excludes) - prey_excludes.Cut() + LAZYCLEARLIST(prey_excludes) return ..() //For all those ID-having mobs @@ -125,7 +125,7 @@ if(!M.allowmobvore || !M.devourable) // Don't eat people who don't want to be ate by mobs //ai_log("vr/wont eat [M] because they don't allow mob vore", 3) //VORESTATION AI TEMPORARY REMOVAL return 0 - if(M in prey_excludes) // They're excluded + if(LAZYFIND(prey_excludes, M)) // They're excluded //ai_log("vr/wont eat [M] because they are excluded", 3) //VORESTATION AI TEMPORARY REMOVAL return 0 if(M.size_multiplier < vore_min_size || M.size_multiplier > vore_max_size) @@ -266,6 +266,7 @@ "The churning walls slowly pulverize you into meaty nutrients.", "The stomach glorps and gurgles as it tries to work you into slop.") can_be_drop_pred = TRUE // Mobs will eat anyone that decides to drop/slip into them by default. + B.belly_fullscreen = "yet_another_tumby" /mob/living/simple_mob/Bumped(var/atom/movable/AM, yes) if(tryBumpNom(AM)) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm index 1640d2ddea..0b0f55351a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird_vr.dm @@ -1,4 +1,9 @@ /mob/living/simple_mob/animal/passive/bird/azure_tit/tweeter name = "Tweeter" desc = "A beautiful little blue and white bird, if only excessively loud for no reason sometimes." - makes_dirt = FALSE \ No newline at end of file + makes_dirt = FALSE + +/mob/living/simple_mob/animal/passive/bird/azure_tit/great + name = "Great Tit" + desc = "A species of bird, colored blue and white. Isn't it great?" + size_multiplier = 2 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm index 07231caf07..93f1ca1866 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm @@ -189,6 +189,7 @@ I think I covered everything. player_msg = "You're a variant of the large dragon stripped of its firebreath attack (harm intent). You can still charge (disarm) and tail sweep (grab). Rest to heal slowly. Check your abilities tab for functions." norange = 1 noenrage = 1 + nom_mob = TRUE // Weakened variant for maintpreds /mob/living/simple_mob/vore/bigdragon/friendly/maintpred @@ -947,6 +948,17 @@ I think I covered everything. if(L.stat) if(L.stat == DEAD && !handle_corpse) // Leave dead things alone return + if(isanimal(L)) //Don't attack simplemobs unless they are hostile. + var/mob/living/simple_mob/M = L + if(M.client) //Don't attack players for no reason even if they're a traditionally hostile mob + return 0 + if(M.nom_mob) //Don't attack mobs that are hostile for their vore functions to work + return 0 + if(M.ai_holder) //Don't attack non-hostile mobs + if(M.ai_holder.hostile) + return 1 + else return 0 + else return 0 if(holder.IIsAlly(L)) if(confirmPatient(L)) holder.a_intent = I_HELP diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm b/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm index 5427b978c9..37db06011b 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/leopardmander.dm @@ -47,6 +47,8 @@ vore_pounce_maxhealth = 125 vore_bump_emote = "tries to snap up" + nom_mob = TRUE + /datum/category_item/catalogue/fauna/leopardmander name = "Sivian Fauna - Va'aen Drake" desc = "Classification: S Draconis uncia\ diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/pakkun.dm b/code/modules/mob/living/simple_mob/subtypes/vore/pakkun.dm index 2972d33b18..dcdaf87b6f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/pakkun.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/pakkun.dm @@ -52,6 +52,8 @@ var/extra_posessive = FALSE // Enable if you want their tummy hugs to be inescapable var/autorest_cooldown = 100 + nom_mob = TRUE + /mob/living/simple_mob/vore/pakkun/Life() . = ..() if(client) @@ -61,7 +63,7 @@ if(autorest_cooldown) autorest_cooldown -- - else if(prob(5) && ai_holder.stance == STANCE_IDLE) + else if(prob(5) && (resting || ai_holder.stance == STANCE_IDLE)) autorest_cooldown = rand(50,200) lay_down() @@ -109,7 +111,7 @@ continue if(istype(holder, /mob/living/simple_mob)) var/mob/living/simple_mob/SM = holder - our_targets -= SM.prey_excludes + our_targets -= SM.prey_excludes // Lazylist, but subtracting a null from the list seems fine. return our_targets /datum/ai_holder/simple_mob/ranged/pakkun/can_attack(atom/movable/the_target, var/vision_required = TRUE) @@ -120,14 +122,14 @@ return FALSE if(istype(holder, /mob/living/simple_mob)) var/mob/living/simple_mob/SM = holder - if(L in SM.prey_excludes) + if(LAZYFIND(SM.prey_excludes, L)) return FALSE else return FALSE /mob/living/simple_mob/vore/pakkun/on_throw_vore_special(var/pred, var/mob/living/target) - if(pred && !extra_posessive) - prey_excludes += target + if(pred && !extra_posessive && !(LAZYFIND(prey_excludes, target))) + LAZYSET(prey_excludes, target, world.time) addtimer(CALLBACK(src, .proc/removeMobFromPreyExcludes, weakref(target)), 5 MINUTES) if(ai_holder) ai_holder.remove_target() @@ -151,8 +153,8 @@ user.visible_message("[user] swats [src] with [O]!") release_vore_contents() for(var/mob/living/L in living_mobs(0)) - if(!(L in prey_excludes)) - prey_excludes += L + if(!(LAZYFIND(prey_excludes, L))) + LAZYSET(prey_excludes, L, world.time) addtimer(CALLBACK(src, .proc/removeMobFromPreyExcludes, weakref(L)), 5 MINUTES) else ..() @@ -184,6 +186,8 @@ icon_living = "snappy" icon_state = "snappy" icon_rest = "snappy-rest" + digestable = 0 // pet mob, do not eat + devourable = 0 ai_holder_type = /datum/ai_holder/simple_mob/ranged/pakkun/snappy vore_default_mode = DM_HOLD @@ -211,6 +215,11 @@ petters += M //YOU HAVE OFFERED YOURSELF TO THE LIZARD return ..() +/mob/living/simple_mob/vore/pakkun/snapdragon/snappy/lay_down() + if(LAZYLEN(petters) && prob(50) && !resting) //50% chance she'll forgive a random person when she takes a nap + petters -= pick(petters) + ..() + /mob/living/simple_mob/vore/pakkun/snapdragon/snappy/init_vore() ..() var/obj/belly/B = vore_selected diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm index d09e72aa97..7619cfdaf7 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm @@ -167,6 +167,8 @@ area is very taxing on you, but you gain energy extremely fast in any very dark area. You're weaker than other \ shadekin, but your fast energy generation in the dark allows you to phase shift more often." + nom_mob = TRUE + /mob/living/simple_mob/shadekin/yellow ai_holder_type = /datum/ai_holder/simple_mob/melee/hit_and_run diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm index 4eb5b16661..48cb351290 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm @@ -188,10 +188,10 @@ /* //VOREStation AI Temporary Removal /mob/living/simple_mob/animal/passive/cat/fluff/EatTarget() var/mob/living/TM = target_mob - prey_excludes += TM //so they won't immediately re-eat someone who struggles out (or gets newspapered out) as soon as they're ate + LAZYSET(prey_excludes, TM, world.time) //so they won't immediately re-eat someone who struggles out (or gets newspapered out) as soon as they're ate spawn(3600) // but if they hang around and get comfortable, they might get ate again if(src && TM) - prey_excludes -= TM + LAZYREMOVE(prey_excludes, TM) ..() // will_eat check is carried out before EatTarget is called, so prey on the prey_excludes list isn't a problem. */ @@ -248,4 +248,4 @@ B.digest_mode = safe ? DM_HOLD : vore_default_mode /mob/living/simple_mob/animal/passive/mouse - faction = "mouse" //Giving mice a faction so certain mobs can get along with them. \ No newline at end of file + faction = "mouse" //Giving mice a faction so certain mobs can get along with them. diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 3f3b649ee6..bc62538861 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -482,7 +482,13 @@ ticker.mode.latespawn(character) - if(J.mob_type & JOB_SILICON) + //CHOMPEdit Begin - non-crew join don't get a message + if(rank == "Non-Crew") + log_and_message_admins("has joined the round as non-crew. (JMP)",character) + if(!(J.mob_type & JOB_SILICON)) + ticker.minds += character.mind + //CHOMPEdit End + else if(J.mob_type & JOB_SILICON) AnnounceCyborg(character, rank, join_message, announce_channel, character.z) else AnnounceArrival(character, rank, join_message, announce_channel, character.z) diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index 510ce77a26..434bfa2e3c 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -1708,22 +1708,49 @@ shaved //Skrell 'hairstyles' /datum/sprite_accessory/hair/skr - name = "Skrell Average Tentacles" - icon_state = "skrell_hair_average" + name = "Tentacles, Average" + icon_state = "skrell_short" species_allowed = list(SPECIES_SKRELL, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) -/datum/sprite_accessory/hair/skr/tentacle_veryshort - name = "Skrell Short Tentacles" - icon_state = "skrell_hair_short" - gender = MALE +/datum/sprite_accessory/hair/skr/pullback + name = "Tentacles, Average, Pullback" + icon_state = "skrell_short_pullback" -/datum/sprite_accessory/hair/skr/tentacle_average - name = "Skrell Long Tentacles" - icon_state = "skrell_hair_long" +/datum/sprite_accessory/hair/skr/very_short + name = "Tentacles, Short" + icon_state = "skrell_very_short" -/datum/sprite_accessory/hair/skr/tentacle_verylong - name = "Skrell Very Long Tentacles" - icon_state = "skrell_hair_verylong" +/datum/sprite_accessory/hair/skr/long + name = "Tentacles, Long" + icon_state = "skrell_long" + +/datum/sprite_accessory/hair/skr/long/pullback + name = "Tentacles, Long, Pullback" + icon_state = "skrell_long_pullback" + +/datum/sprite_accessory/hair/skr/long/scarf + name = "Tentacles, Long, Scarf" + icon_state = "skrell_long_scarf" + +/datum/sprite_accessory/hair/skr/long/wavy + name = "Tentacles, Long, Wavy" + icon_state = "skrell_long_wavy" + +/datum/sprite_accessory/hair/skr/very_long + name = "Tentacles, Very Long" + icon_state = "skrell_very_long" + +/datum/sprite_accessory/hair/skr/very_long/pullback + name = "Tentacles, Very Long, Pullback" + icon_state = "skrell_very_long_pullback" + +/datum/sprite_accessory/hair/skr/very_long/scarf + name = "Tentacles, Very Long, Scarf" + icon_state = "skrell_very_long_scarf" + +/datum/sprite_accessory/hair/skr/very_long/wavy + name = "Tentacles, Very Long, Wavy" + icon_state = "skrell_very_long_wavy" //Tajaran hairstyles /datum/sprite_accessory/hair/taj diff --git a/code/modules/mob/new_player/sprite_accessories_ear_ch.dm b/code/modules/mob/new_player/sprite_accessories_ear_ch.dm index ebfadaa147..95a41df36a 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_ch.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_ch.dm @@ -62,11 +62,80 @@ icon_state = "Guilmon_Horns" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - + /datum/sprite_accessory/ears/una_bighorns name = "Unathi Big Horns" icon = 'icons/mob/Human_face_m.dmi' icon_state = "unathi_bighorn" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - + +/datum/sprite_accessory/ears/chorns_nubbydogs_c + name = "Nubby Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_nubby" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_herk_c + name = "Herk Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_herk" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_bork_c + name = "Bork Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_bork" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_bull_c + name = "Bull Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_bull" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_bicarrot_c + name = "Bicarrot Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_bicarrot" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_longcarrot_c + name = "Long Carrot Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_longcarrot" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_shortcarrot_c + name = "Short Carrot Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_shortcarrot" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_scorp_c + name = "Scorp Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_scorp" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_ocean_c + name = "Ocean Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_ocean" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/chorns_chub_c + name = "Chub Chorns (colorable)" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "chorn_chub" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY diff --git a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm index 6a9ede2499..0810991ce7 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm @@ -384,23 +384,29 @@ /datum/sprite_accessory/ears/elfs name = "elven ears" desc = "" + icon = 'icons/mob/human_races/sprite_accessories/ears.dmi' icon_state = "elfs" do_colouration = 1 color_blend_mode = ICON_MULTIPLY /datum/sprite_accessory/ears/elfs1 + icon = 'icons/mob/human_races/sprite_accessories/ears.dmi' species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs2 + icon = 'icons/mob/human_races/sprite_accessories/ears.dmi' species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs3 + icon = 'icons/mob/human_races/sprite_accessories/ears.dmi' species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs4 + icon = 'icons/mob/human_races/sprite_accessories/ears.dmi' species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/elfs5 + icon = 'icons/mob/human_races/sprite_accessories/ears.dmi' species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use /datum/sprite_accessory/ears/sleek @@ -860,7 +866,7 @@ extra_overlay = "altevian-inner" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - + /datum/sprite_accessory/ears/wilddog name = "Wild Dog Ears" desc = "" diff --git a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm index aa01f6c465..919d2bedb0 100644 --- a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm @@ -885,4 +885,25 @@ icon = 'icons/mob/human_races/markings_vr.dmi' icon_state = "altevian-incisors" color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_HEAD) \ No newline at end of file + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr_eldritch_markings + name = "Eldritch Markings" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "perrinmarkings" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD,BP_L_ARM,BP_L_HAND,BP_R_ARM,BP_R_HAND,BP_L_LEG,BP_L_FOOT,BP_R_LEG,BP_R_FOOT) + +/datum/sprite_accessory/marking/vr_tesh_beak + name = "Teshari beak, pointed" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "tesh-beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr_tesh_beak_alt + name = "Teshari beak, rounded" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "tesh-beak-alt" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) diff --git a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm index cd63d811ef..5b85eaebfd 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm @@ -12,6 +12,7 @@ species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use var/list/lower_layer_dirs = list(SOUTH) + var/icon_loaf = null //CHOMPEdit /datum/sprite_accessory/tail/New() . = ..() @@ -1200,6 +1201,12 @@ ani_state = "tentacle_w" do_colouration = 1 color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/perrin_tentacles + name = "octopus tentacles (Perrin Kade)" + desc = "" + icon_state = "perrintentacles" + ckeys_allowed = list("codeme") //LONG TAILS ARE NOT TAUR BUTTS >:O /datum/sprite_accessory/tail/longtail diff --git a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm index 698c91d051..b6a31cce59 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm @@ -56,11 +56,20 @@ under_sprites = 'icons/mob/taursuits_wolf_vr.dmi' suit_sprites = 'icons/mob/taursuits_wolf_vr.dmi' icon_sprite_tag = "wolf" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 4 /datum/sprite_accessory/tail/taur/wolf/fatwolf name = "Fat Wolf (Taur)" icon_state = "fatwolf_s" - icon_sprite_tag = "wolf" //This could be modified later. + //icon_sprite_tag = "wolf" //This could be modified later. + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/wolf/wolf_wag + name = "Wolf (Taur, Fat vwag)" + icon_state = "wolf_s" + ani_state = "fatwolf_s" /datum/sprite_accessory/tail/taur/wolf/wolf_2c name = "Wolf 3-color (Taur)" @@ -69,8 +78,16 @@ extra_overlay2 = "wolf_markings_2" //icon_sprite_tag = "wolf2c" +/datum/sprite_accessory/tail/taur/wolf/fatwolf_2c + name = "Fat Wolf 3-color (Taur)" + icon_state = "fatwolf_s" + extra_overlay = "fatwolf_markings" + extra_overlay2 = "wolf_markings_2" + //icon_sprite_tag = "fatwolf2c" + loaf_offset = 3 + /datum/sprite_accessory/tail/taur/wolf/wolf_2c_wag - name = "Wolf 3-color (Taur, vwag)" + name = "Wolf 3-color (Taur, Fat vwag)" icon_state = "wolf_s" extra_overlay = "wolf_markings" extra_overlay2 = "wolf_markings_2" @@ -78,25 +95,29 @@ extra_overlay_w = "fatwolf_markings" extra_overlay2_w = "wolf_markings_2" -/datum/sprite_accessory/tail/taur/wolf/fatwolf_2c - name = "Fat Wolf 3-color (Taur)" - icon_state = "fatwolf_s" - extra_overlay = "fatwolf_markings" - extra_overlay2 = "wolf_markings_2" - //icon_sprite_tag = "fatwolf2c" - /datum/sprite_accessory/tail/taur/wolf/synthwolf name = "SynthWolf dual-color (Taur)" icon_state = "synthwolf_s" extra_overlay = "synthwolf_markings" extra_overlay2 = "synthwolf_glow" //icon_sprite_tag = "synthwolf" + loaf_offset = 3 /datum/sprite_accessory/tail/taur/wolf/fatsynthwolf name = "Fat SynthWolf dual-color (Taur)" icon_state = "fatsynthwolf_s" extra_overlay = "fatsynthwolf_markings" extra_overlay2 = "fatsynthwolf_glow" + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/wolf/fatsynthwolf_wag + name = "SynthWolf dual-color (Taur, Fat vwag)" + icon_state = "synthwolf_s" + extra_overlay = "synthwolf_markings" + extra_overlay2 = "synthwolf_glow" + ani_state = "fatsynthwolf_s" + extra_overlay_w = "fatsynthwolf_markings" + extra_overlay2_w = "fatsynthwolf_glow" /datum/sprite_accessory/tail/taur/skunk name = "Skunk (Taur)" @@ -104,6 +125,9 @@ extra_overlay = "skunk_markings" extra_overlay2 = "skunk_markings_2" icon_sprite_tag = "skunk" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 /datum/sprite_accessory/tail/taur/naga name = "Naga (Taur)" @@ -157,6 +181,9 @@ under_sprites = 'icons/mob/taursuits_horse_vr.dmi' suit_sprites = 'icons/mob/taursuits_horse_vr.dmi' icon_sprite_tag = "horse" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 4 msg_owner_disarm_run = "You quickly push %prey to the ground with your hoof!" msg_prey_disarm_run = "%owner pushes you down to the ground with their hoof!" @@ -179,12 +206,18 @@ extra_overlay = "synthhorse_markings" extra_overlay2 = "synthhorse_glow" //icon_sprite_tag = "synthhorse" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 /datum/sprite_accessory/tail/taur/cow name = "Cow (Taur)" icon_state = "cow_s" suit_sprites = 'icons/mob/taursuits_cow_vr.dmi' icon_sprite_tag = "cow" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 msg_owner_disarm_run = "You quickly push %prey to the ground with your hoof!" msg_prey_disarm_run = "%owner pushes you down to the ground with their hoof!" @@ -207,6 +240,9 @@ extra_overlay = "deer_markings" suit_sprites = 'icons/mob/taursuits_deer_vr.dmi' icon_sprite_tag = "deer" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 6 msg_owner_disarm_run = "You quickly push %prey to the ground with your hoof!" msg_prey_disarm_run = "%owner pushes you down to the ground with their hoof!" @@ -229,21 +265,45 @@ // suit_sprites = 'icons/mob/taursuits_lizard_vr.dmi' ///Chomp edit suit_sprites = 'icons/mob/taursuits_lizard_ch.dmi' icon_sprite_tag = "lizard" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 5 + +/datum/sprite_accessory/tail/taur/lizard/fatlizard + name = "Fat Lizard (Taur)" + icon_state = "fatlizard_s" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/lizard/lizard_wag + name = "Lizard (Taur, Fat vwag)" + icon_state = "lizard_s" + ani_state = "fatlizard_s" /datum/sprite_accessory/tail/taur/lizard/lizard_2c name = "Lizard dual-color (Taur)" icon_state = "lizard_s" extra_overlay = "lizard_markings" //icon_sprite_tag = "lizard2c" - -/datum/sprite_accessory/tail/taur/lizard/fatlizard - name = "Fat Lizard (Taur)" - icon_state = "fatlizard_s" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 5 /datum/sprite_accessory/tail/taur/lizard/fatlizard_2c name = "Fat Lizard (Taur, dual-color)" icon_state = "fatlizard_s" - extra_overlay= "fatlizard_markings" + extra_overlay = "fatlizard_markings" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/lizard/lizard_2c_wag + name = "Fat Lizard (Taur, dual-color, Fat vwag)" + icon_state = "lizard_s" + extra_overlay = "lizard_markings" + ani_state = "fatlizard_s" + extra_overlay_w = "fatlizard_markings" /datum/sprite_accessory/tail/taur/lizard/synthlizard name = "SynthLizard dual-color (Taur)" @@ -251,12 +311,27 @@ extra_overlay = "synthlizard_markings" extra_overlay2 = "synthlizard_glow" //icon_sprite_tag = "synthlizard" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 /datum/sprite_accessory/tail/taur/lizard/fatsynthlizard name = "Fat SynthLizard dual-color (Taur)" icon_state = "fatsynthlizard_s" extra_overlay = "fatsynthlizard_markings" extra_overlay2 = "fatsynthlizard_glow" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/lizard/synthlizard_wag + name = "SynthLizard dual-color (Taur, Fat vwag)" + icon_state = "synthlizard_s" + extra_overlay = "synthlizard_markings" + extra_overlay2 = "synthlizard_glow" + ani_state = "fatsynthlizard_s" + extra_overlay_w = "fatsynthlizard_markings" + extra_overlay2_w = "fatsynthlizard_glow" /datum/sprite_accessory/tail/taur/spider name = "Spider (Taur)" @@ -311,16 +386,25 @@ icon_state = "feline_s" suit_sprites = 'icons/mob/taursuits_feline_vr.dmi' icon_sprite_tag = "feline" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 5 /datum/sprite_accessory/tail/taur/fatfeline name = "Fat Feline (Taur)" icon_state = "fatfeline_s" //icon_sprite_tag = "fatfeline" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 /datum/sprite_accessory/tail/taur/fatfeline_wag - name = "Fat Feline (Taur) (vwag)" + name = "Fat Feline (Taur, Fat vwag)" icon_state = "fatfeline_s" ani_state = "fatfeline_w" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 /datum/sprite_accessory/tail/taur/feline/feline_2c name = "Feline 3-color (Taur)" @@ -328,13 +412,27 @@ extra_overlay = "feline_markings" extra_overlay2 = "feline_markings_2" //icon_sprite_tag = "feline2c" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' /datum/sprite_accessory/tail/taur/feline/fatfeline_2c name = "Fat Feline 3-color (Taur)" icon_state = "fatfeline_s" extra_overlay = "fatfeline_markings" - extra_overlay2 = "feline_markings_2" + extra_overlay2 = "fatfeline_markings_2" //icon_sprite_tag = "fatfeline2c" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/feline/feline_2c_wag + name = "Feline 3-color (Taur, Fat vwag)" + icon_state = "feline_s" + extra_overlay = "feline_markings" + extra_overlay2 = "feline_markings_2" + ani_state = "fatfeline_s" + extra_overlay_w = "fatfeline_markings" + extra_overlay2_w = "feline_markings_2" /datum/sprite_accessory/tail/taur/feline/synthfeline name = "SynthFeline dual-color (Taur)" @@ -342,12 +440,27 @@ extra_overlay = "synthfeline_markings" extra_overlay2 = "synthfeline_glow" //icon_sprite_tag = "synthfeline" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 /datum/sprite_accessory/tail/taur/feline/fatsynthfeline name = "Fat SynthFeline dual-color (Taur)" icon_state = "fatsynthfeline_s" extra_overlay = "fatsynthfeline_markings" extra_overlay2 = "fatsynthfeline_glow" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 3 + +/datum/sprite_accessory/tail/taur/feline/synthfeline_wag + name = "SynthFeline dual-color (Taur, Fat vwag)" + icon_state = "synthfeline_s" + extra_overlay = "synthfeline_markings" + extra_overlay2 = "synthfeline_glow" + ani_state = "fatsynthfeline_s" + extra_overlay_w = "fatsynthfeline_markings" + extra_overlay2_w = "fatsynthfeline_glow" /datum/sprite_accessory/tail/taur/slug name = "Slug (Taur)" @@ -421,14 +534,25 @@ /// suit_sprites = 'icons/mob/taursuits_drake_vr.dmi' ///Chomp edit suit_sprites = 'icons/mob/taursuits_drake_ch.dmi' icon_sprite_tag = "drake" - can_loaf = TRUE // VOREStation Edit: Taur Loafing - loaf_offset = 6 // VOREStation Edit: Taur Loafing + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 6 -/datum/sprite_accessory/tail/taur/ch/fatdrake - name = "Drake (Fat Taur dual-color)" +/datum/sprite_accessory/tail/taur/drake/fat + name = "Fat Drake (Taur)" icon_state = "fatdrake_s" extra_overlay = "fatdrake_markings" - icon_sprite_tag = "drake" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 6 + +/datum/sprite_accessory/tail/taur/drake/drake_vwag + name = "Drake (Taur, Fat vwag)" + icon_state = "drake_s" + extra_overlay = "drake_markings" + ani_state = "fatdrake_s" + extra_overlay_w = "fatdrake_markings" + can_loaf = FALSE /datum/sprite_accessory/tail/taur/otie name = "Otie (Taur)" @@ -437,6 +561,9 @@ extra_overlay2 = "otie_markings_2" suit_sprites = 'icons/mob/taursuits_otie_vr.dmi' icon_sprite_tag = "otie" + can_loaf = TRUE + icon_loaf = 'icons/mob/vore/taurs_vr_loaf.dmi' + loaf_offset = 5 /datum/sprite_accessory/tail/taur/alraune/alraune_2c name = "Alraune (dual color)" @@ -543,12 +670,14 @@ name = "Feline (wickedtemp) (Taur)" icon_state = "tempest_s" ckeys_allowed = list("wickedtemp") + can_loaf = FALSE //silencedmp5a5: Serdykov Antoz /datum/sprite_accessory/tail/taur/wolf/serdy name = "CyberSerdy (silencedmp5a5) (Taur)" icon_state = "serdy_s" ckeys_allowed = list("silencedmp5a5") + can_loaf = FALSE //liquidfirefly: Ariana Scol /datum/sprite_accessory/tail/taur/centipede @@ -605,7 +734,7 @@ 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/rat - name = "Rat (dual color)" + name = "Rat (Taur)" icon_state = "rat_s" extra_overlay = "rat_markings" clip_mask_state = "taur_clip_mask_rat" @@ -618,4 +747,37 @@ extra_overlay2 = "noodle_markings_2" suit_sprites = 'icons/mob/taursuits_noodle_vr.dmi' clip_mask_state = "taur_clip_mask_noodle" - icon_sprite_tag = "noodle" \ No newline at end of file + icon_sprite_tag = "noodle" + +/datum/sprite_accessory/tail/taur/sect_drone + name = "Sect Drone (Taur)" + icon_state = "sect_drone" + extra_overlay = "sect_drone_markings" + icon_sprite_tag = "sect_drone" + + 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!" + +/datum/sprite_accessory/tail/taur/sect_drone/fat + name = "Fat Sect Drone (Taur)" + icon_state = "fat_sect_drone" + extra_overlay = "fat_sect_drone_markings" + +/datum/sprite_accessory/tail/taur/sect_drone/drone_wag + name = "Sect Drone (Taur, Fat vwag)" + icon_state = "sect_drone" + extra_overlay = "sect_drone_markings" + ani_state = "fat_sect_drone" + extra_overlay_w = "fat_sect_drone_markings" diff --git a/code/modules/mob/new_player/sprite_accessories_wing.dm b/code/modules/mob/new_player/sprite_accessories_wing.dm index ded7a70937..3b13156b9d 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing.dm @@ -151,3 +151,10 @@ desc = "" icon_state = "cyberdoe_s" do_colouration = 0 + +/datum/sprite_accessory/wing/mantisarms + name = "Mantis arms" + desc = "" + icon_state = "mantisarms_s" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY diff --git a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm index fc04d43a42..37080444ea 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm @@ -129,6 +129,45 @@ extra_overlay = "harpywings_batmarkings" extra_overlay2 = "neckfur" +/datum/sprite_accessory/wing/harpyarmwings + name = "harpy arm wings, colorable" + desc = "" + icon_state = "harpyarmwings" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/wing/harpyarmwings_alt + name = "harpy arm wings alt, colorable" + desc = "" + icon_state = "harpyarmwings_alt" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/wing/harpyarmwings_alt_neckfur + name = "harpy arm wings alt & neckfur" + desc = "" + icon_state = "harpyarmwings_alt" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "neckfur" + +/datum/sprite_accessory/wing/harpyarmwings_bat + name = "harpy arm wings, bat" + desc = "" + icon_state = "harpyarmwings_bat" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "harpyarmwings_batmarkings" + +/datum/sprite_accessory/wing/harpyarmwings_bat_neckfur + name = "harpy arm wings, bat & neckfur" + desc = "" + icon_state = "harpyarmwings_bat" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "harpyarmwings_batmarkings" + extra_overlay2 = "neckfur" + /datum/sprite_accessory/wing/neckfur name = "neck fur" desc = "" diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index a43406eb48..c0a2a4b5e2 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -61,6 +61,8 @@ var/list/vis_objs = vis["objs"] for(var/mob/M as anything in vis_mobs) + if(isnewplayer(M)) + continue if(isobserver(M) && !(is_preference_enabled(/datum/client_preference/whisubtle_vis) || (isbelly(M.loc) && src == M.loc:owner)) && !M.client?.holder) //CHOMPEdit - Added the belly check so that ghosts in bellies can still see their pred's messages. spawn(0) M.show_message(undisplayed_message, 2) @@ -116,7 +118,7 @@ ///// PSAY ///// -/mob/verb/psay(message as text|null) +/mob/verb/psay(message as text) set category = "IC" set name = "Psay" set desc = "Talk to people affected by complete absorbed or dominate predator/prey." @@ -221,7 +223,7 @@ ///// PME ///// -/mob/verb/pme(message as text|null) +/mob/verb/pme(message as message) set category = "IC" set name = "Pme" set desc = "Emote to people affected by complete absorbed or dominate predator/prey." @@ -323,3 +325,51 @@ else //There wasn't anyone to send the message to, pred or prey, so let's just emote it instead and correct our psay just in case. M.forced_psay = FALSE M.me_verb(message) + +/mob/living/verb/player_narrate(message as message) + set category = "IC" + set name = "Narrate (Player)" + set desc = "Narrate an action or event! An alternative to emoting, for when your emote shouldn't start with your name!" + + if(src.client) + if(client.prefs.muted & MUTE_IC) + to_chat(src, "You cannot speak in IC (muted).") + return + if(!message) + message = tgui_input_text(usr, "Type a message to narrate.","Narrate") + message = sanitize_or_reflect(message,src) + if(!message) + return + if(stat == DEAD) + return say_dead(message) + if(stat) + to_chat(src, "You need to be concious to narrate: [message]") + return + message = "([name]) [message]" + + //Below here stolen from emotes + var/turf/T = get_turf(src) + + if(!T) return + + var/ourfreq = null + if(voice_freq > 0 ) + ourfreq = voice_freq + + if(client) + playsound(T, pick(emote_sound), 25, TRUE, falloff = 1 , is_global = TRUE, frequency = ourfreq, ignore_walls = FALSE, preference = /datum/client_preference/emote_sounds) + + var/list/in_range = get_mobs_and_objs_in_view_fast(T,world.view,2,remote_ghosts = client ? TRUE : FALSE) + var/list/m_viewers = in_range["mobs"] + + for(var/mob/M as anything in m_viewers) + spawn(0) // It's possible that it could be deleted in the meantime, or that it runtimes. + if(M) + if(isobserver(M)) + message = "[message] ([ghost_follow_link(src, M)])" + if(isnewplayer(M)) + continue + if(M.stat == UNCONSCIOUS || M.sleeping > 0) + continue + to_chat(M, message) + log_emote(message, src) diff --git a/code/modules/nifsoft/software/13_soulcatcher.dm b/code/modules/nifsoft/software/13_soulcatcher.dm index 04766a51e4..6f5ca2edc2 100644 --- a/code/modules/nifsoft/software/13_soulcatcher.dm +++ b/code/modules/nifsoft/software/13_soulcatcher.dm @@ -469,17 +469,17 @@ /////////////////// //Verbs for humans -/mob/proc/nsay(message as text|null) +/mob/proc/nsay(message as text) set name = "NSay" set desc = "Speak into your NIF's Soulcatcher." set category = "IC" src.nsay_act(message) -/mob/proc/nsay_act(message as text|null) +/mob/proc/nsay_act(message as text) to_chat(src, SPAN_WARNING("You must be a humanoid with a NIF implanted to use that.")) -/mob/living/carbon/human/nsay_act(message as text|null) +/mob/living/carbon/human/nsay_act(message as text) if(stat != CONSCIOUS) to_chat(src,SPAN_WARNING("You can't use NSay while unconscious.")) return @@ -499,17 +499,17 @@ var/sane_message = sanitize(message) SC.say_into(sane_message,src) -/mob/proc/nme(message as text|null) +/mob/proc/nme(message as message) set name = "NMe" set desc = "Emote into your NIF's Soulcatcher." set category = "IC" src.nme_act(message) -/mob/proc/nme_act(message as text|null) +/mob/proc/nme_act(message as message) to_chat(src, SPAN_WARNING("You must be a humanoid with a NIF implanted to use that.")) -/mob/living/carbon/human/nme_act(message as text|null) +/mob/living/carbon/human/nme_act(message as message) if(stat != CONSCIOUS) to_chat(src,SPAN_WARNING("You can't use NMe while unconscious.")) return @@ -574,7 +574,7 @@ QDEL_NULL(eyeobj) soulcatcher.notify_into("[src] ended AR projection.") -/mob/living/carbon/brain/caught_soul/verb/nsay_brain(message as text|null) +/mob/living/carbon/brain/caught_soul/verb/nsay_brain(message as text) set name = "NSay" set desc = "Speak into the NIF's Soulcatcher (circumventing AR speaking)." set category = "Soulcatcher" @@ -585,7 +585,7 @@ var/sane_message = sanitize(message) soulcatcher.say_into(sane_message,src,null) -/mob/living/carbon/brain/caught_soul/verb/nme_brain(message as text|null) +/mob/living/carbon/brain/caught_soul/verb/nme_brain(message as message) set name = "NMe" set desc = "Emote into the NIF's Soulcatcher (circumventing AR speaking)." set category = "Soulcatcher" diff --git a/code/modules/overmap/ships/computers/helm.dm b/code/modules/overmap/ships/computers/helm.dm index 37c625dc89..f8687c8c23 100644 --- a/code/modules/overmap/ships/computers/helm.dm +++ b/code/modules/overmap/ships/computers/helm.dm @@ -29,7 +29,7 @@ GLOBAL_LIST_EMPTY(all_waypoints) var/speedlimit = 1/(20 SECONDS) //top speed for autopilot, 5 var/accellimit = 0.001 //manual limiter for acceleration req_one_access = list(access_pilot) //VOREStation Edit - ai_control = FALSE //VOREStation Edit - AI/Borgs shouldn't really be flying off in ships without crew help + ai_control = TRUE //VOREStation Edit - AI/Borgs shouldn't really be flying off in ships without crew help // Chompstation Edit - Not an issue on this server, use of shuttles is extremely rare also . // fancy sprite /obj/machinery/computer/ship/helm/adv diff --git a/code/modules/reagents/reagent_containers/syringes_vr.dm b/code/modules/reagents/reagent_containers/syringes_vr.dm index 83c5bacaef..89d81d1f18 100644 --- a/code/modules/reagents/reagent_containers/syringes_vr.dm +++ b/code/modules/reagents/reagent_containers/syringes_vr.dm @@ -85,7 +85,7 @@ //Allow for capped syringes /obj/item/weapon/reagent_containers/syringe/update_icon() - cut_overlays(src) + cut_overlays() var/matrix/tf = matrix() if(isstorage(loc)) @@ -101,12 +101,11 @@ icon_state = "capped" return - var/list/new_overlays = list() var/rounded_vol = round(reagents.total_volume, round(reagents.maximum_volume / 3)) if(reagents.total_volume) filling = image(icon, src, "filler[rounded_vol]") filling.color = reagents.get_color() - new_overlays += filling + add_overlay(filling) if(ismob(loc)) var/injoverlay @@ -115,9 +114,8 @@ injoverlay = "draw" if (SYRINGE_INJECT) injoverlay = "inject" - new_overlays += injoverlay + add_overlay(injoverlay) - add_overlay(new_overlays) icon_state = "[rounded_vol]" item_state = "syringe_[rounded_vol]" diff --git a/code/modules/reagents/reagents/dispenser.dm b/code/modules/reagents/reagents/dispenser.dm index 8e7a5d1862..90d8ea9e2a 100644 --- a/code/modules/reagents/reagents/dispenser.dm +++ b/code/modules/reagents/reagents/dispenser.dm @@ -112,18 +112,15 @@ L.adjust_fire_stacks(amount / 15) /datum/reagent/ethanol/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) //This used to do just toxin. That's boring. Let's make this FUN. - if(issmall(M)) removed *= 2 - var/strength_mod = 3 * M.species.alcohol_mod //Alcohol is 3x stronger when injected into the veins. - if(alien == IS_SKRELL) - strength_mod *= 5 - if(alien == IS_TAJARA) - strength_mod *= 1.25 - if(alien == IS_UNATHI) - strength_mod *= 0.75 - if(alien == IS_DIONA) - strength_mod = 0 + if(issmall(M)) + removed *= 2 + if(alien == IS_SLIME) - strength_mod *= 2 // VOREStation Edit - M.adjustToxLoss(removed) + M.adjustToxLoss(removed) //Sterilizing, if only by a little bit. Also already doubled above. + + var/strength_mod = 3 * M.species.chem_strength_alcohol //Alcohol is 3x stronger when injected into the veins. + if(!strength_mod) + return M.add_chemical_effect(CE_ALCOHOL, 1) var/effective_dose = dose * strength_mod * (1 + volume/60) //drinking a LOT will make you go down faster @@ -156,36 +153,32 @@ M.hallucination = max(M.hallucination, halluci*3) /datum/reagent/ethanol/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(issmall(M)) removed *= 2 + + if(issmall(M)) + removed *= 2 + if(!(M.species.allergens & allergen_type)) //assuming it doesn't cause a horrible reaction, we get the nutrition effects M.adjust_nutrition(nutriment_factor * removed) - var/strength_mod = 1 * M.species.alcohol_mod - if(alien == IS_SKRELL) - strength_mod *= 5 - if(alien == IS_TAJARA) - strength_mod *= 1.25 - if(alien == IS_UNATHI) - strength_mod *= 0.75 - if(alien == IS_DIONA) - strength_mod = 0 - if(alien == IS_SLIME) - strength_mod *= 2 // VOREStation Edit - M.adjustToxLoss(removed * 2) + + var/effective_dose = dose * M.species.chem_strength_alcohol + if(!effective_dose) + return M.add_chemical_effect(CE_ALCOHOL, 1) - if(dose * strength_mod >= strength) // Early warning + if(effective_dose >= strength) // Early warning M.make_dizzy(6) // It is decreased at the speed of 3 per tick - if(dose * strength_mod >= strength * 2) // Slurring + if(effective_dose >= strength * 2) // Slurring M.slurring = max(M.slurring, 30) - if(dose * strength_mod >= strength * 3) // Confusion - walking in random directions + if(effective_dose >= strength * 3) // Confusion - walking in random directions M.Confuse(20) - if(dose * strength_mod >= strength * 4) // Blurry vision + if(effective_dose >= strength * 4) // Blurry vision M.eye_blurry = max(M.eye_blurry, 10) - if(dose * strength_mod >= strength * 5) // Drowsyness - periodically falling asleep + if(effective_dose >= strength * 5) // Drowsyness - periodically falling asleep M.drowsyness = max(M.drowsyness, 20) - if(dose * strength_mod >= strength * 6) // Toxic dose + if(effective_dose >= strength * 6) // Toxic dose M.add_chemical_effect(CE_ALCOHOL_TOXIC, toxicity) - if(dose * strength_mod >= strength * 7) // Pass out + if(effective_dose >= strength * 7) // Pass out M.Paralyse(20) M.Sleeping(30) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 662295e578..a5e95899f5 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -1539,6 +1539,12 @@ if(trunk) trunk.linked = src // link the pipe trunk to self +/obj/structure/disposaloutlet/Destroy() + var/obj/structure/disposalpipe/trunk/trunk = locate() in loc + if(trunk && trunk.linked == src) + trunk.linked = null + return ..() + // expel the contents of the holder object, then delete it // called when the holder exits the outlet /obj/structure/disposaloutlet/proc/expel(var/obj/structure/disposalholder/H) diff --git a/code/modules/research/mechfab_designs.dm b/code/modules/research/mechfab_designs.dm index 9901606b8b..ab4b3abba8 100644 --- a/code/modules/research/mechfab_designs.dm +++ b/code/modules/research/mechfab_designs.dm @@ -813,13 +813,21 @@ build_path = /obj/item/weapon/vehicle_assembly/spacebike /datum/design/item/mechfab/vehicle/quadbike_chassis - name = "Quadbike Chassis" - desc = "A space-bike's un-assembled frame." + name = "Quad bike Chassis" + desc = "A quad bike's un-assembled frame." id = "vehicle_chassis_quadbike" req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 6, TECH_MAGNET = 3, TECH_POWER = 2) materials = list(MAT_STEEL = 15000, MAT_SILVER = 3000, MAT_PLASTIC = 3000, MAT_OSMIUM = 1000) build_path = /obj/item/weapon/vehicle_assembly/quadbike +/datum/design/item/mechfab/vehicle/snowmobile_chassis + name = "Snowmobile Chassis" + desc = "A snowmobile's un-assembled frame." + id = "vehicle_chassis_snowmobile" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 6, TECH_MAGNET = 3, TECH_POWER = 2) + materials = list(MAT_STEEL = 12000, MAT_SILVER = 3000, MAT_PLASTIC = 3000, MAT_OSMIUM = 1000) + build_path = /obj/item/weapon/vehicle_assembly/snowmobile + /* * Rigsuits */ diff --git a/code/modules/shuttles/shuttle_console.dm b/code/modules/shuttles/shuttle_console.dm index 562de3be08..28251d54d4 100644 --- a/code/modules/shuttles/shuttle_console.dm +++ b/code/modules/shuttles/shuttle_console.dm @@ -10,7 +10,7 @@ var/skip_act = FALSE var/tgui_subtemplate = "ShuttleControlConsoleDefault" - var/ai_control = FALSE //VOREStation Edit - AI/Borgs shouldn't really be flying off in ships without crew help + var/ai_control = TRUE //VOREStation Edit - AI/Borgs shouldn't really be flying off in ships without crew help //ChompStation Edit: Flying is better prevented by restricting the helm console if wanted. This is only an unnecessary nuisance that also breaks various other uses for the shuttle console. /obj/machinery/computer/shuttle_control/attack_hand(user as mob) if(..(user)) diff --git a/code/modules/surgery/encased.dm b/code/modules/surgery/encased.dm index f41e33500e..c172b9bc44 100644 --- a/code/modules/surgery/encased.dm +++ b/code/modules/surgery/encased.dm @@ -68,11 +68,11 @@ affected.fracture() /////////////////////////////////////////////////////////////// -// Rib Opening Surgery +// Bone Opening Surgery /////////////////////////////////////////////////////////////// /datum/surgery_step/open_encased/retract - surgery_name = "Retract Ribs Open" + surgery_name = "Retract Bone" allowed_tools = list( /obj/item/weapon/surgical/retractor = 100 ) @@ -122,11 +122,11 @@ affected.fracture() /////////////////////////////////////////////////////////////// -// Rib Closing Surgery +// Retracted Bone Closing Surgery /////////////////////////////////////////////////////////////// /datum/surgery_step/open_encased/close - surgery_name = "Retract Ribs Closed" + surgery_name = "Close Retracted Bone" allowed_tools = list( /obj/item/weapon/surgical/retractor = 100, ) @@ -181,11 +181,11 @@ target.rupture_lung()*/ /////////////////////////////////////////////////////////////// -// Rib Mending Surgery +// Retracted Bone Mending Surgery /////////////////////////////////////////////////////////////// /datum/surgery_step/open_encased/mend - surgery_name = "Mend Ribs" + surgery_name = "Mend Retracted Bone" allowed_tools = list( /obj/item/weapon/surgical/bonegel = 100 ) @@ -227,7 +227,7 @@ // Saw/Retractor/Gel Combi-open and close. /////////////////////////////////////////////////////////////// /datum/surgery_step/open_encased/advancedsaw_open - surgery_name = "Advanced Cut Ribs" + surgery_name = "Advanced Cut Bone" allowed_tools = list( /obj/item/weapon/surgical/circular_saw/manager = 100 ) @@ -278,7 +278,7 @@ /datum/surgery_step/open_encased/advancedsaw_mend - surgery_name = "Advanced Mend Ribs" + surgery_name = "Advanced Mend Retracted Bone" allowed_tools = list( /obj/item/weapon/surgical/circular_saw/manager = 100 ) diff --git a/code/modules/surgery/external_repair.dm b/code/modules/surgery/external_repair.dm index 820ae4e559..3698f2d1c4 100644 --- a/code/modules/surgery/external_repair.dm +++ b/code/modules/surgery/external_repair.dm @@ -106,8 +106,6 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) if(affected.burn_stage < 1 || !(affected.burn_dam)) return 0 - if(affected.burn_dam < affected.brute_dam) - return 0 return 1 return 0 @@ -173,8 +171,6 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) if(affected.brute_stage < 1 || !(affected.brute_dam)) return 0 - if(affected.brute_dam < affected.burn_dam) - return 0 return 1 return 0 diff --git a/code/modules/tgs/v5/chat_commands.dm b/code/modules/tgs/v5/chat_commands.dm index e43dfc1c31..3deb15f52c 100644 --- a/code/modules/tgs/v5/chat_commands.dm +++ b/code/modules/tgs/v5/chat_commands.dm @@ -8,6 +8,9 @@ var/afks = 0 var/active = 0 var/bellied = 0 +// var/map_name = "n/a" //CHOMP Remove we don't use this and it is causing problems with the dmb compiler. +// if(using_map && using_map.full_name) +// map_name = using_map.full_name for(var/X in GLOB.clients) var/client/C = X diff --git a/code/modules/turbolift/turbolift_map.dm b/code/modules/turbolift/turbolift_map.dm index a7262b36c4..ed32952320 100644 --- a/code/modules/turbolift/turbolift_map.dm +++ b/code/modules/turbolift/turbolift_map.dm @@ -71,9 +71,9 @@ door_y2 = ey + 1 light_x1 = ux + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_y1 = uy + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_x2 = ux + lift_size_x - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_y2 = uy + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + light_y1 = uy + (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy + light_x2 = ex - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator //CHOMPFixy + light_y2 = uy + (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy if(SOUTH) @@ -89,14 +89,14 @@ light_x1 = ux + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator light_y1 = uy + (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator - light_x2 = ux + lift_size_x - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_y2 = uy + lift_size_y - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + light_x2 = ex - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator //CHOMPFixy + light_y2 = uy + (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy if(EAST) - int_panel_x = ux+(make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + int_panel_x = ux + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator int_panel_y = uy + FLOOR(lift_size_y/2, 1) - ext_panel_x = ex+2 + ext_panel_x = ex + 2 ext_panel_y = ey door_x1 = ex + (make_walls ? 0 : 1) //VOREStation edit: Wall-less elevator @@ -104,16 +104,16 @@ door_x2 = ex + 1 door_y2 = ey - 1 - light_x1 = ux + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + light_x1 = ux + (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy light_y1 = uy + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_x2 = ux + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_y2 = uy + lift_size_x - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + light_x2 = ux + (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy + light_y2 = ey - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator //CHOMPFixy if(WEST) - int_panel_x = ex-(make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + int_panel_x = ex - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator int_panel_y = uy + FLOOR(lift_size_y/2, 1) - ext_panel_x = ux-2 + ext_panel_x = ux - 2 ext_panel_y = uy door_x1 = ux - 1 @@ -121,10 +121,10 @@ door_x2 = ux - (make_walls ? 0 : 1) //VOREStation edit: Wall-less elevator door_y2 = ey - 1 - light_x1 = ux + lift_size_x - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + light_x1 = ex - (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy light_y1 = uy + (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_x2 = ux + lift_size_x - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator - light_y2 = uy + lift_size_y - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator + light_x2 = ex - (make_walls ? 2 : 1) //VOREStation edit: Wall-less elevator //CHOMPFixy + light_y2 = ey - (make_walls ? 1 : 0) //VOREStation edit: Wall-less elevator //CHOMPFixy // Generate each floor and store it in the controller datum. for(var/cz = uz;cz<=ez;cz++) diff --git a/code/modules/vchat/css/ss13styles.css b/code/modules/vchat/css/ss13styles.css index 9e792729be..19f63dc78e 100644 --- a/code/modules/vchat/css/ss13styles.css +++ b/code/modules/vchat/css/ss13styles.css @@ -200,6 +200,8 @@ h1.alert, h2.alert {color: #000000;} .inverted .blue {color: #6666FF;} .inverted .green {color: #44FF44;} +.pnarrate {color: #009AB2;} + /*BIG IMG.icon {width: 32px; height: 32px;}*/ img.icon {vertical-align: middle; max-height: 1em;} img.icon.bigicon {max-height: 32px;} diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index 5363814485..3859d13212 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -48,6 +48,7 @@ key = new key_type(src) var/image/I = new(icon = 'icons/obj/vehicles_vr.dmi', icon_state = "cargo_engine_overlay", layer = src.layer + 0.2) //over mobs //VOREStation edit add_overlay(I) + update_icon() turn_off() //so engine verbs are correctly set /obj/vehicle/train/engine/Move(var/turf/destination) diff --git a/code/modules/vehicles/construction.dm b/code/modules/vehicles/construction.dm index bb0ca7cb0b..20adccd5f0 100644 --- a/code/modules/vehicles/construction.dm +++ b/code/modules/vehicles/construction.dm @@ -12,7 +12,6 @@ density = TRUE slowdown = 10 //It's a vehicle frame, what do you expect? w_class = 5 - pixel_x = -16 var/build_stage = 0 var/obj/item/weapon/cell/cell = null @@ -38,6 +37,7 @@ name = "all terrain vehicle assembly" desc = "The frame of an ATV." icon_state = "quad-frame" + pixel_x = -16 /obj/item/weapon/vehicle_assembly/quadbike/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) ..() @@ -143,11 +143,13 @@ user.drop_from_inventory(src) qdel(src) return + ..() /obj/item/weapon/vehicle_assembly/quadtrailer name = "all terrain trailer" desc = "The frame of a small trailer." icon_state = "quadtrailer-frame" + pixel_x = -16 /obj/item/weapon/vehicle_assembly/quadtrailer/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) ..() @@ -272,3 +274,104 @@ user.drop_from_inventory(src) qdel(src) return + +/* + * Snowmobile. + */ + +/obj/item/weapon/vehicle_assembly/snowmobile + name = "snowmobile assembly" + desc = "The frame of a snowmobile." + icon = 'icons/obj/vehicles.dmi' + icon_state = "snowmobile-frame" + +/obj/item/weapon/vehicle_assembly/snowmobile/attackby(var/obj/item/W as obj, var/mob/user as mob) + switch(build_stage) + if(0) + if(istype(W, /obj/item/stack/material/steel)) + var/obj/item/stack/material/steel/S = W + if (S.get_amount() < 6) + to_chat(user, "You need six sheets of steel to add treads to \the [src].") + return + to_chat(user, "You start to add treads to [src].") + if(do_after(user, 40) && build_stage == 0) + if(S.use(6)) + to_chat(user, "You add treads to \the [src].") + increase_step("tracked [initial(name)]") + return + + if(1) + if(istype(W, /obj/item/weapon/stock_parts/console_screen)) + user.drop_item() + qdel(W) + to_chat(user, "You add the lights to \the [src].") + increase_step() + return + + if(2) + if(istype(W, /obj/item/weapon/stock_parts/spring)) + user.drop_item() + qdel(W) + to_chat(user, "You add the control system to \the [src].") + increase_step() + return + + if(3) + if(istype(W, /obj/item/stack/cable_coil)) + var/obj/item/stack/cable_coil/C = W + if (C.get_amount() < 2) + to_chat(user, "You need two coils of wire to wire [src].") + return + to_chat(user, "You start to wire [src].") + if(do_after(user, 40) && build_stage == 3) + if(C.use(2)) + to_chat(user, "You wire \the [src].") + increase_step("wired [initial(name)]") + return + + if(4) + if(istype(W, /obj/item/weapon/cell)) + user.drop_item() + W.forceMove(src) + cell = W + to_chat(user, "You add the power supply to \the [src].") + increase_step("powered [initial(name)]") + return + + if(5) + if(istype(W, /obj/item/weapon/stock_parts/motor)) + user.drop_item() + qdel(W) + to_chat(user, "You add the motor to \the [src].") + increase_step() + return + + if(6) + if(istype(W, /obj/item/stack/material/plasteel)) + var/obj/item/stack/material/plasteel/PL = W + if (PL.get_amount() < 2) + to_chat(user, "You need two sheets of plasteel to add reinforcement to \the [src].") + return + to_chat(user, "You start to add reinforcement to [src].") + if(do_after(user, 40) && build_stage == 6) + if(PL.use(2)) + to_chat(user, "You add reinforcement to \the [src].") + increase_step("reinforced [initial(name)]") + return + + if(7) + if(W.is_wrench() || W.is_screwdriver()) + playsound(src, W.usesound, 50, 1) + to_chat(user, "You begin your finishing touches on \the [src].") + if(do_after(user, 20) && build_stage == 7) + playsound(src, W.usesound, 30, 1) + var/obj/vehicle/train/engine/quadbike/snowmobile/built/product = new(src) + to_chat(user, "You finish \the [product]") + product.loc = get_turf(src) + product.cell = cell + cell.forceMove(product) + cell = null + user.drop_from_inventory(src) + qdel(src) + return + ..() diff --git a/code/modules/vehicles/quad.dm b/code/modules/vehicles/quad.dm index c66b2987b0..00bedf8778 100644 --- a/code/modules/vehicles/quad.dm +++ b/code/modules/vehicles/quad.dm @@ -19,7 +19,9 @@ key_type = /obj/item/weapon/key/quadbike var/frame_state = "quad" //Custom-item proofing! + var/paint_base = 'icons/obj/vehicles_64x64.dmi' var/custom_frame = FALSE + var/datum/looping_sound/vehicle_engine/soundloop paint_color = "#ffffff" @@ -28,7 +30,10 @@ /obj/vehicle/train/engine/quadbike/New() cell = new /obj/item/weapon/cell/high(src) key = new key_type(src) + soundloop = new(list(src), FALSE) + . = ..() turn_off() + update_icon() /obj/vehicle/train/engine/quadbike/built/New() key = new key_type(src) @@ -38,6 +43,10 @@ paint_color = rgb(rand(1,255),rand(1,255),rand(1,255)) ..() +/obj/vehicle/train/engine/quadbike/Destroy() + QDEL_NULL(soundloop) + return ..() + /obj/item/weapon/key/quadbike name = "key" desc = "A keyring with a small steel key, and a blue fob reading \"ZOOM!\"." @@ -47,20 +56,28 @@ /obj/vehicle/train/engine/quadbike/Moved(atom/old_loc, direction, forced = FALSE) . = ..() //Move it move it, so we can test it test it. - if(!istype(loc, old_loc.type) && !istype(old_loc, loc.type)) //Did we move at all, and are we changing turf types? - if(istype(loc, /turf/simulated/floor/water)) - speed_mod = outdoors_speed_mod * 4 //It kind of floats due to its tires, but it is slow. - else if(istype(loc, /turf/simulated/floor/outdoors/rocks)) - speed_mod = initial(speed_mod) //Rocks are good, rocks are solid. - else if(istype(loc, /turf/simulated/floor/outdoors/dirt) || istype(loc, /turf/simulated/floor/outdoors/grass)) - speed_mod = outdoors_speed_mod //Dirt and grass are the outdoors bench mark. - else if(istype(loc, /turf/simulated/floor/outdoors/mud)) - speed_mod = outdoors_speed_mod * 1.5 //Gets us roughly 1. Mud may be fun, but it's not the best. - else if(istype(loc, /turf/simulated/floor/outdoors/snow)) - speed_mod = outdoors_speed_mod * 1.7 //Roughly a 1.25. Snow is coarse and wet and gets everywhere, especially your electric motors. - else - speed_mod = initial(speed_mod) - update_car(train_length, active_engines) + get_turf_speeds(old_loc) + handle_vehicle_icon() + +/obj/vehicle/train/engine/quadbike/proc/get_turf_speeds(atom/prev_loc) + // Same speed if turf type doesn't change + if(istype(loc, prev_loc.type) || istype(prev_loc, loc.type)) + return + if(istype(loc, /turf/simulated/floor/water)) + speed_mod = outdoors_speed_mod * 4 //It kind of floats due to its tires, but it is slow. + else if(istype(loc, /turf/simulated/floor/outdoors/rocks)) + speed_mod = initial(speed_mod) //Rocks are good, rocks are solid. + else if(istype(loc, /turf/simulated/floor/outdoors/dirt) || istype(loc, /turf/simulated/floor/outdoors/grass) || istype(loc, /turf/simulated/floor/outdoors/newdirt) || istype(loc, /turf/simulated/floor/outdoors/newdirt_nograss)) + speed_mod = outdoors_speed_mod //Dirt and grass are the outdoors bench mark. + else if(istype(loc, /turf/simulated/floor/outdoors/mud)) + speed_mod = outdoors_speed_mod * 1.5 //Gets us roughly 1. Mud may be fun, but it's not the best. + else if(istype(loc, /turf/simulated/floor/outdoors/snow)) + speed_mod = outdoors_speed_mod * 1.7 //Roughly a 1.25. Snow is coarse and wet and gets everywhere, especially your electric motors. + else + speed_mod = initial(speed_mod) + update_car(train_length, active_engines) + +/obj/vehicle/train/engine/quadbike/proc/handle_vehicle_icon() switch(dir) //Due to being a Big Boy sprite, it has to have special pixel shifting to look 'normal' when being driven. if(1) pixel_y = -6 @@ -71,7 +88,6 @@ if(8) pixel_y = 0 - /obj/vehicle/train/engine/quadbike/attackby(obj/item/weapon/W as obj, mob/user as mob) if(istype(W, /obj/item/device/multitool) && open) var/new_paint = input(usr, "Please select paint color.", "Paint Color", paint_color) as color|null @@ -99,12 +115,12 @@ add_overlay(Overmob_color) return - var/image/Bodypaint = new(icon = 'icons/obj/vehicles_64x64.dmi', icon_state = "[frame_state]_a", layer = src.layer) + var/image/Bodypaint = new(icon = paint_base, icon_state = "[frame_state]_a", layer = src.layer) Bodypaint.color = paint_color add_overlay(Bodypaint) - var/image/Overmob = new(icon = 'icons/obj/vehicles_64x64.dmi', icon_state = "[frame_state]_overlay", layer = src.layer + 0.2) //over mobs - var/image/Overmob_color = new(icon = 'icons/obj/vehicles_64x64.dmi', icon_state = "[frame_state]_overlay_a", layer = src.layer + 0.2) //over the over mobs, gives the color. + var/image/Overmob = new(icon = paint_base, icon_state = "[frame_state]_overlay", layer = src.layer + 0.2) //over mobs + var/image/Overmob_color = new(icon = paint_base, icon_state = "[frame_state]_overlay_a", layer = src.layer + 0.2) //over the over mobs, gives the color. Overmob.plane = MOB_PLANE Overmob_color.plane = MOB_PLANE Overmob_color.color = paint_color @@ -152,6 +168,18 @@ var/turf/T = get_step(M, pick(throw_dirs)) M.throw_at(T, 1, 1, src) +/obj/vehicle/train/engine/quadbike/turn_on() + ..() + if(on) + src.visible_message("\The [src] rumbles to life.", "You hear something rumble deeply.") + soundloop.start() + +/obj/vehicle/train/engine/quadbike/turn_off() + if(on) + src.visible_message("\The [src] putters before turning off.", "You hear something putter slowly.") + soundloop.stop() + ..() + /* * Trailer bits and bobs. */ diff --git a/code/modules/vehicles/snowmobile.dm b/code/modules/vehicles/snowmobile.dm new file mode 100644 index 0000000000..dd45207fea --- /dev/null +++ b/code/modules/vehicles/snowmobile.dm @@ -0,0 +1,82 @@ +/obj/vehicle/train/engine/quadbike/snowmobile + name = "snowmobile" + desc = "An electric snowmobile for traversing snow and ice with ease! Other terrain, not so much." + description_info = "Use ctrl-click to quickly toggle the engine if you're adjacent. Alt-click to quickly remove keys. Click-drag yourself or another person to mount as a passenger (passengers can't drive!)." + icon = 'icons/obj/vehicles.dmi' + icon_state = "snowmobile" + + load_item_visible = 1 + speed_mod = 0.6 //Speed on non-specially-defined tiles + car_limit = 0 //No trailers. + max_buckled_mobs = 2 + active_engines = 1 + key_type = /obj/item/key/snowmobile + outdoors_speed_mod = 0.7 //The general 'outdoors' speed. I.E., the general difference you'll be at when driving outside on ideal terrain (...Snow) + frame_state = "snowmobile" //Custom-item proofing! + paint_base = 'icons/obj/vehicles.dmi' + pixel_x = 0 + latch_on_start = 0 + + var/riding_datum_type = /datum/riding/snowmobile + +/obj/item/key/snowmobile + name = "key" + desc = "A keyring with a small steel key, and an ice-blue fob reading \"CHILL\"." + icon = 'icons/obj/vehicles.dmi' + icon_state = "sno_keys" + w_class = ITEMSIZE_TINY + +/obj/vehicle/train/engine/quadbike/snowmobile/random/Initialize() + paint_color = rgb(rand(1,255),rand(1,255),rand(1,255)) + . = ..() + +/obj/vehicle/train/engine/quadbike/snowmobile/Initialize() + . = ..() + riding_datum = new riding_datum_type(src) + +/obj/vehicle/train/engine/quadbike/snowmobile/built/Initialize() + dir = 2 //To match the under construction frame + . = ..() + +/obj/vehicle/train/engine/quadbike/snowmobile/get_turf_speeds(atom/prev_loc) + // Same speed if turf type doesn't change + if(istype(loc, prev_loc.type) || istype(prev_loc, loc.type)) + return + if(istype(loc, /turf/simulated/floor/water)) + speed_mod = outdoors_speed_mod * 6 //Well that was a stupid idea wasn't it? + else if(istype(loc, /turf/simulated/floor/outdoors/rocks)) + speed_mod = initial(speed_mod) * 1.5 //Rocks are hard, hard and skids don't mix so you're relying on the treads. Basically foot speed. + else if(istype(loc, /turf/simulated/floor/outdoors/dirt) || istype(loc, /turf/simulated/floor/outdoors/grass) || istype(loc, /turf/simulated/floor/outdoors/newdirt) || istype(loc, /turf/simulated/floor/outdoors/newdirt_nograss)) + speed_mod = outdoors_speed_mod //Dirt and grass aren't strictly what this is designed for but its a baseline. + else if(istype(loc, /turf/simulated/floor/outdoors/mud)) + speed_mod = outdoors_speed_mod * 1.4 //Workable, not great though. + else if(istype(loc, /turf/simulated/floor/outdoors/snow) || istype(loc, /turf/simulated/floor/outdoors/ice)) + speed_mod = outdoors_speed_mod * 0.8 //Now we're talking! + else + speed_mod = initial(speed_mod) + update_car(train_length, active_engines) + +/obj/vehicle/train/engine/quadbike/snowmobile/handle_vehicle_icon() + return + +//Required for the riding datum to behave: +/obj/vehicle/train/engine/quadbike/snowmobile/MouseDrop_T(var/atom/movable/C, var/mob/user as mob) + if(ismob(C)) + if(C in buckled_mobs) + user_unbuckle_mob(C, user) + else + user_buckle_mob(C, user) + else + ..(C, user) + +/obj/vehicle/train/engine/quadbike/snowmobile/attack_hand(var/mob/user as mob) + if(user == load) + unload(load, user) + to_chat(user, "You unbuckle yourself from \the [src].") + return + if(user in buckled_mobs) + unbuckle_mob(user) + return + else if(!load && load(user, user)) + to_chat(user, "You buckle yourself to \the [src].") + return diff --git a/code/modules/vehicles/train.dm b/code/modules/vehicles/train.dm index 67fc0735a3..a92b9828f6 100644 --- a/code/modules/vehicles/train.dm +++ b/code/modules/vehicles/train.dm @@ -13,6 +13,7 @@ var/active_engines = 0 var/train_length = 0 + var/latch_on_start = 1 var/obj/vehicle/train/lead var/obj/vehicle/train/tow @@ -25,7 +26,8 @@ /obj/vehicle/train/Initialize() . = ..() for(var/obj/vehicle/train/T in orange(1, src)) - latch(T, null) + if(latch_on_start) + latch(T, null) /obj/vehicle/train/Move() var/old_loc = get_turf(src) @@ -156,7 +158,7 @@ return if (T.tow) - if(user) + if(user) to_chat(user, "[T] is already towing something.") return diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm index b9eada1d12..2989dcad63 100644 --- a/code/modules/vehicles/vehicle.dm +++ b/code/modules/vehicles/vehicle.dm @@ -197,12 +197,17 @@ return FALSE if(powered && cell.charge < charge_use) return FALSE + if(on) + return FALSE on = 1 + playsound(src, 'sound/machines/vehicle/ignition.ogg', 50, 1, -3) set_light(initial(light_range)) update_icon() return TRUE /obj/vehicle/proc/turn_off() + if(!on) + return FALSE if(!mechanical) return FALSE on = 0 diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 3048af712f..2a43994781 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -55,6 +55,8 @@ var/next_emote = 0 // When we're supposed to print our next emote, as a world.time var/selective_preference = DM_DIGEST // Which type of selective bellymode do we default to? var/special_entrance_sound // CHOMPEdit: Mob specific custom entry sound set by mob's init_vore when applicable + var/slow_digestion = FALSE // CHOMPEdit: Gradual corpse digestion + var/slow_brutal = FALSE // CHOMPEdit: Gradual corpse digestion: Stumpy's Special // Generally just used by AI var/autotransferchance = 0 // % Chance of prey being autotransferred to transfer location @@ -69,7 +71,7 @@ //Actual full digest modes var/tmp/static/list/digest_modes = list(DM_HOLD,DM_DIGEST,DM_ABSORB,DM_DRAIN,DM_SELECT,DM_UNABSORB,DM_HEAL,DM_SHRINK,DM_GROW,DM_SIZE_STEAL,DM_EGG) //Digest mode addon flags - var/tmp/static/list/mode_flag_list = list("Numbing" = DM_FLAG_NUMBING, "Stripping" = DM_FLAG_STRIPPING, "Leave Remains" = DM_FLAG_LEAVEREMAINS, "Muffles" = DM_FLAG_THICKBELLY, "Affect Worn Items" = DM_FLAG_AFFECTWORN, "Jams Sensors" = DM_FLAG_JAMSENSORS, "Complete Absorb" = DM_FLAG_FORCEPSAY) + var/tmp/static/list/mode_flag_list = list("Numbing" = DM_FLAG_NUMBING, "Stripping" = DM_FLAG_STRIPPING, "Leave Remains" = DM_FLAG_LEAVEREMAINS, "Muffles" = DM_FLAG_THICKBELLY, "Affect Worn Items" = DM_FLAG_AFFECTWORN, "Jams Sensors" = DM_FLAG_JAMSENSORS, "Complete Absorb" = DM_FLAG_FORCEPSAY, "Slow Body Digestion" = DM_FLAG_SLOWBODY) //CHOMPEdit //Item related modes var/tmp/static/list/item_digest_modes = list(IM_HOLD,IM_DIGEST_FOOD,IM_DIGEST,IM_DIGEST_PARALLEL) @@ -266,7 +268,9 @@ "autotransferlocation", "autotransfer_enabled", "autotransfer_min_amount", - "autotransfer_max_amount", //CHOMP end of variables from CHOMP + "autotransfer_max_amount", + "slow_digestion", + "slow_brutal", //CHOMP end of variables from CHOMP "egg_type", "save_digest_mode" ) @@ -311,7 +315,8 @@ return //Someone dropping something (or being stripdigested) //Generic entered message - to_chat(owner,"[thing] slides into your [lowertext(name)].") + if(!owner.mute_entry) //CHOMPEdit + to_chat(owner,"[thing] slides into your [lowertext(name)].") //Sound w/ antispam flag setting if(vore_sound && !recent_sound) @@ -1307,7 +1312,9 @@ dupe.autotransferlocation = autotransferlocation dupe.autotransfer_enabled = autotransfer_enabled dupe.autotransfer_min_amount = autotransfer_min_amount - dupe.autotransfer_max_amount = autotransfer_max_amount //CHOMP end of variables from CHOMP + dupe.autotransfer_max_amount = autotransfer_max_amount + dupe.slow_digestion = slow_digestion + dupe.slow_brutal = slow_brutal //CHOMP end of variables from CHOMP dupe.belly_fullscreen = belly_fullscreen dupe.disable_hud = disable_hud diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index 49a6e7a1ce..10bca8b781 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -29,15 +29,20 @@ GLOBAL_LIST_INIT(digest_modes, list()) //Person just died in guts! if(L.stat == DEAD) - if(L.is_preference_enabled(/datum/client_preference/digestion_noises)) + if(!L.digestion_in_progress) //CHOMPEdit Start + if(L.is_preference_enabled(/datum/client_preference/digestion_noises)) + if(!B.fancy_vore) + SEND_SOUND(L, sound(get_sfx("classic_death_sounds"))) + else + SEND_SOUND(L, sound(get_sfx("fancy_death_prey"))) + B.handle_digestion_death(L) if(!B.fancy_vore) - SEND_SOUND(L, sound(get_sfx("classic_death_sounds"))) - else - SEND_SOUND(L, sound(get_sfx("fancy_death_prey"))) - B.handle_digestion_death(L) - if(!B.fancy_vore) - return list("to_update" = TRUE, "soundToPlay" = sound(get_sfx("classic_death_sounds"))) - return list("to_update" = TRUE, "soundToPlay" = sound(get_sfx("fancy_death_pred"))) + return list("to_update" = TRUE, "soundToPlay" = sound(get_sfx("classic_death_sounds"))) + return list("to_update" = TRUE, "soundToPlay" = sound(get_sfx("fancy_death_pred"))) + else + B.handle_digestion_death(L) + if(!L) + return //CHOMPEdit End //CHOMPEDIT: Parasitic digestion immunity hook, used to be a synx istype check but this is more optimized. if(L.parasitic) @@ -68,7 +73,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) var/actual_tox = L.getToxLoss() - old_tox var/actual_clone = L.getCloneLoss() - old_clone var/damage_gain = (actual_brute + actual_burn + actual_oxy/2 + actual_tox + actual_clone*2)*(B.nutrition_percent / 100) - + if(B.slow_digestion) //CHOMPEdit + damage_gain = damage_gain * 0.5 var/offset = (1 + ((L.weight - 137) / 137)) // 130 pounds = .95 140 pounds = 1.02 var/difference = B.owner.size_multiplier / L.size_multiplier if(isrobot(B.owner)) diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 0c64b2e3b6..3147b04ffd 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -294,6 +294,33 @@ return did_an_item /obj/belly/proc/handle_digestion_death(mob/living/M) + if(slow_digestion) //CHOMPAdd Start: Gradual corpse digestion + if(!M.digestion_in_progress) + M.digestion_in_progress = TRUE + if(M.health > -36 || (ishuman(M) && M.health > -136)) + to_chat(M, "(Your predator has enabled gradual body digestion. Stick around for a second round of churning to reach the true finisher.)") + if(M.health < M.maxHealth * -1) //Siplemobs etc + if(ishuman(M)) + if(M.health < (M.maxHealth * -1) -100) //Spacemans can go much deeper. Jank but maxHealth*-2 doesn't work with flat standard -100hp death threshold. + if(slow_brutal) + var/mob/living/carbon/human/P = M + var/vitals_only = TRUE + for(var/obj/item/organ/external/E in P.organs) + if(!E.vital) + vitals_only = FALSE + if(!LAZYLEN(E.children)) + E.droplimb(TRUE, DROPLIMB_EDGE) + qdel(E) + break + continue + if(vitals_only) + M.digestion_in_progress = FALSE + else + M.digestion_in_progress = FALSE + else + M.digestion_in_progress = FALSE + if(M.digestion_in_progress) + return //CHOMPAdd End var/digest_alert_owner = pick(digest_messages_owner) var/digest_alert_prey = pick(digest_messages_prey) var/compensation = M.maxHealth / 5 //Dead body bonus. diff --git a/code/modules/vore/eating/contaminate_vr.dm b/code/modules/vore/eating/contaminate_vr.dm index 10d852ee86..9321f2b2df 100644 --- a/code/modules/vore/eating/contaminate_vr.dm +++ b/code/modules/vore/eating/contaminate_vr.dm @@ -80,20 +80,6 @@ var/list/gurgled_overlays = list( else ..() -////////////// -// Special things that happen when wet -////////////// -/obj/item/weapon/storage/box/open(mob/user as mob) - if(gurgled) - to_chat(usr, "The soggy box falls apart in your hands.") - var/turf/T = get_turf(src) - for(var/obj/item/I in contents) - remove_from_storage(I, T) - new/obj/effect/decal/cleanable/molten_item(T) - qdel(src) - return - ..() - ////////////// // Special handling of gurgle_contaminate ////////////// diff --git a/code/modules/vore/eating/living_ch.dm b/code/modules/vore/eating/living_ch.dm index 047edbdf7a..46bd2fb3c5 100644 --- a/code/modules/vore/eating/living_ch.dm +++ b/code/modules/vore/eating/living_ch.dm @@ -6,7 +6,7 @@ var/vore_footstep_volume = 0 //Variable volume for a mob, updated every 5 steps where a footstep hasnt occurred. var/vore_footstep_chance = 0 var/vore_footstep_volume_cooldown = 0 //goes up each time a step isnt heard, and will proc update of list of viable bellies to determine the most filled and loudest one to base audio on. - + var/mute_entry = FALSE //Toggleable vorgan entry logs. var/parasitic = FALSE //Digestion immunity and nutrition leeching variable // CHOMP vore icons refactor (Now on living) @@ -111,7 +111,7 @@ set desc = "Transfer liquid from an organ to another or stomach, or into another person or container." set popup_menu = FALSE - if(!checkClickCooldown() || incapacitated(INCAPACITATION_ALL)) + if(!checkClickCooldown() || incapacitated(INCAPACITATION_KNOCKOUT)) return FALSE var/mob/living/user = usr @@ -270,3 +270,9 @@ return TRUE to_chat(src, "There is no suitable belly for rubs.") return FALSE + +/mob/living/proc/mute_entry() + set name = "Mute Vorgan Entrance" + set category = "Preferences" + set desc = "Mute the chatlog messages when something enters a vore belly." + mute_entry = !mute_entry diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index b648ca335d..1be038d66d 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -51,6 +51,7 @@ var/selective_preference = DM_DEFAULT // Preference for selective bellymode var/appendage_color = "#e03997" //Default pink. Used for the 'long_vore' trait. var/appendage_alt_setting = FALSE // Dictates if 'long_vore' user pulls prey to them or not. 1 = user thrown towards target. + var/digestion_in_progress = FALSE // CHOMPEdit: Gradual corpse gurgles var/regen_sounds = list( 'sound/effects/mob_effects/xenochimera/regen_1.ogg', 'sound/effects/mob_effects/xenochimera/regen_2.ogg', @@ -425,7 +426,7 @@ if(!istype(tasted)) return - if(!checkClickCooldown() || incapacitated(INCAPACITATION_ALL)) + if(!checkClickCooldown() || incapacitated(INCAPACITATION_KNOCKOUT)) //CHOMPEdit return setClickCooldown(DEFAULT_ATTACK_COOLDOWN) @@ -465,7 +466,7 @@ if(!istype(smelled)) return - if(!checkClickCooldown() || incapacitated(INCAPACITATION_ALL)) + if(!checkClickCooldown() || incapacitated(INCAPACITATION_KNOCKOUT)) //CHOMPEdit return setClickCooldown(DEFAULT_ATTACK_COOLDOWN) @@ -513,7 +514,7 @@ muffled = FALSE //Removes Muffling forceMove(get_turf(src)) //Just move me up to the turf, let's not cascade through bellies, there's been a problem, let's just leave. for(var/mob/living/simple_mob/SA in range(10)) - SA.prey_excludes[src] = world.time + LAZYSET(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"])") B.owner.update_fullness() //CHOMPEdit - This is run whenever a belly's contents are changed. @@ -796,7 +797,7 @@ if(istype(I, /obj/item/device/paicard)) var/obj/item/device/paicard/palcard = I var/mob/living/silicon/pai/pocketpal = palcard.pai - if(!pocketpal.devourable) + if(pocketpal && (!pocketpal.devourable)) to_chat(src, "\The [pocketpal] doesn't allow you to eat it.") return diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index 57750679f9..7f11b715cc 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -1,7 +1,7 @@ ///////////////////// Simple Animal ///////////////////// /mob/living/simple_mob 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. + var/list/prey_excludes = null //For excluding people from being eaten. /mob/living/simple_mob/insidePanel() //CHOMPedit: On-demand belly loading. if(vore_active && !voremob_loaded) @@ -107,8 +107,8 @@ user.visible_message("[user] swats [src] with [O]!") release_vore_contents() 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 + if(!(LAZYFIND(prey_excludes, L))) // Unless they're already on it, just to avoid fuckery. + LAZYSET(prey_excludes, L, world.time) addtimer(CALLBACK(src, .proc/removeMobFromPreyExcludes, weakref(L)), 5 MINUTES) else if(istype(O, /obj/item/device/healthanalyzer)) var/healthpercent = health/maxHealth*100 @@ -119,8 +119,7 @@ /mob/living/simple_mob/proc/removeMobFromPreyExcludes(weakref/target) if(isweakref(target)) var/mob/living/L = target.resolve() - if(L) - LAZYREMOVE(prey_excludes, L) + LAZYREMOVE(prey_excludes, L) // It's fine to remove a null from the list if we couldn't resolve L /mob/living/simple_mob/proc/nutrition_heal() set name = "Nutrition Heal" diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index f9f80c2ed2..fb1cf99dde 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -1000,6 +1000,9 @@ return FALSE host.vore_selected.mode_flags ^= host.vore_selected.mode_flag_list[toggle_addon] host.vore_selected.items_preserved.Cut() //Re-evaltuate all items in belly on + host.vore_selected.slow_digestion = FALSE //CHOMPAdd + if(host.vore_selected.mode_flags & DM_FLAG_SLOWBODY) //CHOMPAdd + host.vore_selected.slow_digestion = TRUE //CHOMPAdd . = TRUE if("b_item_mode") var/list/menu_list = host.vore_selected.item_digest_modes.Copy() diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index db45b0bc46..d57456b463 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -2477,5 +2477,56 @@ Departamental Swimsuits, for general use desc = "Cerise's hard-won belt from her glory days. Her skill might have waned since then, but her renown lives on." icon_state = "champion" item_state = null // i swear to god this works - hatterhat - + icon_override = 'icons/vore/custom_onmob_vr.dmi' + +//Sudate: Shea Corbett +/obj/item/clothing/under/fluff/greek_dress + name = "mytilenean dress" + desc = "It's a breezy, colorful two-part dress woven from linen, with the top consisting of white linen, and the skirt of rougher, sturdy fabric. It's adorned with a yellow belt and embroidered stripes in the hem, and blue highlights at the sleeves. More notably, however, it exposes the wearer's chest entirely." + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "greek_dress" + worn_state = "greek_dress" + rolled_sleeves = 0 + rolled_down = 0 + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "greek_dress" + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + +//JadeManique: Freyr +/obj/item/clothing/mask/fluff/freyr_mask + name = "Freyr's Mask" + desc = "A pristine white mask with antlers. Its silky to the touch, like porcelain!" + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "freyrmask" + icon_override = 'icons/vore/custom_onmob_vr.dmi' + item_state = "freyrmask_mob" + item_state_slots = null + body_parts_covered = FACE + flags_inv = HIDEFACE + item_flags = FLEXIBLEMATERIAL + +//codeme: Perrin Kade +/obj/item/clothing/shoes/fluff/gildedshoes_perrin + name = "gilded shoes" + desc = "Black shoes with gilding, revealing and comfortable for any wearer!" + + icon_state = "perrinshoes" + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_override = 'icons/vore/custom_onmob_vr.dmi' + +/obj/item/clothing/under/fluff/gildedrobe_perrin + name = "gilded robe" + desc = "Black robe with gilding, revealing and comfortable for any wearer!" + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "perrinrobes" + worn_state = "perrinrobes_s" + rolled_sleeves = 0 + rolled_down = 0 + + icon_override = 'icons/vore/custom_onmob_vr.dmi' + item_state = "perrinrobes_s" + body_parts_covered = UPPER_TORSO|LOWER_TORSO End CHOMP Removal*/ diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 97c97fb0ce..fa92f7f224 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1449,8 +1449,7 @@ End CHOMP Removal*/ M.add_language(LANGUAGE_ECHOSONG) to_chat(M,"LANGUAGES - INITIALISED") -//thedavestdave Lucky -///I know this is pretty bodgey but if it stupid and it works it isn't stupid +//thedavestdave - Lucky /obj/item/clothing/suit/armor/combat/crusader_costume/lucky icon = 'icons/vore/custom_clothes_vr.dmi' icon_state = "luck" diff --git a/code/modules/whitelist/whitelist.dm b/code/modules/whitelist/whitelist.dm new file mode 100644 index 0000000000..2bc269acf7 --- /dev/null +++ b/code/modules/whitelist/whitelist.dm @@ -0,0 +1,100 @@ +/client/var/list/whitelists = null + + +// Prints the client's whitelist entries +/client/verb/print_whitelist() + set name = "Show Whitelist Entries" + set desc = "Print the set of things you're whitelisted for." + set category = "OOC" + + to_chat(src, "You are whitelisted for:") + to_chat(src, jointext(get_whitelists_list(), "\n")) + +/client/proc/get_whitelists_list() + . = list() + if(src.whitelists == null) + src.whitelists = load_whitelist(src.ckey) + for(var/key in src.whitelists) + try + . += initial(initial(key:name)) + catch() + . += key + + +/proc/load_whitelist(var/key) + var/filename = "data/player_saves/[copytext(ckey(key),1,2)]/[ckey(key)]/whitelist.json" + try + // Check the player-specific whitelist file, if it exists. + if(fexists(filename)) + // Load the whitelist entries from file, or empty string if empty.` + . = list() + for(var/T in json_decode(file2text(filename) || "")) + T = text2path(T) + if(!ispath(T)) + continue + .[T] = TRUE + + // Something was removing an entry from the whitelist and interrupted mid-overwrite. + else if(fexists(filename + ".tmp") && fcopy(filename + ".tmp", filename)) + . = load_whitelist(key) + if(!fdel(filename + ".tmp")) + error("Exception when deleting tmp whitelist file [filename].tmp") + + // Whitelist file doesn't exist, so they aren't whitelisted for anything. Create the file. + else if(fexists("data/player_saves/[copytext(ckey(key),1,2)]/[ckey(key)]/preferences.sav")) + text2file("", filename) + . = list() + + catch(var/exception/E) + error("Exception when loading whitelist file [filename]: [E]") + + +// Returns true if the specified path is in the player's whitelists, false otw. +/client/proc/is_whitelisted(var/path) + if(istext(path)) + path = text2path(path) + if(!ispath(path)) + return + // If it hasn't already been loaded, load it. + if(src.whitelists == null) + src.whitelists = load_whitelist(src.ckey) + return src.whitelists[path] + + +/proc/is_alien_whitelisted(mob/M, var/datum/species/species) + //They are admin or the whitelist isn't in use + if(whitelist_overrides(M)) + return TRUE + + //You did something wrong + if(!M || !species) + return FALSE + + //The species isn't even whitelisted + if(!(species.spawn_flags & SPECIES_IS_WHITELISTED)) + return TRUE + + var/client/C = (!isclient(M)) ? M.client : M + return C.is_whitelisted(species.type) + + +/proc/is_lang_whitelisted(mob/M, var/datum/language/language) + //They are admin or the whitelist isn't in use + if(whitelist_overrides(M)) + return TRUE + + var/client/C = (!isclient(M)) ? M.client : M + + //You did something wrong + if(!istype(C) || !istype(language)) + return FALSE + + //The language isn't even whitelisted + if(!(language.flags & WHITELISTED)) + return TRUE + + return C.is_whitelisted(language.type) + + +/proc/whitelist_overrides(mob/M) + return !config.usealienwhitelist || check_rights(R_ADMIN|R_EVENT, 0, M) diff --git a/code/modules/xenobio/items/slime_objects.dm b/code/modules/xenobio/items/slime_objects.dm index 90012d7548..9556bd72de 100644 --- a/code/modules/xenobio/items/slime_objects.dm +++ b/code/modules/xenobio/items/slime_objects.dm @@ -141,9 +141,10 @@ light_range = 6 on = 1 //Bio-luminesence has one setting, on. power_use = 0 + light_system = STATIC_LIGHT -/obj/item/device/flashlight/slime/New() - ..() +/obj/item/device/flashlight/slime/Initialize() + .=..() set_light(light_range, light_power, light_color) /obj/item/device/flashlight/slime/update_brightness() @@ -215,4 +216,4 @@ description = "A slimy liquid, with very compelling smell. Extremely nutritious." color = "#FABA3A" nutriment_factor = 30 - taste_description = "slimy nectar" \ No newline at end of file + taste_description = "slimy nectar" diff --git a/code/stylesheet.dm b/code/stylesheet.dm index cb7c05e828..a48216e5b0 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -141,5 +141,7 @@ BIG IMG.icon {width: 32px; height: 32px;} .blue {color: #0000FF;} .green {color: #00DD00;} +.pnarrate {color: #009AB2;} + "} diff --git a/icons/_nanomaps/southern_cross_nanomap_z3.png b/icons/_nanomaps/southern_cross_nanomap_z3.png index f609628e54..6e255c9d5b 100644 Binary files a/icons/_nanomaps/southern_cross_nanomap_z3.png and b/icons/_nanomaps/southern_cross_nanomap_z3.png differ diff --git a/icons/inventory/accessory/item.dmi b/icons/inventory/accessory/item.dmi index aa939635c3..254e388c57 100644 Binary files a/icons/inventory/accessory/item.dmi and b/icons/inventory/accessory/item.dmi differ diff --git a/icons/inventory/accessory/mob.dmi b/icons/inventory/accessory/mob.dmi index 7774d2ab7b..e6bac630bd 100644 Binary files a/icons/inventory/accessory/mob.dmi and b/icons/inventory/accessory/mob.dmi differ diff --git a/icons/inventory/eyes/item_vr.dmi b/icons/inventory/eyes/item_vr.dmi index eee1bd9bfc..cc158df7ad 100644 Binary files a/icons/inventory/eyes/item_vr.dmi and b/icons/inventory/eyes/item_vr.dmi differ diff --git a/icons/inventory/eyes/mob.dmi b/icons/inventory/eyes/mob.dmi index f2fdd8a45f..60edef888f 100644 Binary files a/icons/inventory/eyes/mob.dmi and b/icons/inventory/eyes/mob.dmi differ diff --git a/icons/inventory/eyes/mob_vr.dmi b/icons/inventory/eyes/mob_vr.dmi index f19fed9626..2a413394e9 100644 Binary files a/icons/inventory/eyes/mob_vr.dmi and b/icons/inventory/eyes/mob_vr.dmi differ diff --git a/icons/inventory/head/mob_vr.dmi b/icons/inventory/head/mob_vr.dmi index 2da016ca45..52e3a4121f 100644 Binary files a/icons/inventory/head/mob_vr.dmi and b/icons/inventory/head/mob_vr.dmi differ diff --git a/icons/inventory/suit/item_vr.dmi b/icons/inventory/suit/item_vr.dmi index 6c461429e8..2ec42eea27 100644 Binary files a/icons/inventory/suit/item_vr.dmi and b/icons/inventory/suit/item_vr.dmi differ diff --git a/icons/inventory/suit/mob_vr.dmi b/icons/inventory/suit/mob_vr.dmi index 488b75567e..8743a62765 100644 Binary files a/icons/inventory/suit/mob_vr.dmi and b/icons/inventory/suit/mob_vr.dmi differ diff --git a/icons/mob/human_face_alt.dmi b/icons/mob/human_face_alt.dmi index 6d02bc14bf..6811bb8fd6 100644 Binary files a/icons/mob/human_face_alt.dmi and b/icons/mob/human_face_alt.dmi differ diff --git a/icons/mob/human_races/markings.dmi b/icons/mob/human_races/markings.dmi index 4aa72bc137..08a8e126c8 100644 Binary files a/icons/mob/human_races/markings.dmi and b/icons/mob/human_races/markings.dmi differ diff --git a/icons/mob/human_races/markings_ch.dmi b/icons/mob/human_races/markings_ch.dmi index abff58fe74..02eac76358 100644 Binary files a/icons/mob/human_races/markings_ch.dmi and b/icons/mob/human_races/markings_ch.dmi differ diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi index ee1c196b37..b2b50f1d69 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/markings_yw.dmi b/icons/mob/human_races/markings_yw.dmi index b6650f5402..62e529c549 100644 Binary files a/icons/mob/human_races/markings_yw.dmi and b/icons/mob/human_races/markings_yw.dmi differ diff --git a/icons/mob/human_races/r_def_skrell.dmi b/icons/mob/human_races/r_def_skrell.dmi index 7b24ba3b4d..5224f7dd59 100644 Binary files a/icons/mob/human_races/r_def_skrell.dmi and b/icons/mob/human_races/r_def_skrell.dmi differ diff --git a/icons/mob/human_races/r_skrell.dmi b/icons/mob/human_races/r_skrell.dmi index 05e51ca0da..cf99d43e60 100644 Binary files a/icons/mob/human_races/r_skrell.dmi and b/icons/mob/human_races/r_skrell.dmi differ diff --git a/icons/mob/items/lefthand_suits.dmi b/icons/mob/items/lefthand_suits.dmi index fd2c56a4c5..301bbc3ff3 100644 Binary files a/icons/mob/items/lefthand_suits.dmi and b/icons/mob/items/lefthand_suits.dmi differ diff --git a/icons/mob/items/righthand_suits.dmi b/icons/mob/items/righthand_suits.dmi index d710deb759..83c7e7b777 100644 Binary files a/icons/mob/items/righthand_suits.dmi and b/icons/mob/items/righthand_suits.dmi differ diff --git a/icons/mob/robots_vr.dmi b/icons/mob/robots_vr.dmi index fab80dec2d..2432498e71 100644 Binary files a/icons/mob/robots_vr.dmi and b/icons/mob/robots_vr.dmi differ diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi index 884e241c18..4265bd359f 100644 Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ diff --git a/icons/mob/vore/ears_ch.dmi b/icons/mob/vore/ears_ch.dmi index bc0b6d7639..02b20c340e 100644 Binary files a/icons/mob/vore/ears_ch.dmi and b/icons/mob/vore/ears_ch.dmi differ diff --git a/icons/mob/vore/tails_ch.dmi b/icons/mob/vore/tails_ch.dmi index ba1c5b6103..4d16a9e2dd 100644 Binary files a/icons/mob/vore/tails_ch.dmi and b/icons/mob/vore/tails_ch.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index 74b8d5fe60..f3cf3be825 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ diff --git a/icons/mob/vore/taurs_ch.dmi b/icons/mob/vore/taurs_ch.dmi index 80e5a06e69..47303e5225 100644 Binary files a/icons/mob/vore/taurs_ch.dmi and b/icons/mob/vore/taurs_ch.dmi differ diff --git a/icons/mob/vore/taurs_vr.dmi b/icons/mob/vore/taurs_vr.dmi index 8ae4803803..7e92424ab3 100644 Binary files a/icons/mob/vore/taurs_vr.dmi and b/icons/mob/vore/taurs_vr.dmi differ diff --git a/icons/mob/vore/taurs_vr_loaf.dmi b/icons/mob/vore/taurs_vr_loaf.dmi new file mode 100644 index 0000000000..835225049d Binary files /dev/null and b/icons/mob/vore/taurs_vr_loaf.dmi differ diff --git a/icons/mob/vore/wings_vr.dmi b/icons/mob/vore/wings_vr.dmi index 68432f86f2..a6653ebcf3 100644 Binary files a/icons/mob/vore/wings_vr.dmi and b/icons/mob/vore/wings_vr.dmi differ diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi index f1637aca4b..d302c760fc 100644 Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ diff --git a/icons/obj/furniture_vr.dmi b/icons/obj/furniture_vr.dmi index 8be008ba02..5f79c3df6a 100644 Binary files a/icons/obj/furniture_vr.dmi and b/icons/obj/furniture_vr.dmi differ diff --git a/icons/obj/gun.dmi b/icons/obj/gun.dmi index 42ce468bce..3e4b9152ad 100644 Binary files a/icons/obj/gun.dmi and b/icons/obj/gun.dmi differ diff --git a/icons/obj/soap.dmi b/icons/obj/soap.dmi index e610eb2490..23a7bf2394 100644 Binary files a/icons/obj/soap.dmi and b/icons/obj/soap.dmi differ diff --git a/icons/obj/sofas.dmi b/icons/obj/sofas.dmi index b8ef1d5c0a..cca4eb803e 100644 Binary files a/icons/obj/sofas.dmi and b/icons/obj/sofas.dmi differ diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi index 9c3cf31f09..8ade0ce4ae 100644 Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ diff --git a/icons/obj/vehicles.dmi b/icons/obj/vehicles.dmi index 6379879df7..271ba8f180 100644 Binary files a/icons/obj/vehicles.dmi and b/icons/obj/vehicles.dmi differ diff --git a/icons/turf/catwalks.dmi b/icons/turf/catwalks.dmi index 20c5e1f4d9..7ff2c50a35 100644 Binary files a/icons/turf/catwalks.dmi and b/icons/turf/catwalks.dmi differ diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 78fa46a05c..7c03befdfa 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_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi index e90afae8d4..b401831f62 100644 Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ diff --git a/maps/cynosure/cynosure-2.dmm b/maps/cynosure/cynosure-2.dmm index d38f4e7d6d..95bc2a15d1 100644 --- a/maps/cynosure/cynosure-2.dmm +++ b/maps/cynosure/cynosure-2.dmm @@ -45225,6 +45225,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 1 }, +/obj/vehicle/train/engine/quadbike/snowmobile/random{ + dir = 1 + }, /turf/simulated/floor/tiled/old_tile/gray, /area/surface/station/garage) "uBP" = ( diff --git a/maps/groundbase/gb-z1.dmm b/maps/groundbase/gb-z1.dmm index e4673f4a1e..c0c8b7a715 100644 --- a/maps/groundbase/gb-z1.dmm +++ b/maps/groundbase/gb-z1.dmm @@ -492,9 +492,6 @@ lel "bq" = ( /obj/machinery/vending/wardrobe/atmosdrobe, /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/sign/scenery/fakefireaxe{ - pixel_y = 32 - }, /turf/simulated/floor/tiled, /area/groundbase/engineering/atmos/monitoring) "br" = ( diff --git a/maps/groundbase/gb-z3.dmm b/maps/groundbase/gb-z3.dmm index fe9bade7d6..88cbfaf5bb 100644 --- a/maps/groundbase/gb-z3.dmm +++ b/maps/groundbase/gb-z3.dmm @@ -7,9 +7,6 @@ lol /area/groundbase/exploration/equipment) "ab" = ( /obj/machinery/suit_cycler/medical, -/obj/structure/sign/scenery/fakefireaxe{ - pixel_y = 32 - }, /turf/simulated/floor/tiled/white, /area/groundbase/medical/paramedic) "ak" = ( diff --git a/maps/offmap_vr/om_ships/lunaship.dm b/maps/offmap_vr/om_ships/lunaship.dm new file mode 100644 index 0000000000..26ff0e54eb --- /dev/null +++ b/maps/offmap_vr/om_ships/lunaship.dm @@ -0,0 +1,100 @@ +// Compile in the map for CI testing if we're testing compileability of all the maps +#if MAP_TEST +#include "lunaship.dmm" +#endif + +// Map template for spawning the shuttle +/datum/map_template/om_ships/lunaship + name = "OM Ship - LUNA" + desc = "It's LUNA! As a spaceship." + mappath = 'lunaship.dmm' + +/area/lunaship + requires_power = 1 + has_gravity = 1 + flags = RAD_SHIELDED + +/area/lunaship/cockpit + name = "LUNA - Control Core" +/area/lunaship/office + name = "LUNA - Office" +/area/lunaship/hallway_port + name = "LUNA - Port EVA" +/area/lunaship/hallway_starboard + name = "LUNA - Starboard EVA" +/area/lunaship/park + name = "LUNA - Park" +/area/lunaship/bar + name = "LUNA - Bar" +/area/lunaship/medical + name = "LUNA - Medical" +/area/lunaship/robotics_bay + name = "LUNA - Robotics Bay" +/area/lunaship/engineering + name = "LUNA - Engineering" +/area/luna/flight_boat_dock + name = "LUNA - Boat Dock" + requires_power = 0 + +/area/shuttle/luna_ship_boat + name = "LUNA - Ship's Boat" + requires_power = 1 + dynamic_lighting = 1 + base_turf = /turf/simulated/floor/reinforced + +/obj/effect/shuttle_landmark/premade/luna_near_fore + name = "Near ISV LUNA (Fore)" + landmark_tag = "luna_near_fore" + +/obj/effect/shuttle_landmark/premade/luna_near_fore_port + name = "Near ISV LUNA (Fore-Port)" + landmark_tag = "luna_near_fore_port" + +/obj/effect/shuttle_landmark/premade/luna_near_fore_star + name = "Near ISV LUNA (Fore-Starboard)" + landmark_tag = "luna_near_fore_star" + +/obj/effect/shuttle_landmark/premade/luna_near_aft + name = "Near ISV LUNA (Aft)" + landmark_tag = "luna_near_aft" + +/obj/effect/shuttle_landmark/premade/luna_near_aft_port + name = "Near ISV LUNA (Aft-Port)" + landmark_tag = "luna_near_aft_port" + +/obj/effect/shuttle_landmark/premade/luna_near_aft_star + name = "Near ISV LUNA (Aft-Starboard)" + landmark_tag = "luna_near_aft_star" + +/obj/effect/shuttle_landmark/premade/luna_wing_port + name = "ISV LUNA (Port Wingtip)" + landmark_tag = "luna_wing_star" + +/obj/effect/shuttle_landmark/premade/luna_wing_star + name = "ISV LUNA (Starboard Wingtip)" + landmark_tag = "luna_wing_star" + + +/turf/simulated/floor/water/indoors/surfluid + name = "surfluid pool" + desc = "A pool of inky-black fluid that shimmers oddly in the light if hit just right." + description_info = "Surfluid is a protean's main method of production, using swarms of nanites to process raw materials into finished products at the cost of immense amounts of energy." + color = "#222222" + outdoors = OUTDOORS_NO + reagent_type = "liquid_protean" + +// The 'ship' +/obj/effect/overmap/visitable/ship/lunaship + name = "ISV LUNA" + desc = "Experimental multifunction vessel. Friendly IFF detected." + icon_state = "moe_frigate" + scanner_desc = @{"[i]Registration[/i]: LUNA +[i]Class[/i]: Large Corvette - Multifunctional +[i]Transponder[/i]: Transmitting [CIV], non-hostile. +[b]Notice[/b]: Automated vessel. Abnormal energy emissions detected. "} + color = "#00aaff" //Bluey + vessel_mass = 2000 + vessel_size = SHIP_SIZE_SMALL + initial_generic_waypoints = list("luna_near_fore_port", "luna_near_fore_star", "luna_near_aft_port", "luna_near_aft_star", "luna_near_fore", "luna_wing_port", "luna_wing_star", "luna_near_aft") + fore_dir = NORTH + known = FALSE \ No newline at end of file diff --git a/maps/offmap_vr/om_ships/lunaship.dmm b/maps/offmap_vr/om_ships/lunaship.dmm new file mode 100644 index 0000000000..b74098afa2 --- /dev/null +++ b/maps/offmap_vr/om_ships/lunaship.dmm @@ -0,0 +1,6924 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"ad" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/park) +"af" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_starboard) +"al" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/perfect_tele/alien{ + desc = "An enhanced device that allows one to teleport people and objects across large distances."; + name = "advanced translocator" + }, +/obj/item/weapon/card/id/event/polymorphic/altcard{ + access = list(777) + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"aF" = ( +/obj/structure/hull_corner, +/turf/space, +/area/space) +"aL" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"aQ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"aV" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + pixel_x = -25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"aY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_starboard) +"bj" = ( +/turf/space/internal_edge/top, +/area/lunaship/park) +"bp" = ( +/obj/machinery/computer/ship/navigation/telescreen, +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/bar) +"bx" = ( +/obj/structure/bed/chair/sofa/right/purp, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"by" = ( +/obj/structure/hull_corner/long_vert{ + dir = 9 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"bD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"bF" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"bK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"bP" = ( +/turf/space/internal_edge/top, +/area/lunaship/cockpit) +"bU" = ( +/turf/space/internal_edge/topright, +/area/lunaship/cockpit) +"cj" = ( +/obj/structure/hull_corner/long_vert{ + dir = 6 + }, +/turf/space, +/area/space) +"cx" = ( +/turf/space/internal_edge/left, +/area/lunaship/park) +"cK" = ( +/obj/structure/bed/chair/sofa/purp, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"cM" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"cQ" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/engineering) +"cU" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"dl" = ( +/obj/structure/hull_corner/long_vert{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"do" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"dB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"dN" = ( +/obj/machinery/atmospherics/portables_connector{ + piping_layer = 3 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"ew" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"eE" = ( +/turf/simulated/floor/water/indoors/surfluid, +/area/lunaship/engineering) +"eO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"fc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/lunaship/bar) +"fd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"fv" = ( +/obj/structure/table/darkglass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"fE" = ( +/obj/structure/table/darkglass, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"fT" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"gc" = ( +/obj/structure/cable/cyan{ + 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/tiled/milspec, +/area/lunaship/robotics_bay) +"gj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/lunaship/bar) +"gl" = ( +/obj/machinery/sleep_console{ + dir = 2; + pixel_x = -1 + }, +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"gp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/water/deep/indoors, +/area/lunaship/park) +"gC" = ( +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"gI" = ( +/obj/structure/hull_corner/long_vert{ + dir = 10 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space) +"gT" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"gY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"gZ" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/water/deep/indoors, +/area/lunaship/park) +"he" = ( +/obj/machinery/sleeper, +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"hr" = ( +/turf/simulated/floor/water/indoors/surfluid, +/area/lunaship/cockpit) +"hs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"hu" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"hA" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"hH" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 1; + pixel_y = 25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"hR" = ( +/obj/effect/floor_decal/milspec/color/black/half, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"ih" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_port) +"ik" = ( +/obj/effect/overmap/visitable/ship/lunaship, +/turf/space, +/area/space) +"il" = ( +/turf/space/internal_edge/topright, +/area/lunaship/park) +"in" = ( +/obj/structure/bed/chair/bar_stool, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"iq" = ( +/obj/structure/bed/chair/sofa/corner/purp, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"iu" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + pixel_x = -25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"iv" = ( +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 4 + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + pixel_x = 25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/milspec/sterile{ + opacity = 1 + }, +/area/lunaship/medical) +"iw" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"ix" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + piping_layer = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"iA" = ( +/obj/structure/hull_corner{ + dir = 8 + }, +/turf/space, +/area/space) +"iB" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 5 + }, +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"iK" = ( +/obj/effect/shuttle_landmark/premade/luna_near_aft_star, +/turf/space, +/area/space) +"iN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"iQ" = ( +/obj/structure/bed/chair/bar_stool, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/lunaship/bar) +"jd" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/cockpit) +"jz" = ( +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"jF" = ( +/turf/space/internal_edge/bottom, +/area/lunaship/cockpit) +"jG" = ( +/turf/simulated/floor/wood, +/area/lunaship/office) +"jK" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"jQ" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + pixel_x = -25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"jT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"kd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"ku" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"kF" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"kI" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"kL" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"kM" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv, +/obj/structure/closet/walllocker/medical/west, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/toxin, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"kZ" = ( +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"lb" = ( +/obj/machinery/power/shield_generator/upgraded{ + field_radius = 20; + initial_shield_modes = 2113; + req_one_access = 777; + target_radius = 18 + }, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"lm" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/obj/machinery/mecha_part_fabricator{ + req_access = list() + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"ls" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"lI" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"lP" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"lW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/corner, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"lZ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"mf" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/belt/utility/chief/full, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 5 + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/obj/item/device/lightreplacer, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"mj" = ( +/turf/space/internal_edge/topleft, +/area/lunaship/cockpit) +"mm" = ( +/obj/machinery/telecomms/allinone, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"mp" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"mr" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"mx" = ( +/obj/structure/hull_corner/long_vert{ + dir = 6 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"mV" = ( +/obj/effect/shuttle_landmark/premade/luna_near_fore_star, +/turf/space, +/area/space) +"na" = ( +/obj/structure/bed/chair/sofa/purp{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"nc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"ng" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"nn" = ( +/obj/structure/cable/cyan{ + 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/eris/steel/bar_flat, +/area/lunaship/bar) +"nr" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"ns" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"ny" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"nC" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"nM" = ( +/obj/structure/closet/crate/bin{ + anchored = 1; + density = 0; + name = "trash bin"; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"nZ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"oc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"od" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "luna_private_bed"; + name = "Door Lock"; + pixel_x = -25 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"oj" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space) +"oD" = ( +/turf/space/internal_edge/left, +/area/lunaship/cockpit) +"oG" = ( +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/lunaship/bar) +"oS" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"pj" = ( +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/office) +"px" = ( +/obj/structure/lattice, +/obj/machinery/power/pointdefense{ + id_tag = "luna_ship_pd" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/space, +/area/space) +"pN" = ( +/obj/structure/dancepole{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/lunaship/bar) +"pO" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"pR" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/item/weapon/implanter, +/obj/item/weapon/implant/organ/limbaugment/upperarm/blade, +/turf/simulated/floor/wood, +/area/lunaship/office) +"pT" = ( +/obj/structure/hull_corner/long_vert{ + dir = 9 + }, +/turf/space, +/area/space) +"pV" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall/rpshull, +/area/space) +"qn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"qx" = ( +/obj/structure/hull_corner/long_vert{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space) +"qz" = ( +/turf/simulated/wall/tgmc/durawall, +/area/space) +"qB" = ( +/obj/item/device/defib_kit/jumper_kit, +/obj/structure/table/steel, +/obj/item/weapon/storage/firstaid/surgery, +/obj/structure/closet/walllocker_double/east, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"qI" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"rh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"rn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/rpshull, +/area/space) +"rv" = ( +/obj/structure/closet/walllocker_double/west, +/obj/fiftyspawner/phoron, +/obj/fiftyspawner/uranium, +/obj/fiftyspawner/diamond, +/obj/fiftyspawner/osmium, +/obj/fiftyspawner/mhydrogen, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/silver, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"rA" = ( +/obj/structure/hull_corner/long_vert{ + dir = 6 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space) +"rB" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"rD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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/carpet/turcarpet, +/area/lunaship/office) +"rK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_port) +"rX" = ( +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/device/paicard/sleevecard, +/obj/item/device/paicard/sleevecard, +/obj/item/device/sleevemate{ + pixel_y = -5 + }, +/obj/item/device/sleevemate, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"rZ" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"sa" = ( +/obj/machinery/light/floortube, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"si" = ( +/turf/space, +/area/space) +"sx" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"sC" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/medical) +"sD" = ( +/obj/structure/cable/cyan{ + 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 = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"sN" = ( +/obj/machinery/ntnet_relay, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"sT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_starboard) +"sU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"sV" = ( +/obj/effect/floor_decal/milspec/color/orange/corner, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"sW" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"sZ" = ( +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/east, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/light, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"tf" = ( +/obj/effect/shuttle_landmark/premade/luna_wing_port, +/turf/space, +/area/space) +"th" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_port) +"tl" = ( +/obj/structure/hull_corner/long_vert{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"tm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"ts" = ( +/obj/machinery/vending/nifsoft_shop, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"tB" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/lunaship/engineering) +"tW" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rpshull, +/area/space) +"ui" = ( +/obj/machinery/vending/medical{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"um" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/rpshull, +/area/space) +"uq" = ( +/turf/space/internal_edge/right, +/area/lunaship/park) +"uQ" = ( +/obj/structure/bed/chair/bay/comfy/purple, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"uS" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/hallway_port) +"uW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"ve" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/bar) +"vi" = ( +/obj/structure/table/darkglass, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"vs" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/medical) +"vt" = ( +/obj/effect/floor_decal/milspec_sterile/green/half, +/obj/structure/cable/cyan{ + 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/milspec/sterile, +/area/lunaship/medical) +"vw" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"vy" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"vB" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"vD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_starboard) +"vE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"vO" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + piping_layer = 3 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"vQ" = ( +/obj/structure/closet/walllocker_double/west, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/durasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/titanium, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"vU" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space) +"vW" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + dir = 4 + }, +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/robotics_bay) +"wd" = ( +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/hallway_starboard) +"wy" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"wK" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/combat, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/item/weapon/storage/firstaid/clotting, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/west, +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"wM" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rpshull, +/area/space) +"wZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"xa" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"xd" = ( +/obj/effect/shuttle_landmark/premade/luna_wing_star, +/turf/space, +/area/space) +"xg" = ( +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/hallway_port) +"xj" = ( +/obj/structure/undies_wardrobe{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"xJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"yh" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + pixel_x = 25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"yl" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rpshull, +/area/space) +"yw" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"yB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"yH" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"yL" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 6 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"yQ" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + icon_state = "map_on"; + name = "gas pump - waste - scrubbers" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"yX" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"zl" = ( +/obj/structure/fans/hardlight, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/lunaship/hallway_starboard) +"zm" = ( +/obj/effect/shuttle_landmark/premade/luna_near_aft, +/turf/space, +/area/space) +"zp" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"zr" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/east, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"zB" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"zE" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"zG" = ( +/obj/structure/hull_corner/long_vert{ + dir = 10 + }, +/turf/space, +/area/space) +"zJ" = ( +/obj/structure/cable/cyan{ + 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/eris/steel/bar_flat, +/area/lunaship/bar) +"zW" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Aa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + opacity = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Ad" = ( +/obj/structure/lattice, +/obj/machinery/power/pointdefense{ + id_tag = "luna_ship_pd" + }, +/obj/structure/cable/cyan, +/turf/space, +/area/space) +"Ag" = ( +/turf/simulated/floor/water/deep/indoors, +/area/lunaship/park) +"Ak" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/obj/structure/cable/cyan{ + 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 = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"Ao" = ( +/obj/structure/table/darkglass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"Ar" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"As" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + opacity = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"AR" = ( +/obj/structure/fans/hardlight, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/lunaship/hallway_port) +"AS" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/wood, +/area/lunaship/office) +"Ba" = ( +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_port) +"Bd" = ( +/obj/structure/fans/hardlight, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/lunaship/hallway_port) +"Bg" = ( +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/robotics_bay) +"BT" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Ca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"Cf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space) +"Cw" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"CA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_port) +"CJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rpshull, +/area/space) +"Dm" = ( +/obj/machinery/mech_recharger{ + icon = 'icons/turf/shuttle_alien_blue.dmi' + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"Dt" = ( +/obj/structure/hull_corner/long_vert{ + dir = 10 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space) +"Du" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/wall/rpshull, +/area/space) +"DJ" = ( +/obj/machinery/door/airlock/angled_tgmc{ + id_tag = "luna_private_bed"; + name = "bedroom" + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"DP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"Ee" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"Eg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_starboard) +"Ez" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"EF" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/robotics_bay) +"EG" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"EH" = ( +/turf/simulated/floor/water/indoors/surfluid, +/area/lunaship/robotics_bay) +"EK" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"EP" = ( +/obj/machinery/computer/ship/engines{ + req_one_access = list(777) + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"EQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space) +"ER" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"EZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"Fb" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Fh" = ( +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"Fs" = ( +/obj/structure/hull_corner{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space) +"FU" = ( +/obj/effect/floor_decal/milspec_sterile/green/half, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"FV" = ( +/obj/structure/closet/crate/bin{ + anchored = 1; + density = 0; + name = "trash bin"; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"Ge" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/rpshull, +/area/space) +"Gn" = ( +/obj/structure/hull_corner{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space) +"Gu" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall/rpshull, +/area/space) +"GI" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"GP" = ( +/obj/structure/railing/grey, +/obj/machinery/pointdefense_control{ + id_tag = "luna_ship_pd"; + req_one_access = 777 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"GQ" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"GT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"GY" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + pixel_x = 25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"Hf" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/space, +/area/space) +"Hh" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"Hv" = ( +/obj/structure/flora/tree/jungle_small{ + pixel_x = -38; + pixel_y = 7 + }, +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"Hz" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"HC" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/wood, +/area/lunaship/office) +"HR" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"HW" = ( +/obj/structure/closet/walllocker_double/north{ + dir = 4; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 23 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"Ia" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"Ih" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/water/indoors/surfluid, +/area/lunaship/robotics_bay) +"Iv" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/space, +/area/space) +"Iz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/power/smes/buildable/hybrid{ + input_attempt = 1; + input_level = 250000; + input_level_max = 250000; + output_level = 190000 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"IJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Jn" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/rpshull, +/area/space) +"Jv" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"JK" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"JM" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + req_access = null; + req_log_access = null + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"JT" = ( +/obj/structure/hull_corner/long_vert{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"JW" = ( +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/medical) +"Ke" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"Kn" = ( +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"KH" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + dir = 4 + }, +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/bar) +"KQ" = ( +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"KX" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"KY" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Lo" = ( +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"LA" = ( +/obj/effect/floor_decal/milspec/color/black/corner, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"LI" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"LS" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"Mb" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"Mw" = ( +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"Mx" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"MM" = ( +/turf/space/internal_edge/bottomleft, +/area/lunaship/cockpit) +"MV" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"MX" = ( +/obj/machinery/mecha_part_fabricator/pros{ + req_access = list() + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"Nf" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"No" = ( +/turf/simulated/floor/tiled/milspec, +/area/lunaship/bar) +"Np" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"NH" = ( +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"NQ" = ( +/turf/space/internal_edge/topleft, +/area/lunaship/park) +"NR" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "gas pump - air - distro"; + piping_layer = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"NS" = ( +/obj/structure/closet/walllocker_double/east, +/obj/item/device/nif/protean, +/obj/item/device/nif/protean, +/obj/item/device/nif/protean, +/obj/item/organ/internal/nano/orchestrator, +/obj/item/organ/internal/nano/orchestrator, +/obj/item/organ/internal/nano/orchestrator, +/obj/item/organ/internal/nano/refactory, +/obj/item/organ/internal/nano/refactory, +/obj/item/organ/internal/nano/refactory, +/obj/item/device/mmi/digital/posibrain/nano, +/obj/item/device/mmi/digital/posibrain/nano, +/obj/item/device/mmi/digital/posibrain/nano, +/turf/simulated/floor/wood, +/area/lunaship/office) +"Oa" = ( +/obj/effect/shuttle_landmark/premade/luna_near_fore_port, +/turf/space, +/area/space) +"Oo" = ( +/obj/structure/closet/walllocker_double/east, +/obj/item/capture_crystal/master, +/obj/item/capture_crystal/great, +/obj/item/capture_crystal/great, +/obj/item/capture_crystal/ultra, +/obj/item/capture_crystal/ultra, +/obj/item/capture_crystal, +/obj/item/capture_crystal, +/obj/item/capture_crystal, +/obj/item/capture_crystal, +/turf/simulated/floor/wood, +/area/lunaship/office) +"OG" = ( +/obj/structure/closet/wardrobe, +/obj/item/weapon/storage/part_replacer/adv/discount_bluespace, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/manipulator/omni, +/obj/item/weapon/stock_parts/manipulator/omni, +/obj/item/weapon/stock_parts/manipulator/omni, +/obj/item/weapon/stock_parts/manipulator/omni, +/obj/item/weapon/stock_parts/manipulator/omni, +/obj/item/weapon/stock_parts/matter_bin/omni, +/obj/item/weapon/stock_parts/matter_bin/omni, +/obj/item/weapon/stock_parts/matter_bin/omni, +/obj/item/weapon/stock_parts/matter_bin/omni, +/obj/item/weapon/stock_parts/matter_bin/omni, +/obj/item/weapon/stock_parts/scanning_module/omni, +/obj/item/weapon/stock_parts/scanning_module/omni, +/obj/item/weapon/stock_parts/scanning_module/omni, +/obj/item/weapon/stock_parts/scanning_module/omni, +/obj/item/weapon/stock_parts/scanning_module/omni, +/obj/item/weapon/stock_parts/micro_laser/omni, +/obj/item/weapon/stock_parts/micro_laser/omni, +/obj/item/weapon/stock_parts/micro_laser/omni, +/obj/item/weapon/stock_parts/micro_laser/omni, +/obj/item/weapon/stock_parts/micro_laser/omni, +/turf/simulated/floor/wood, +/area/lunaship/office) +"OH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"OK" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_port) +"OQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"OX" = ( +/turf/space/internal_edge/right, +/area/lunaship/cockpit) +"Pe" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + pixel_x = -25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan, +/obj/machinery/power/quantumpad, +/obj/structure/railing/grey, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"PJ" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/office) +"PL" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"PS" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"PU" = ( +/obj/effect/shuttle_landmark/premade/luna_near_aft_port, +/turf/space, +/area/space) +"PY" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Qa" = ( +/obj/machinery/ion_engine{ + dir = 1 + }, +/turf/simulated/wall/rpshull, +/area/lunaship/engineering) +"Qp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Qs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/power/rtg/kugelblitz{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"Qu" = ( +/obj/machinery/shipsensors{ + dir = 1; + range = 3.5 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/cyan, +/turf/simulated/floor/reinforced/airless, +/area/lunaship/engineering) +"QF" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"QP" = ( +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_starboard) +"QU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Rd" = ( +/turf/simulated/floor/tiled/milspec, +/area/lunaship/hallway_starboard) +"Rf" = ( +/obj/machinery/light/floortube{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/lunaship/park) +"Ri" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/office) +"RA" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"RI" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"RO" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"RQ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"RS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"RX" = ( +/obj/machinery/atmospherics/pipe/tank/air/full, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Sy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"SC" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/lunaship/bar) +"SF" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"SN" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/rpshull, +/area/space) +"Tb" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"Tc" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Ty" = ( +/obj/machinery/computer/ship/sensors{ + req_one_access = list(777) + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"TA" = ( +/obj/structure/hull_corner/long_vert{ + dir = 5 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/space, +/area/space) +"TY" = ( +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + 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 = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"Uj" = ( +/turf/simulated/floor/tiled/eris/steel/bar_dance{ + opacity = 1 + }, +/area/lunaship/bar) +"UK" = ( +/obj/structure/table/glass, +/obj/item/device/healthanalyzer/advanced{ + pixel_x = -5 + }, +/obj/item/device/healthanalyzer/advanced{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/floor_decal/milspec_sterile/green/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"UM" = ( +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"UN" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"UP" = ( +/obj/structure/hull_corner/long_vert{ + dir = 5 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/space, +/area/space) +"UR" = ( +/obj/item/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"Vm" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/lunaship/hallway_port) +"Vp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/lunaship/office) +"Vu" = ( +/turf/space/internal_edge/bottomright, +/area/lunaship/cockpit) +"Vx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"Vz" = ( +/obj/structure/cable/cyan{ + 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/carpet/turcarpet, +/area/lunaship/office) +"VH" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"VV" = ( +/obj/structure/fans/hardlight, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/lunaship/hallway_starboard) +"VY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Wb" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Wg" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Wm" = ( +/obj/structure/table/steel, +/obj/machinery/recharger{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/cell_charger{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"Wn" = ( +/turf/simulated/wall/rpshull, +/area/space) +"Wp" = ( +/turf/simulated/wall/tgmc/durawall, +/area/lunaship/hallway_starboard) +"Ww" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(777) + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Wz" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green/corner, +/turf/simulated/floor/tiled/milspec/sterile, +/area/lunaship/medical) +"WC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/lunaship/office) +"WN" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"WQ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Xg" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/lunaship/bar) +"Xn" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Xo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Xp" = ( +/obj/effect/floor_decal/milspec/color/orange/half, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel, +/obj/structure/cable/cyan{ + 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 = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"Xx" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"XO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"XW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/smes/buildable/hybrid{ + input_attempt = 1; + input_level = 250000; + input_level_max = 250000; + output_level = 190000 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/lunaship/engineering) +"XZ" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + pixel_x = -25; + req_access = list(777) + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"Yf" = ( +/obj/structure/hull_corner/long_vert{ + dir = 5 + }, +/turf/space, +/area/space) +"YD" = ( +/obj/structure/hull_corner/long_vert{ + dir = 9 + }, +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/space, +/area/space) +"YU" = ( +/turf/simulated/floor/plating/eris/under, +/area/lunaship/engineering) +"Zh" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"Zm" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/space, +/area/space) +"Zr" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 10 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/robotics_bay) +"Zu" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"Zy" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/park) +"ZD" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"ZI" = ( +/obj/effect/floor_decal/milspec/color/orange/half, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/lunaship/engineering) +"ZL" = ( +/turf/simulated/floor/reinforced/airless, +/area/space) +"ZM" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/rpshull, +/area/space) +"ZN" = ( +/obj/structure/railing/grey, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/lunaship/cockpit) +"ZO" = ( +/obj/structure/bed/chair/bar_stool, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/lunaship/bar) +"ZT" = ( +/obj/effect/shuttle_landmark/premade/luna_near_fore, +/turf/space, +/area/space) +"ZX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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/milspec, +/area/lunaship/hallway_starboard) + +(1,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +ik +"} +(2,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(3,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(4,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(5,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(6,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(7,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(8,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(9,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(10,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(11,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(12,1,1) = {" +si +si +si +si +si +si +si +si +si +si +Oa +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +tf +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +PU +si +si +si +si +si +si +si +si +si +si +si +"} +(13,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +px +Zm +dl +Wn +ZL +ZL +Wn +LS +TA +Ad +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(14,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +cj +um +wM +wM +GI +KY +wM +wM +pV +si +Yf +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(15,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +qx +wM +wM +Gu +ZL +LS +ZL +PS +LS +ZL +ZM +wM +wM +Cf +Yf +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(16,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +px +ER +ER +mx +wM +Gu +si +si +LS +ZL +LS +ZL +PS +LS +ZL +LS +si +si +ZM +wM +Cf +Yf +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(17,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +rA +wM +Gu +ZL +LS +si +si +LS +ZL +qz +ZL +PS +qz +ZL +LS +si +si +si +si +ZM +wM +nC +UP +Ad +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(18,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +qx +wM +yl +Qu +ZL +ZL +LS +sC +sC +sC +sC +uS +AR +Bd +uS +Ri +Ri +Ri +Ri +si +si +LS +ZL +ZM +wM +Cf +Yf +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(19,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +aF +Ge +Gu +si +LS +ZL +ZL +sC +sC +sC +wK +ui +sC +NH +NH +OK +NH +Ri +UR +oS +Ri +Ri +Ri +LS +ZL +LS +si +ZM +wM +Cf +Yf +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(20,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +aF +Wn +CJ +si +si +LS +sC +sC +sC +UK +kM +nc +FU +sC +pO +Ba +Vm +Hz +Ri +gY +Vp +al +pR +Ri +Ri +Ri +LS +si +si +LS +ZM +wM +Fs +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(21,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +aF +Wn +Wn +Iv +si +sC +sC +sC +rX +jK +Ee +Ke +oc +FU +vs +NH +th +CA +NH +PJ +SF +WC +SF +SF +iu +xj +Ri +Ri +Ri +si +LS +ZL +LS +Du +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(22,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +Wn +Wn +si +Iv +LS +sC +sC +gl +he +PL +RS +tm +iN +vt +JW +xg +ih +rK +OH +pj +Vz +Vx +cU +xJ +nZ +SF +jG +Ri +Ri +Ri +Ri +ZL +LS +vU +Ad +si +si +si +si +si +si +si +si +si +si +si +si +"} +(23,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +Iv +LS +sC +ew +Ee +KQ +gT +vy +EK +zr +sZ +sC +nM +xv +zp +GY +Ri +ts +Oo +NS +mr +rD +Vz +xJ +DJ +od +jG +Ri +Ri +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(24,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +px +ER +ER +ER +Hf +sC +sC +Wz +kL +cM +kF +iv +sC +sC +sC +sC +uS +ny +yL +uS +Ri +Ri +Ri +Ri +Ri +OG +SF +sD +Ri +HW +AS +HC +Ri +Ri +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(25,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +ad +ad +ad +ad +ad +ad +Mw +JK +ad +mj +oD +oD +oD +jd +Qp +As +jd +oD +oD +oD +MM +cQ +cQ +Mb +Xp +cQ +cQ +cQ +cQ +cQ +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(26,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +ad +ad +ad +NQ +cx +cx +cx +ad +hH +aQ +ad +bP +hr +hr +hr +yw +Kn +Fb +Pe +hr +hr +hr +jF +cQ +Np +Lo +TY +XZ +WN +eE +eE +tB +sN +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +"} +(27,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +ad +ad +NQ +NQ +NQ +Ag +Ag +Ag +gZ +gC +ku +ad +bP +hr +qI +hr +vE +BT +bD +Zu +yX +hr +hr +jF +cQ +Jv +qn +aL +Wg +kI +eE +eE +eE +lZ +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +"} +(28,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +ad +NQ +NQ +Ag +Ag +Ag +EG +GQ +gC +gC +ku +ad +bP +jT +Zu +ab +ls +WQ +lW +hA +UN +hr +hr +jF +cQ +vO +zE +ns +YU +kI +eE +eE +eE +mm +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +"} +(29,1,1) = {" +si +si +si +si +si +si +si +si +si +ZT +si +ad +ad +bj +Ag +Ag +EG +gC +gC +gC +gC +gC +ku +ad +bP +Ty +uQ +Kn +jT +ab +uW +qI +Kn +QF +hr +jF +cQ +dN +XO +yQ +Xo +yB +eE +eE +eE +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(30,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +ad +ad +bj +Ag +Ag +sa +gC +gC +gC +gC +gC +ku +ad +bP +Ww +uQ +Kn +vE +hr +lb +Tc +kZ +zB +hr +jF +cQ +YU +YU +PY +VY +OQ +eE +eE +eE +cQ +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(31,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +ad +ad +bj +Ag +Ag +EG +gC +gC +gC +gC +Hv +ku +ad +bP +EP +uQ +Kn +Ar +eO +eO +Xx +Kn +vB +hr +jF +cQ +RX +sU +NR +Xo +wZ +eE +eE +eE +cQ +Qa +si +si +zm +si +si +si +si +si +si +si +si +si +si +"} +(32,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +ad +il +il +Ag +Ag +Ag +EG +Rf +gC +gC +ku +ad +bP +Ar +RQ +eO +VH +Wb +Nf +sx +UN +hr +hr +jF +cQ +ix +RO +RA +vw +dB +hs +IJ +IJ +zW +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +"} +(33,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +ad +ad +il +il +il +Ag +Ag +Ag +gp +gC +ku +ad +bP +hr +Xx +hr +vE +MV +sx +RQ +GP +hr +hr +jF +cQ +Jv +QU +rZ +Wg +Iz +XW +Sy +Qs +YU +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +"} +(34,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +ad +ad +ad +il +uq +uq +uq +ad +Zh +Zy +ad +bP +hr +hr +hr +ZD +Kn +Kn +ZN +hr +hr +hr +jF +cQ +lI +UM +sV +Tb +DP +do +EZ +fT +YU +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +"} +(35,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +ad +ad +ad +ad +ad +ad +Mw +rB +ad +bU +OX +OX +OX +jd +kd +Aa +jd +OX +OX +OX +Vu +cQ +cQ +Mb +ZI +cQ +cQ +cQ +cQ +cQ +cQ +Qa +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(36,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +px +ER +ER +ER +Zm +ve +ve +bx +Fh +oG +Xg +Uj +ve +ve +ve +ve +Wp +Cw +xa +Wp +EF +EF +EF +EF +EF +rv +ng +Ak +aV +Zr +EH +EH +EF +EF +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(37,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +Iv +LS +ve +cK +pN +Fh +Xg +Fh +vi +fE +JM +ve +FV +rh +Ia +jQ +EF +hu +Dm +Wm +vQ +sW +HR +nr +RI +mf +EH +EF +EF +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(38,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +Wn +Wn +si +Iv +LS +ve +iq +na +yH +SC +gj +fc +zJ +nn +KH +wd +aY +vD +ZX +vW +iw +Ez +Bg +gc +hR +EH +EH +EH +EF +EF +EF +ZL +LS +oj +Ad +si +si +si +si +si +si +si +si +si +si +si +si +"} +(39,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +iA +Wn +Wn +Iv +si +ve +ve +ve +KX +yh +ZO +in +iQ +oG +No +Rd +sT +Eg +Rd +jz +wy +GT +Ca +LA +mp +Ih +EF +EF +EF +si +LS +ZL +LS +Du +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(40,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +iA +Wn +CJ +si +si +LS +ve +ve +ve +lP +Ao +fv +ZO +ve +fd +QP +af +Hh +EF +wy +GT +MX +qB +EF +EF +EF +LS +si +si +LS +Ge +wM +Gn +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(41,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +iA +ZM +rn +si +LS +ZL +ZL +ve +bp +ve +LI +bF +ve +Rd +Rd +bK +Rd +EF +iB +lm +EF +EF +EF +LS +ZL +LS +si +Ge +wM +EQ +pT +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(42,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +Dt +wM +tW +Qu +ZL +ZL +LS +ve +ve +ve +ve +Wp +zl +VV +Wp +EF +EF +EF +EF +si +si +LS +ZL +Ge +wM +EQ +pT +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(43,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +gI +wM +rn +ZL +LS +si +si +LS +ZL +qz +ZL +PS +qz +ZL +LS +si +si +si +si +Ge +wM +Mx +by +Ad +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(44,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +px +ER +ER +tl +wM +rn +si +si +LS +ZL +LS +ZL +PS +LS +ZL +LS +si +si +Ge +wM +EQ +pT +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(45,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +Dt +wM +wM +rn +ZL +LS +ZL +PS +LS +ZL +Ge +wM +wM +EQ +pT +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(46,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +zG +SN +wM +wM +GI +Xn +wM +wM +Jn +si +pT +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(47,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +px +Hf +JT +Wn +ZL +ZL +Wn +LS +YD +Ad +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(48,1,1) = {" +si +si +si +si +si +si +si +si +si +si +mV +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +xd +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +iK +si +si +si +si +si +si +si +si +si +si +si +"} +(49,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(50,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(51,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(52,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(53,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(54,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(55,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(56,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(57,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(58,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(59,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} +(60,1,1) = {" +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +si +"} diff --git a/maps/offmap_vr/talon/talon_v2.dmm b/maps/offmap_vr/talon/talon_v2.dmm index fae0f00c0f..a9bf39d9f9 100644 --- a/maps/offmap_vr/talon/talon_v2.dmm +++ b/maps/offmap_vr/talon/talon_v2.dmm @@ -1252,7 +1252,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/catwalk_plated/dark, +/obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/fore) "dw" = ( @@ -1559,6 +1559,7 @@ /area/talon_v2/central_hallway/fore) "eC" = ( /obj/structure/closet/walllocker_double/hydrant/west, +/obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/engineering/star_store) "eD" = ( @@ -1852,7 +1853,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/effect/catwalk_plated/dark, +/obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/fore) "fi" = ( @@ -1962,6 +1963,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/light, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/cap_room) "fA" = ( @@ -2195,7 +2197,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated/dark, +/obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/fore) "gu" = ( @@ -3375,7 +3377,7 @@ d2 = 8; icon_state = "1-8" }, -/obj/effect/catwalk_plated/dark, +/obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, /area/shuttle/talonboat) "kw" = ( @@ -3461,7 +3463,7 @@ dir = 5 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/catwalk_plated/dark, +/obj/effect/catwalk_plated/techfloor, /turf/simulated/floor/plating, /area/shuttle/talonboat) "kJ" = ( @@ -4215,11 +4217,11 @@ "nn" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway) "no" = ( @@ -4684,6 +4686,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/workroom) +"oP" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) "oS" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -5585,9 +5594,6 @@ /turf/simulated/floor/plating, /area/talon_v2/engineering/port_store) "rQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/structure/toilet, /turf/simulated/floor/tiled/white, /area/talon_v2/crew_quarters/restrooms) @@ -5702,10 +5708,10 @@ d2 = 4; icon_state = "1-4" }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/brig) "sk" = ( @@ -5778,10 +5784,10 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway) "ss" = ( @@ -6024,11 +6030,11 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/star) "tb" = ( @@ -6425,6 +6431,22 @@ "up" = ( /turf/simulated/wall/rshull, /area/talon_v2/anomaly_storage) +"uq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) "uu" = ( /obj/structure/hull_corner/long_vert{ dir = 9 @@ -6880,6 +6902,9 @@ dir = 10 }, /obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) "vR" = ( @@ -7911,6 +7936,9 @@ /obj/machinery/disposal/wall{ dir = 8 }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/med_room) "zv" = ( @@ -7991,6 +8019,9 @@ /obj/machinery/disposal/wall{ dir = 4 }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/sec_room) "zI" = ( @@ -8285,11 +8316,11 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/fore) "AQ" = ( @@ -8644,6 +8675,9 @@ /obj/item/device/radio/off{ channels = list("Talon" = 1) }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/pilot_room) "Cf" = ( @@ -8698,7 +8732,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -8706,6 +8739,7 @@ /obj/structure/sign/directions/engineering/atmospherics{ pixel_x = -32 }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway) "CB" = ( @@ -9188,6 +9222,15 @@ }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/pilot_room) +"Em" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) "En" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9495,12 +9538,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/catwalk_plated, /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/star) "Ff" = ( @@ -9883,7 +9926,6 @@ "Gm" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9892,6 +9934,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/port) "Gn" = ( @@ -10418,7 +10461,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/junction, /obj/structure/sign/directions/engineering{ pixel_x = 32; @@ -10439,6 +10481,7 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway) "HN" = ( @@ -10470,7 +10513,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/junction{ dir = 2; icon_state = "pipe-j2" @@ -10485,6 +10527,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway) "HU" = ( @@ -10933,7 +10976,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/catwalk_plated, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/fore) "IY" = ( @@ -11157,6 +11200,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/machinery/light/small, /turf/simulated/floor/tiled/white, /area/talon_v2/crew_quarters/restrooms) "JJ" = ( @@ -11947,13 +11991,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/sign/department/medbay{ pixel_y = 32 }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/star) "LV" = ( @@ -12408,6 +12452,9 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/structure/closet/walllocker_double/survival/south, +/obj/machinery/light{ + dir = 8 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/talonboat) "Nw" = ( @@ -12431,13 +12478,15 @@ /area/shuttle/talonboat) "NB" = ( /obj/structure/closet/walllocker_double/south, -/obj/machinery/light, /obj/item/weapon/extinguisher, /obj/item/stack/cable_coil/green, /obj/item/stack/cable_coil/green, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/effect/map_helper/airlock/atmos/pump_out_internal, /obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/handrail{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/talonboat) "NC" = ( @@ -12515,6 +12564,9 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/structure/closet/walllocker_double/survival/south, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/talonboat) "NO" = ( @@ -14459,7 +14511,6 @@ "TW" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14473,6 +14524,7 @@ dir = 4; icon_state = "pipe-c" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/port) "TX" = ( @@ -14846,7 +14898,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14855,6 +14906,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/port) "Vh" = ( @@ -15543,7 +15595,6 @@ d2 = 8; icon_state = "2-8" }, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -15553,6 +15604,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/fore) "Xo" = ( @@ -15700,10 +15752,10 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated, /obj/structure/disposalpipe/junction{ dir = 8 }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/talon_v2/central_hallway/star) "XS" = ( @@ -22911,7 +22963,7 @@ xL LL xB OQ -LT +oP kk LT OQ @@ -25715,7 +25767,7 @@ ZC WL yt EN -Rs +dT Pe pb Xy @@ -25880,7 +25932,7 @@ lr lZ SQ Xn -mc +uq mc mk an @@ -26732,7 +26784,7 @@ tj mk ru sD -DG +Em DG qb Fd diff --git a/maps/southern_cross/southern_cross-3.dmm b/maps/southern_cross/southern_cross-3.dmm index 06a30e5887..0105184fc2 100644 --- a/maps/southern_cross/southern_cross-3.dmm +++ b/maps/southern_cross/southern_cross-3.dmm @@ -1404,6 +1404,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aftstarboardcentral) +"btH" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) "bvr" = ( /turf/simulated/wall, /area/maintenance/solars/forestarboardsolar) @@ -1471,16 +1478,23 @@ /turf/simulated/floor/plating, /area/maintenance/solars/forestarboardsolar) "bzb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "bzs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -1510,6 +1524,9 @@ /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, /area/maintenance/solars/forestarboardsolar) +"bBg" = ( +/turf/simulated/wall, +/area/crew_quarters/thirddeck/vrroom) "bCU" = ( /obj/structure/cable/yellow, /turf/simulated/floor/airless, @@ -1719,9 +1736,11 @@ /turf/simulated/floor/plating, /area/maintenance/solars/foreportsolar) "bJT" = ( -/obj/structure/bed/chair/wood, /obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) @@ -2583,6 +2602,12 @@ /obj/effect/wingrille_spawn/reinforced, /turf/simulated/floor/plating, /area/maintenance/solars/forestarboardsolar) +"cDl" = ( +/obj/structure/sign/securearea{ + icon_state = "restroom" + }, +/turf/simulated/wall, +/area/crew_quarters/toilet) "cDq" = ( /obj/structure/cable/yellow{ d2 = 2; @@ -3072,12 +3097,14 @@ /turf/simulated/floor/plating, /area/maintenance/thirddeck/foreport) "dbY" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/floor_decal/corner/orange/border{ - dir = 10 +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "dcT" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/effect/floor_decal/industrial/outline/yellow, @@ -3269,14 +3296,16 @@ /turf/simulated/floor/bluegrid, /area/ai/ai_upload) "dnd" = ( -/obj/structure/table/woodentable, -/obj/item/device/paicard, -/obj/random/action_figure, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "dog" = ( /obj/structure/table/standard, /obj/item/weapon/aiModule/oxygen, @@ -3837,6 +3866,12 @@ /area/maintenance/thirddeck/dormsport{ name = "Third Deck Aft Port Maintenance" }) +"dOd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "dOD" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -4002,6 +4037,13 @@ /turf/simulated/floor/tiled/techfloor, /area/ai/ai_cyborg_station) "dSP" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, /turf/simulated/floor/carpet/retro_red, /area/crew_quarters/cafeteria) "dSZ" = ( @@ -5806,13 +5848,14 @@ /turf/simulated/wall/r_wall, /area/hallway/primary/thirddeck/starboard) "fhs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/cafeteria) +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "fiE" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/thirddeck/starboard) @@ -6403,9 +6446,20 @@ name = "Third Deck Aft Port Maintenance" }) "fDV" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/carpet, -/turf/simulated/floor/carpet/retro_red, +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/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/crew_quarters/cafeteria) "fDZ" = ( /obj/effect/floor_decal/industrial/warning{ @@ -7392,10 +7446,23 @@ /turf/simulated/floor/tiled, /area/crew_quarters/seconddeck/gym) "gnG" = ( -/obj/machinery/hologram/holopad, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/machinery/door/airlock/glass{ + name = "VR-Lobby" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/thirddeck/vrroom) "gnX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -8107,16 +8174,13 @@ /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/sleep/vistor_room_12) "hiF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "hjc" = ( /obj/machinery/door/airlock/external{ @@ -9352,6 +9416,9 @@ /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/effect/floor_decal/corner/orange/diagonal, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "iCa" = ( @@ -10972,6 +11039,15 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) +"kpS" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/structure/table/glass, +/obj/item/device/paicard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) "kpZ" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; @@ -11726,12 +11802,8 @@ name = "Third Deck Aft Maintenance" }) "lmX" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - layer = 4; - pixel_y = -32 - }, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/dark, +/obj/random/plushie, +/turf/simulated/floor/wood, /area/crew_quarters/cafeteria) "lnk" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -13436,8 +13508,10 @@ d2 = 2; icon_state = "0-2" }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, /area/crew_quarters/cafeteria) "mXH" = ( /obj/structure/filingcabinet, @@ -13558,14 +13632,12 @@ /turf/simulated/floor/tiled, /area/bridge) "naz" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 +/obj/machinery/light{ + dir = 4; + layer = 3 }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "naW" = ( /obj/structure/table/standard, /obj/machinery/power/apc{ @@ -14620,6 +14692,9 @@ pixel_y = -22 }, /obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "nWq" = ( @@ -14810,16 +14885,14 @@ /turf/simulated/floor/plating, /area/crew_quarters/heads/sc/sd) "odE" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/lino, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "oeX" = ( /obj/machinery/door/firedoor/glass, @@ -15798,6 +15871,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aftstarboardcentral) +"oYU" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) "oZi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -16740,14 +16820,25 @@ name = "Third Deck Aft Maintenance" }) "pVY" = ( -/obj/machinery/media/jukebox, -/obj/effect/floor_decal/carpet{ - dir = 8 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/effect/floor_decal/carpet{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/lino, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "pWc" = ( /obj/structure/toilet{ @@ -16870,21 +16961,11 @@ name = "Third Deck Aft Maintenance" }) "qew" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ - dir = 1 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, -/obj/effect/floor_decal/carpet{ +/obj/effect/floor_decal/corner_techfloor_gray{ dir = 9 }, -/turf/simulated/floor/carpet/retro_red, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "qff" = ( /obj/machinery/computer/arcade, /obj/machinery/camera/network/third_deck{ @@ -16958,6 +17039,17 @@ /obj/effect/floor_decal/carpet{ dir = 1 }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/carpet/retro_red, /area/crew_quarters/cafeteria) "qjP" = ( @@ -17284,13 +17376,10 @@ /turf/simulated/floor/plating, /area/maintenance/thirddeck/dormsstarboard) "qxM" = ( -/obj/structure/bed/chair/wood{ - dir = 1 +/obj/machinery/floor_light{ + anchored = 1 }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "qyy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -17322,13 +17411,11 @@ /turf/simulated/floor/wood, /area/crew_quarters/sleep/vistor_room_3) "qzs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = null; - req_one_access = null - }, -/obj/machinery/door/firedoor/border_only, +/obj/structure/catwalk, /turf/simulated/floor/plating, -/area/crew_quarters/cafeteria) +/area/maintenance/thirddeck/dormsport{ + name = "Third Deck Aft Port Maintenance" + }) "qzw" = ( /obj/structure/table/standard, /obj/random/tech_supply, @@ -17351,17 +17438,22 @@ name = "Third Deck Aft Maintenance" }) "qzT" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 +/obj/machinery/door/airlock/maintenance{ + req_access = null; + req_one_access = null }, -/turf/simulated/floor/carpet/retro_red, -/area/crew_quarters/cafeteria) +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/maintenance/thirddeck/dormsport{ + name = "Third Deck Aft Port Maintenance" + }) "qAc" = ( /obj/structure/table/woodentable, /obj/item/weapon/material/kitchen/utensil/spoon{ pixel_x = 2 }, /obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/device/starcaster_news, /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) "qAk" = ( @@ -17456,17 +17548,20 @@ /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) "qGE" = ( -/obj/effect/floor_decal/corner/orange/border{ - dir = 4 +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "vrroom" }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/structure/sign/nosmoking_1, +/turf/simulated/floor/plating, +/area/crew_quarters/thirddeck/vrroom) "qHj" = ( /obj/structure/table/woodentable, /obj/item/weapon/material/kitchen/utensil/fork, /obj/item/weapon/material/kitchen/utensil/spoon{ pixel_x = 2 }, +/obj/random/action_figure, /turf/simulated/floor/wood, /area/crew_quarters/cafeteria) "qHU" = ( @@ -17644,17 +17739,12 @@ name = "Third Deck Aft Maintenance" }) "qSn" = ( -/obj/structure/window/reinforced, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/floor_decal/carpet{ - dir = 8 - }, /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ - dir = 10 + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 }, /turf/simulated/floor/carpet/retro_red, /area/crew_quarters/cafeteria) @@ -17675,13 +17765,22 @@ /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aftdoorm) "qSZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 }, -/obj/effect/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/cafeteria) +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/obj/structure/prop/dominator/green{ + pixel_y = 15 + }, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "qTC" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, @@ -17982,57 +18081,62 @@ /turf/simulated/wall, /area/maintenance/thirddeck/dormsatmos) "rmQ" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/floor_decal/corner/orange/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "rng" = ( -/obj/machinery/computer/security/telescreen/entertainment{ +/obj/machinery/vr_sleeper{ + icon_state = "body_scanner_0" + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/crew_quarters/thirddeck/vrroom) +"rnG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 4; + layer = 3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) +"rnN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/windowtint{ + pixel_x = 26; + pixel_y = 11; + id = "vrroom" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + name = "light switch "; + pixel_x = 26; + pixel_y = -11 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) +"roG" = ( +/obj/machinery/ai_status_display{ pixel_y = 32 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) -"rnG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/table/hardwoodtable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen{ + pixel_y = -3 }, -/obj/machinery/light{ - dir = 1 +/obj/item/weapon/pen, +/obj/item/weapon/tape_roll{ + pixel_y = 14; + pixel_x = -9 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) -"rnN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) -"roG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "rpc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -18283,16 +18387,16 @@ name = "Third Deck Aft Maintenance" }) "rCL" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 +/obj/structure/cryofeed{ + dir = 4; + pixel_y = 0; + pixel_x = -31 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 +/obj/machinery/vr_sleeper{ + icon_state = "body_scanner_0" }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/tiled/milspec/raised, +/area/crew_quarters/thirddeck/vrroom) "rDw" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -18562,9 +18666,11 @@ /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aftportcentral) "rTn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/crew_quarters/cafeteria) +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "rTI" = ( /obj/effect/floor_decal/corner/orange/diagonal, /turf/simulated/floor/tiled, @@ -18632,7 +18738,7 @@ /area/crew_quarters/sleep/vistor_room_2) "rWM" = ( /turf/simulated/wall/r_wall, -/area/crew_quarters/cafeteria) +/area/crew_quarters/thirddeck/vrroom) "rXX" = ( /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped/stokcube, /obj/random/trash, @@ -19182,11 +19288,12 @@ /turf/simulated/wall/r_wall, /area/crew_quarters/sleep/vistor_room_1) "sxn" = ( -/obj/effect/floor_decal/corner/orange/border{ - dir = 6 +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced/polarized{ + id = "vrroom" }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/plating, +/area/crew_quarters/thirddeck/vrroom) "sxw" = ( /obj/structure/railing{ dir = 4 @@ -19221,15 +19328,15 @@ /turf/simulated/floor/carpet, /area/crew_quarters/seconddeck/gym) "sAM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, /obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -28 + pixel_x = -25; + dir = 4 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "sBY" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -19313,8 +19420,21 @@ /turf/simulated/floor/carpet/oracarpet, /area/maintenance/thirddeck/dormsatmos) "sGX" = ( -/turf/simulated/floor/tiled/eris/steel/bar_dance, -/area/crew_quarters/cafeteria) +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) +"sHc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "sHv" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 @@ -19597,46 +19717,101 @@ /turf/simulated/floor/plating, /area/crew_quarters/cafeteria) "sUk" = ( -/obj/machinery/light, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_y = -27 - }, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) -"sUG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Port Civ Bar 1"; + c_tag = "Third Deck - VR Lobby"; dir = 1 }, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) -"sUX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/vr_sleeper{ + icon_state = "body_scanner_0" }, -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/tiled/milspec/raised, +/area/crew_quarters/thirddeck/vrroom) +"sUG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) +"sUX" = ( +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/obj/structure/table/hardwoodtable, +/obj/item/device/paicard/typeb, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "sVv" = ( /obj/item/toy/figure/geneticist, /turf/simulated/floor/plating, /area/maintenance/thirddeck/dormsstarboard) "sVK" = ( -/obj/effect/floor_decal/corner/orange/border, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 10 + }, +/obj/structure/table/rack/shelf, +/obj/item/weapon/towel/random{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/weapon/towel/random{ + pixel_y = -5; + pixel_x = 6 + }, +/obj/item/weapon/towel/random{ + pixel_x = -5 + }, +/obj/item/weapon/towel/random{ + pixel_x = 6; + pixel_y = 0 + }, +/obj/item/weapon/towel/random{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/towel/random{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/towel/random{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/weapon/towel/random{ + pixel_y = -5; + pixel_x = 6 + }, +/obj/item/weapon/towel/random{ + pixel_x = -5 + }, +/obj/item/weapon/towel/random{ + pixel_x = 6; + pixel_y = 0 + }, +/obj/item/weapon/towel/random{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/towel/random{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/crew_quarters/thirddeck/vrroom) "sVR" = ( -/obj/machinery/hologram/holopad, -/obj/structure/table/woodentable, -/obj/random/plushie, -/obj/item/device/starcaster_news, -/turf/simulated/floor/wood, +/obj/machinery/floor_light{ + anchored = 1 + }, +/obj/machinery/floor_light{ + anchored = 1 + }, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "sVX" = ( /obj/machinery/light{ @@ -19646,7 +19821,8 @@ pixel_x = 36; pixel_y = -6 }, -/turf/simulated/floor/wood, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "sWb" = ( /obj/random/tech_supply, @@ -19892,7 +20068,7 @@ pixel_x = -32 }, /turf/simulated/wall, -/area/crew_quarters/cafeteria) +/area/crew_quarters/thirddeck/vrroom) "tgj" = ( /turf/simulated/wall, /area/hallway/primary/thirddeck/central) @@ -19948,13 +20124,24 @@ /turf/simulated/floor/tiled/freezer, /area/crew_quarters/sleep/vistor_room_6) "thN" = ( -/obj/effect/floor_decal/carpet{ - dir = 8 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/carpet{ +/obj/machinery/camera/network/third_deck{ + c_tag = "Third Deck - Port Civ Bar 1"; dir = 4 }, -/turf/simulated/floor/lino, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/securearea{ + icon_state = "atmos_waste"; + desc = "VR-Room under construction, not all of it's features have been implemented yet."; + name = "A warning sign which reads 'UNDER CONSTRUCTION'."; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "tia" = ( /obj/machinery/newscaster, @@ -20025,28 +20212,15 @@ /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aft) "tle" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/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/simulated/floor/lino, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "tls" = ( /obj/structure/closet/secure_closet/personal/cabinet, @@ -20149,18 +20323,10 @@ name = "Third Deck Aft Maintenance" }) "ttw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 }, +/obj/effect/floor_decal/corner/orange/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "ttG" = ( @@ -20230,7 +20396,10 @@ /obj/structure/reagent_dispensers/water_cooler/full{ dir = 1 }, -/turf/simulated/floor/wood, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, /area/crew_quarters/cafeteria) "tyt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20441,12 +20610,20 @@ /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) "tJG" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8; + layer = 3 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "tKC" = ( /turf/simulated/wall, /area/crew_quarters/sleep/vistor_room_3) @@ -20504,11 +20681,13 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, -/obj/effect/floor_decal/corner/orange/diagonal, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, /area/crew_quarters/cafeteria) "tOU" = ( /obj/machinery/shower, @@ -20593,19 +20772,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/carpet{ - dir = 8 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/obj/effect/floor_decal/carpet{ - dir = 10 - }, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/lino, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "tTo" = ( /obj/structure/cable/green{ @@ -20613,7 +20787,9 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/floor_light{ + anchored = 1 + }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "tTr" = ( @@ -20622,15 +20798,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, +/obj/effect/floor_decal/corner/orange/diagonal, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 }, @@ -20947,6 +21115,13 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) +"ueC" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/structure/closet/lasertag/blue, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/thirddeck/aftdoorm) "ueI" = ( /obj/machinery/door/airlock{ name = "Unit 3" @@ -21134,13 +21309,24 @@ /obj/machinery/floodlight, /turf/simulated/floor/plating, /area/maintenance/substation/dorms) +"uqx" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/computer/security/telescreen/entertainment{ + layer = 4; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) "urA" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -28 }, -/obj/effect/floor_decal/corner/orange/diagonal, /obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, /area/crew_quarters/cafeteria) "urV" = ( /obj/machinery/door/firedoor/glass, @@ -21148,19 +21334,19 @@ /turf/simulated/floor/plating, /area/bridge/meeting_room) "urW" = ( -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/entertainment{ - layer = 4; - pixel_y = -32 - }, /obj/effect/floor_decal/corner/orange/diagonal, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -22 + }, /turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "usi" = ( /obj/machinery/atm{ pixel_x = 30 }, -/turf/simulated/floor/wood, +/obj/effect/floor_decal/corner/orange/diagonal, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "usq" = ( /obj/structure/cable{ @@ -21600,12 +21786,20 @@ /turf/simulated/floor/tiled/freezer, /area/crew_quarters/toilet) "uQd" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8; + layer = 3 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "uQw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21971,6 +22165,7 @@ /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, +/obj/structure/closet/lasertag/red, /turf/simulated/floor/tiled/dark, /area/hallway/primary/thirddeck/aftdoorm) "veo" = ( @@ -23452,9 +23647,7 @@ name = "Third Deck Aft Maintenance" }) "wit" = ( -/obj/effect/floor_decal/carpet{ - dir = 4 - }, +/obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet/retro_red, /area/crew_quarters/cafeteria) "wiE" = ( @@ -23839,18 +24032,17 @@ /turf/simulated/floor/carpet/blucarpet, /area/crew_quarters/sleep/vistor_room_10) "wAN" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/light{ + dir = 8 }, -/obj/effect/floor_decal/carpet{ - dir = 4 +/obj/structure/sign/securearea{ + icon_state = "atmos_waste"; + desc = "VR-Room under construction, not all of it's features have been implemented yet."; + name = "A warning sign which reads 'UNDER CONSTRUCTION'."; + pixel_x = -32 }, -/obj/effect/floor_decal/carpet, -/obj/effect/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/carpet/retro_red, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "wAW" = ( /obj/structure/table/bench/wooden, @@ -24366,6 +24558,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aftdoorm) +"wTp" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) "wTu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -24411,33 +24610,28 @@ /turf/simulated/floor/tiled, /area/hallway/primary/thirddeck/aftdoorm) "wVH" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/glowstick, -/obj/item/device/flashlight/glowstick/orange, -/obj/item/device/flashlight/glowstick/red, -/obj/item/device/flashlight/glowstick/orange, -/obj/item/weapon/towel{ - color = "#90ee90"; - name = "green towel" +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/carpet{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/lino, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "wVM" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 }, -/obj/effect/floor_decal/corner/orange/border{ - dir = 8 +/obj/machinery/vending/wallmed1{ + pixel_x = -25; + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafeteria) +/turf/simulated/floor/wood/alt/parquet, +/area/crew_quarters/thirddeck/vrroom) "wXo" = ( /obj/machinery/alarm{ dir = 8; @@ -25679,7 +25873,10 @@ /obj/item/clothing/head/cakehat{ pixel_y = 11 }, -/turf/simulated/floor/wood, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, /area/crew_quarters/cafeteria) "xVw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25817,19 +26014,16 @@ /turf/simulated/floor/tiled/freezer, /area/crew_quarters/sleep/vistor_room_11) "ydi" = ( +/obj/effect/floor_decal/corner/orange/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/table/woodentable, -/obj/item/device/flashlight/glowstick, -/obj/item/device/flashlight/glowstick/orange, -/obj/item/device/flashlight/glowstick/yellow, -/obj/item/device/flashlight/glowstick/blue, -/obj/item/weapon/towel, -/obj/effect/floor_decal/carpet{ - dir = 8 +/obj/item/weapon/paper{ + desc = ""; + info = "Pain sustained in Virtual Reality will be sustained in the real world."; + name = "VR Pod Disclaimer" }, -/obj/effect/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/lino, +/turf/simulated/floor/tiled, /area/crew_quarters/cafeteria) "ydk" = ( /obj/effect/decal/cleanable/greenglow, @@ -54656,18 +54850,18 @@ tcw oQl pfE pvH -xPk -ieb -upr -rWM -rmQ +sJU +oEE +qzs +bBg +rCL uQd wVM rCL sAM tJG -dbY -wzy +rCL +bBg iaG tQW unk @@ -54914,18 +55108,18 @@ aoy xCQ ydV rGv -xPk -aFa -upr -rWM +sJU +ieb +qzs +bBg rng -sGX -sGX -sGX -sGX -sGX -lmX -wzy +sUG +rmQ +rng +sUG +rmQ +rng +bBg tqh tRN uob @@ -55172,18 +55366,18 @@ tcw qrB rfG wGk -rWM -rWM +sJU +aFa qzs -rWM -rnG -sGX -sGX -sGX -sGX -sGX +bBg +rng +sUG +rmQ +rng +sUG +rmQ sUk -wzy +bBg ybA gAU cHm @@ -55430,18 +55624,18 @@ tcw eHT nCY pxx -wzy -qew +sJU +sJU qzT -qSn -rnN +bBg +rng rTn +dOd +rng rTn -rTn -rTn -rTn -sUG -wzy +dOd +rng +bBg xpa tRV uoZ @@ -55691,15 +55885,15 @@ pxJ wzy qjG dSP -fDV -roG -sGX -sGX -sGX -sGX -sGX +bBg +qSZ +dbY +qew +dnd +sHc +fhs sUX -wzy +bBg kGY nlE upJ @@ -55948,14 +56142,14 @@ pfP pzb wzy qff -dSP -fDV +wit +bBg roG +rnG +rnN +bzb sGX -sGX -sGX -sGX -sGX +naz sVK tgc quN @@ -56205,17 +56399,17 @@ twv nCY pzH wzy -qjG -dSP -fDV -hiF -qGE -qGE -gnG -qGE -qGE +qjx +qSn +bBg sxn -naz +qGE +bBg +gnG +bBg +sxn +sxn +bBg mXD tOS urA @@ -56463,18 +56657,18 @@ rSm nCY aTo wzy -qjx -wit +kpS +rTI wAN tle ydi -odE +hiF pVY -odE +fDV wVH odE thN -thN +odE tSO nVn wzy @@ -56723,16 +56917,16 @@ gKj sUf iBE uKq -qSZ +uKq rpc rTI rTI rTI rTI -rTI -rTI -rTI -rTI +oYU +qxM +qxM +sVR tTo urW wzy @@ -56988,11 +57182,11 @@ smF smF smF bJT -dnd qxM -smF -bzb -smF +qxM +sVR +tTo +uqx wzy wxU aaM @@ -57245,12 +57439,12 @@ sxE gZM sxE xvg -dfh +wTp +qxM +qxM sVR -qWl -xvg -fhs -xvg +tTo +rTI xVf wxU dQi @@ -57503,9 +57697,9 @@ kfM siv fKC xvg -xvg +btH sVX -xvg +rTI ttw tTr usi @@ -57753,7 +57947,7 @@ nYl nCY pAS fZu -xvg +lmX xvg qXt lOq @@ -62149,7 +62343,7 @@ pMP ryq wDF tat -tpf +cDl tGp uee qvB @@ -63445,7 +63639,7 @@ tpf rHD rZO tpf -vdm +ueC vwH vSz vXU diff --git a/maps/southern_cross/southern_cross-5.dmm b/maps/southern_cross/southern_cross-5.dmm index f1b0bde60f..d9f9222929 100644 --- a/maps/southern_cross/southern_cross-5.dmm +++ b/maps/southern_cross/southern_cross-5.dmm @@ -1,2731 +1,93922 @@ -"aa" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"ab" = (/obj/structure/table/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"ac" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"ad" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ae" = (/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"af" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ag" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"ah" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"ai" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gym"; dir = 1},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"aj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"al" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"am" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"an" = (/obj/structure/closet/secure_closet/guncabinet,/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"ao" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"ap" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/computer/cryopod/gateway{pixel_y = 30},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"aq" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/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/main_outpost{c_tag = "MO Left Wing - Hallway 4"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ar" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Left Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"as" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"at" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"au" = (/obj/structure/closet/hydrant{pixel_x = -32},/obj/item/clothing/glasses/meson,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"av" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"aw" = (/obj/machinery/vending/sol{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ax" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ay" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"az" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"aA" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/material/ashtray,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"aB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"aD" = (/obj/effect/mist,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/sauna) -"aE" = (/obj/structure/fence/cut/large,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"aF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) -"aG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"aI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"aK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"aL" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"aM" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"aN" = (/obj/machinery/light_switch{dir = 8; pixel_x = 23; pixel_y = 12},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aO" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) -"aP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"aQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"aR" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"aS" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"aT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/security) -"aV" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"aW" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"aX" = (/obj/structure/cable/cyan{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/industrial/warning/corner{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"aY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"aZ" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar/red,/obj/item/frame/light,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"ba" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/emergency_storage) -"bb" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main5_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main5_airlock_exterior"; tag_interior_door = "main5_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"bc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"bf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"bg" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"bh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"bi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"bj" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor_switch/oneway{id = "mining_north"; name = "mining conveyor"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"bk" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) -"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/surface/outpost/security) -"bm" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"bo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"bp" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/engineering{name = "Engineering Outpost Substation"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/smes) -"bq" = (/obj/structure/fence/post{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"br" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"bs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/window/reinforced{dir = 8},/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"bt" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"bu" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/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,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"bv" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"bw" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"bx" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/status_display{pixel_y = -32},/obj/item/weapon/material/ashtray/plastic,/obj/random/cigarettes,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"by" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"bz" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"bD" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"bE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/item/weapon/extinguisher/mini,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"bG" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) -"bH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/purple/border{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"bI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"bK" = (/obj/item/device/universal_translator,/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"bL" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"bM" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"bN" = (/turf/simulated/wall,/area/surface/outpost/mining_main/storage) -"bO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_1) -"bP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/mountains) -"bQ" = (/obj/structure/boxingropeenter{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"bR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"bS" = (/obj/structure/table/glass,/obj/item/device/paicard,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"bT" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"bV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"bW" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor,/obj/structure/bedsheetbin,/obj/effect/floor_decal/corner/white/border,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"bX" = (/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/structure/window/reinforced{dir = 8},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"bY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"bZ" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"ca" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"cb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/surface/outpost/security) -"cc" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"cd" = (/obj/structure/boxingrope{layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"ce" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"cf" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"cg" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"ch" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ci" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"cj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ck" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) -"cl" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/gear_painter,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"cm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cn" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"co" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend,/obj/effect/floor_decal/steeldecal/steel_decals9,/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{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cp" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"cq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"cr" = (/turf/simulated/wall,/area/surface/outpost/mining_main/emergencystorage) -"cs" = (/obj/structure/table/standard,/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/light{dir = 8},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"cu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"cv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"cx" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"cy" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"cz" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"cA" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"cB" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"cD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"cE" = (/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/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) -"cF" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/ocean) -"cG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"cI" = (/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = 22},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"cJ" = (/obj/effect/zone_divider,/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) -"cK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ1_airlock_control"; pixel_x = -26; pixel_y = 26; tag_exterior_door = "civ1_airlock_exterior"; tag_interior_door = "civ1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"cL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"cM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"cO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"cP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"cQ" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"cR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"cS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"cT" = (/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"cU" = (/obj/machinery/mineral/equipment_vendor/survey,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"cW" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"cX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"cY" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Exploration Prep"; req_access = null; req_one_access = list(43,67)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) -"cZ" = (/obj/structure/snowman{name = "Frosty"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"da" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"db" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"dc" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"dd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"de" = (/obj/machinery/vending/medical{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Port"},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"df" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"dg" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dh" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"dk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dm" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"dn" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"do" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 4"; dir = 1; name = "MO Right Wing - Hallway Three"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"dq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"dr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"dt" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"du" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_4) -"dv" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"dw" = (/obj/structure/table/steel,/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},/obj/item/weapon/storage/box/nifsofts_mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"dy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_6) -"dA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"dB" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{dir = 4; id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"dE" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 2"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 100},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"dF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"dG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) -"dH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"dI" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"dJ" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"dK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"dL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dM" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"dN" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"dO" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"dP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/smes) -"dQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room Internal Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"dR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"dT" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/obj/machinery/meter,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dU" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"dV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"dW" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/item/weapon/dice/d20,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"dX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"dY" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"dZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"ea" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"eb" = (/obj/structure/fence/corner{dir = 10},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"ec" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"ef" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 6"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eg" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"eh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/one) -"ej" = (/obj/machinery/vending/loadout/loadout_misc,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 1"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ek" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"el" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"em" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"en" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"eo" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ep" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"eq" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"er" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"es" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"et" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/computer/guestpass{pixel_y = 28},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/tools) -"ev" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"ew" = (/obj/machinery/space_heater,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ex" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"ez" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eB" = (/obj/machinery/conveyor{id = "mining_north"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"eC" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"eD" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/vending/giftvendor,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eE" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"eF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"eG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"eH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"eI" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/dorms) -"eJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eK" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"eL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"eM" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"eN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"eO" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"eP" = (/turf/simulated/wall,/area/surface/outpost/mining_main) -"eQ" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"eR" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"eS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"eT" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/purple/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"eU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"eV" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"eW" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"eX" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"eY" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"fa" = (/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/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"fb" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"fc" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"fd" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"fe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ff" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; landmark_tag = "outpost_nw"; name = "Northwest Outpost Perimiter"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"fg" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/orange/border{dir = 10},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/wormcan/sickly{pixel_x = 3},/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 2"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"fi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"fj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"fl" = (/obj/item/weapon/banner/virgov,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"fm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"fn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"fo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"fp" = (/turf/simulated/floor/water/shoreline,/area/surface/outside/ocean) -"fq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"fr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"fs" = (/obj/structure/table/glass,/obj/item/clothing/shoes/swimmingfins,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ft" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"fu" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"fv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"fw" = (/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/surface/outpost/main/corridor) -"fx" = (/turf/simulated/floor/tiled,/area/surface/outpost/security) -"fy" = (/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"fz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"fA" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"fB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"fC" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"fD" = (/obj/machinery/mineral/input,/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"fE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) -"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"fG" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"fH" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 3"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"fI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Airlock"; dir = 9; name = "Engineering_Outpost"; network = list("Engineering")},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"fJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/effect/floor_decal/industrial/warning/dust{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"fK" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"fL" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"fM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"fN" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"fO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"fP" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(1)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_interior"; locked = 1; name = "Security Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) -"fQ" = (/turf/simulated/wall,/area/surface/outside/path/plains) -"fS" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"fT" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"fU" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"fV" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"fY" = (/obj/structure/table/rack,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/pickaxe,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"fZ" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ga" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"gb" = (/turf/simulated/floor/reinforced,/area/surface/outpost/main/exploration/containment) -"gc" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"gd" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ge" = (/obj/item/clothing/suit/caution,/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},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"gf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"gg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"gh" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"gj" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/search_and_rescue) -"gk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_upper) -"gl" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"gm" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"gn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"go" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"gp" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"gr" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"gs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/structure/table/standard,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"gu" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"gw" = (/obj/machinery/fusion_fuel_compressor,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Fuel Storage"; dir = 6; name = "Engineering_Outpost"; network = list("Engineering")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"gx" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"gy" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1438; id = "rust_cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"gz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"gB" = (/obj/machinery/button/windowtint{id = "sauna_tint1"; pixel_x = -5; pixel_y = 22},/obj/machinery/button/windowtint{id = "sauna_tint2"; pixel_x = 6; pixel_y = 22},/obj/effect/floor_decal/spline/fancy/wood/corner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"gC" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"gD" = (/turf/simulated/floor/water/shoreline{dir = 9},/area/surface/outside/ocean) -"gE" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"gG" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/plains/mountains) -"gH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"gI" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"gJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/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{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"gK" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) -"gL" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"gM" = (/obj/structure/table/bench/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"gN" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"gO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) -"gP" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/orange/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"gQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"gR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"gS" = (/obj/structure/closet/crate/freezer/rations,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"gT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"gV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"gW" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"gX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"gZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ha" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"hb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) -"hd" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"he" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 1"; dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"hg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"hh" = (/obj/structure/closet/secure_closet/guncabinet{req_access = newlist(); req_one_access = list(43,67)},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/obj/item/weapon/gun/energy/locked/frontier,/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/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"hk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"hl" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) -"hm" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"hn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ho" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"hq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"hr" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) -"hs" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 2"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"ht" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"hu" = (/obj/machinery/disposal,/obj/machinery/light_construct{dir = 4},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"hv" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"hw" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"hx" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"hy" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Shuttle Landing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"hA" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/security{c_tag = "SO - Airlock Access"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"hB" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"hC" = (/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"hD" = (/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"hE" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"hF" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hG" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"hH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges{dir = 6},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"hI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"hJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"hK" = (/turf/simulated/floor/outdoors/snow,/area/surface/outside/plains/outpost) -"hL" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"hM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"hN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"hO" = (/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) -"hP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hQ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/symbol/lo{pixel_x = -32},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"hR" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"hS" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Tool Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"hT" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"hU" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"hV" = (/obj/structure/fence/corner{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"hW" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"hX" = (/obj/structure/table/rack,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"hZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ib" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/emergency_storage/two) -"ic" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_three) -"id" = (/obj/effect/floor_decal/borderfloor,/obj/structure/closet/wardrobe/pjs,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"if" = (/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"ig" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"ih" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/item/weapon/pickaxe,/obj/item/device/gps/mining,/obj/item/clothing/head/hardhat/orange,/obj/machinery/vending/wallmed1{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ii" = (/obj/machinery/teleport/hub,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"ij" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"il" = (/obj/structure/fence/corner,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"im" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"in" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"io" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ip" = (/obj/effect/shuttle_landmark{landmark_tag = "response_ship_planet"; name = "Sif Surface East"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"iq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"ir" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"is" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"it" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"iu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"iw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ix" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"iy" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"iz" = (/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"iA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"iC" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"iD" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"iE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/light{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"iF" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) -"iG" = (/obj/effect/overlay/snow/floor,/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"iH" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"iI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"iJ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/animal/passive/mouse/mining,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"iK" = (/obj/structure/table/woodentable,/obj/structure/flora/pottedplant/small,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"iL" = (/obj/effect/overlay/snow/floor,/obj/structure/grille,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"iM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_one) -"iN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"iO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"iR" = (/obj/structure/bed/chair{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"iS" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iT" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/air_sensor{frequency = 1438; id_tag = "rustengine_sensor"; output = 63},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"iU" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "ENG_Outpost_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "ENG_Outpost_airlock_exterior"; tag_interior_door = "ENG_Outpost_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"iV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"iW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"iX" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"iY" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"iZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"ja" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"jb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"jc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"jd" = (/obj/structure/cable/blue{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/surface/outpost/security/maa) -"je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_engineering{name = "Reactor Monitoring Room"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/engineering/monitoring) -"jf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"jg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security) -"ji" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"jj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"jk" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"jl" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"jm" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jn" = (/obj/item/stack/material/wood,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"jo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jq" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"jr" = (/obj/item/weapon/reagent_containers/glass/bucket/wood,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"js" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"jt" = (/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ju" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "External Access Button"; pixel_x = -26; req_one_access = list(48,10)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) -"jv" = (/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},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"jw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"jx" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) -"jy" = (/obj/machinery/computer/guestpass{pixel_y = 28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "sec1_airlock_control"; pixel_x = 26; pixel_y = 26; req_one_access = list(1); tag_exterior_door = "sec1_airlock_exterior"; tag_interior_door = "sec1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"jz" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"jA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jE" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"jF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"jH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"jI" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"jJ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"jK" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"jL" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"jM" = (/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"jN" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"jO" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"jQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"jR" = (/obj/machinery/vending/foodasian{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"jS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"jT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"jU" = (/obj/item/weapon/stock_parts/motor,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"jW" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"jX" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"jY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"jZ" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ka" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/multi_tile/metal{name = "Fauna Containment"; req_one_access = list(1,43)},/obj/machinery/door/firedoor/multi_tile/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"kc" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ke" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"kf" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"kg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"kh" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"ki" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"kj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/vending/cigarette{dir = 1},/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/surface/outpost/main/corridor/left_upper) -"kk" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"kl" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"km" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"kn" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/machinery/status_display{pixel_y = 32},/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ko" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"kp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"kq" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/matches,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"ks" = (/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"ku" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter Hallway"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"kv" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"kw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"kx" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) -"ky" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"kz" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/structure/cable/blue{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/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"kA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kB" = (/obj/structure/table/bench/standard,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"kC" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main7_airlock_control"; name = "Internal Access Button"; pixel_x = 6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main7_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_two) -"kD" = (/obj/structure/table/bench/marble,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"kE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -26},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kF" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"kG" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"kH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"kI" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/tool,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Main Outpost"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"kJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/black{dir = 5},/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"kK" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) -"kL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) -"kM" = (/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"kN" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"kO" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{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/surface/outpost/main/corridor) -"kP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"kQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"kR" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"kS" = (/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"kU" = (/obj/machinery/mineral/input,/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"kV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"kW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Teleporter Access"; req_access = newlist(); req_one_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"kX" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/heater/sauna{dir = 8; icon_state = "heater_1"; use_power = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"kY" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"kZ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"la" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lb" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"lc" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"ld" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_1) -"le" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"lf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"lg" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 3"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"li" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"lj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main) -"lk" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 2"; dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"lm" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main8_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main8_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_three) -"lo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lp" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"lq" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"lr" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 2"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ls" = (/obj/machinery/vending/loadout,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"lt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"lu" = (/obj/item/clothing/head/hardhat/orange,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"lw" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"lx" = (/obj/structure/table/marble,/obj/item/device/starcaster_news,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ly" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"lz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"lA" = (/turf/simulated/wall/dungeon{icon = 'icons/obj/doors/shuttledoors.dmi'; icon_state = "door_locked"; name = "Wall Gate"},/area/surface/outpost/wall) -"lB" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"lC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{rad_resistance = 150},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lD" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"lE" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"lF" = (/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lG" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"lI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lJ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"lK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"lL" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"lM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"lN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"lO" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"lP" = (/turf/simulated/wall,/area/surface/outpost/mining_main/cave) -"lQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"lR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"lS" = (/obj/machinery/door/firedoor/glass/hidden{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"lT" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"lU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"lV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 2"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"lW" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/atmos_room) -"lX" = (/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/buildable{RCon_tag = "Outpost Parallel - Main 1"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 750000; output_level = 750000},/obj/structure/cable,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"lY" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"lZ" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/cola,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"ma" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"mb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"mc" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_two) -"md" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"mf" = (/obj/structure/cable/cyan{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/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"mh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"mi" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"mj" = (/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"mk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"ml" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"mm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"mn" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope{dir = 6},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"mo" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"mq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/purple/bordercorner{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"mr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"ms" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"mu" = (/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"mv" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"mw" = (/obj/machinery/door/firedoor/glass/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"mx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/machinery/light,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"my" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"mz" = (/obj/structure/table/standard,/obj/item/weapon/soap/syndie,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"mA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"mB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"mC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"mD" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"mE" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"mF" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mG" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mH" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"mI" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"mJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration/containment) -"mK" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"mL" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"mM" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"mN" = (/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/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"mO" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"mP" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"mQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"mR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"mS" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) -"mT" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"mU" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"mV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"mW" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/porta_turret/industrial/teleport_defense,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/teleporter) -"mX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"mY" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/catwalk,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/emp_proof{c_tag = "SUBS - Eng Outpost"; dir = 4; name = "Engineering_Outpost"; network = list("Engineering Outpost")},/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"na" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/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/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nc" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"nd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"ne" = (/obj/effect/zone_divider,/turf/simulated/floor/water/shoreline{dir = 8},/area/surface/outside/ocean) -"nf" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Auxiliary Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ng" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"nh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ni" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"nl" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"nm" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = 3},/obj/item/weapon/gun/energy/locked/phasegun/rifle{pixel_y = -4},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 1"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"no" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"np" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"nq" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"nr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ns" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"nt" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nu" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"nv" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"nw" = (/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"ny" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-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/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"nz" = (/obj/effect/floor_decal/borderfloor/cee,/obj/effect/floor_decal/industrial/danger/cee,/obj/machinery/door/window/brigdoor/westleft{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastright{name = "Containment Pen"; req_access = newlist(); req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"nA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"nC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"nD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"nE" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"nF" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"nG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"nH" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"nI" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) -"nJ" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoronglass,/obj/fiftyspawner/rglass,/obj/fiftyspawner/rods,/obj/fiftyspawner/steel,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 1"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"nK" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"nL" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"nM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"nN" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"nO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"nP" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"nQ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"nR" = (/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Engineering Outpost"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/obj/structure/cable/blue,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"nS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"nT" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/reactor_smes) -"nU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"nV" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/fishing) -"nW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"nX" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"nY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"nZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"oa" = (/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/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"ob" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"oc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/main_outpost{c_tag = "ATV Garage 1"; dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"od" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"oe" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"of" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"og" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oh" = (/obj/machinery/hologram/holopad,/obj/machinery/vending/wallmed1{name = "Emergency NanoMed"; pixel_y = 28},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"oi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"oj" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"ok" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ol" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"om" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/mask/gas/half,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"on" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oo" = (/obj/structure/closet/secure_closet/explorer,/obj/item/weapon/pickaxe,/obj/machinery/light{dir = 1},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"op" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"os" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/random/soap,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"ot" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ou" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"ow" = (/obj/structure/flora/pottedplant/fern,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"ox" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oy" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"oA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"oC" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"oD" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) -"oE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"oF" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"oH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"oI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) -"oJ" = (/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/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"oL" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown/full{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"oM" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor) -"oN" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oO" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"oP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"oQ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"oR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_one) -"oS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"oT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"oU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"oV" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"oX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"oY" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"oZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"pa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"pb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pc" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/item/weapon/storage/laundry_basket,/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"pd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"pe" = (/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},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"pf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"pg" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ph" = (/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},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pi" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"pj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pk" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"pm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"pn" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 2"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"po" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"pp" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ps" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"pu" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pw" = (/obj/structure/fence/end{dir = 4},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"px" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"py" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"pz" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/lapvend{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/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{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"pA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"pB" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"pC" = (/turf/simulated/mineral/ignore_mapgen/sif,/area/surface/outside/plains/mountains) -"pD" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/item/weapon/tank/oxygen{pixel_x = -2; pixel_y = 3},/obj/item/weapon/tank/oxygen{pixel_x = 1; pixel_y = -5},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"pE" = (/obj/structure/stasis_cage,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"pF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"pG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"pH" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"pJ" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"pK" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"pL" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"pM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"pN" = (/turf/simulated/wall,/area/surface/outpost/main/search_and_rescue) -"pO" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"pP" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"pQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"pR" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/obj/item/clothing/gloves/duty,/obj/item/clothing/gloves/duty,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/under/serviceoveralls,/obj/item/clothing/accessory/storage/webbing,/obj/item/clothing/accessory/storage/webbing,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"pS" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"pT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"pU" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"pV" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust/corner,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"pW" = (/turf/simulated/floor/water/shoreline/corner{dir = 1},/area/surface/outside/ocean) -"pX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"pY" = (/obj/item/stack/flag/green{pixel_x = -4},/obj/item/stack/flag/red,/obj/item/stack/flag/yellow{pixel_x = 4},/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"qb" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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 = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qc" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"qd" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 5; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"qe" = (/obj/effect/floor_decal/borderfloor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"qf" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/unary/heat_exchanger{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qg" = (/turf/simulated/wall,/area/surface/outpost/main/bar) -"qh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"qi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qj" = (/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room Access"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/monitoring) -"ql" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/closet/secure_closet/medical_wall{name = "O- Blood Locker"; pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/visible,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"qm" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"qn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qo" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"qp" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"qq" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"qs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Auxiliary Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{d1 = 9; d2 = 10; icon_state = "9-10"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"qt" = (/obj/structure/flora/pottedplant/dead,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"qu" = (/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"qv" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"qw" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Outpost SMES Room"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"qx" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"qy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"qz" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"qA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"qB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"qC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"qD" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"qE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"qF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"qG" = (/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"qH" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"qK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"qL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"qM" = (/obj/item/modular_computer/console/preset/security,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qN" = (/turf/simulated/wall,/area/surface/outpost/civilian/smes) -"qO" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"qP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Locker Room"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"qQ" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"qR" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"qT" = (/turf/simulated/wall,/area/surface/outpost/main/exploration) -"qU" = (/obj/machinery/conveyor_switch{id = "mining_external"},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"qV" = (/turf/simulated/wall,/area/surface/outpost/main/corridor/left_lower) -"qW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4},/obj/machinery/power/thermoregulator,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qX" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"qY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"qZ" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 2"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"ra" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"rb" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/lead{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plasteel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/item/stack/material/copper{amount = 25},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"rc" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"rd" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/orange/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"re" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"rf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/machinery/microwave{pixel_x = -2; pixel_y = 5},/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"rg" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) -"rh" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Construction Area"},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_lower) -"ri" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/white/bordercorner2{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Construction Area"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) -"rk" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"rl" = (/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"rm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"rn" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"ro" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Civilian"; charge = 500000; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"rq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"rr" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ2_airlock_exterior"; locked = 1; name = "Civilian Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "civ2_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/sauna) -"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"ru" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"rv" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"rw" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ry" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"rz" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"rA" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"rB" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"rC" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"rD" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/engineering/monitoring) -"rE" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 1"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"rF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"rG" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"rI" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration) -"rK" = (/obj/structure/table/standard,/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"rL" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 5; tag_west = 1; use_power = 0},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"rM" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) -"rN" = (/obj/structure/closet/lasertag/red,/obj/item/stack/flag/red,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"rO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"rP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"rQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"rR" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"rS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/tcomm) -"rT" = (/obj/structure/table/steel,/obj/random/tech_supply,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"rU" = (/obj/machinery/vending/loadout/clothing,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"rV" = (/turf/simulated/wall/solidrock,/area/surface/outpost/wall) -"rW" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/weapon/cell/high,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) -"rY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) -"rZ" = (/obj/structure/table/rack,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/item/stack/cable_coil/silver,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"sa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"sb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Custodial Closet"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"sc" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"sd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"se" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"sf" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 8},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = -20; pixel_y = -10; req_one_access = list(48)},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) -"sg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/corridor/left_lower) -"si" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) -"sj" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"sk" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/tool,/obj/effect/floor_decal/borderfloor{dir = 8},/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/surface/outpost/mining_main/tools) -"sl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"sm" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sn" = (/obj/structure/table/rack/shelf,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/item/device/gps/mining{pixel_x = -5},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/item/device/gps/mining{pixel_x = 5},/obj/item/device/gps/mining{pixel_x = -5},/obj/item/device/gps/mining{pixel_x = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"so" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"sp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{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/surface/outpost/security) -"sq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sr" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ss" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"st" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"su" = (/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"sv" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"sx" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"sy" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sz" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 3"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"sA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"sB" = (/obj/structure/table/marble,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"sC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/storage) -"sD" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage2"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) -"sE" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{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/surface/outpost/main/corridor/right_upper) -"sF" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"sH" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"sI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/white/bordercorner2{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"sK" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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,/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"sL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"sM" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"sN" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"sO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"sP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"sQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"sS" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/heavyduty,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"sT" = (/obj/structure/table/marble,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"sV" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"sW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) -"sX" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"sY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"ta" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"tb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room East"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"tc" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"td" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"te" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"tf" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"tg" = (/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/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"th" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ti" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"tj" = (/turf/simulated/wall,/area/surface/outpost/civilian/pool) -"tk" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 1"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"tl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"tm" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"tn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"to" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) -"tp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) -"tq" = (/obj/structure/catwalk,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"tr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ts" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"tt" = (/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"tu" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"tv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tw" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"tx" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ty" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_upper) -"tz" = (/obj/machinery/door/airlock/glass_security{name = "Master at Arms"},/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/steel_grid,/area/surface/outpost/security/maa) -"tA" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"tB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tC" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"tD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"tE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"tF" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"tG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "rust_cooling_in"; name = "Engine Cooling Control"; output_tag = "rust_cooling_out"; sensors = list("rustengine_sensor"="Engine Temperature")},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"tH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"tI" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"tJ" = (/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 9; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"tK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"tL" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id = "Reactor Gyrotron"; id_tag = "Reactor Gyrotron"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"tM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) -"tN" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"tO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"tP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tQ" = (/obj/structure/table/bench/wooden,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"tR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"tT" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"tU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"tV" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"tW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/white/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"tX" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/flora/pottedplant/bamboo,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"tY" = (/turf/simulated/floor/water/shoreline/corner{dir = 8},/area/surface/outside/ocean) -"tZ" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"ua" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/stairs{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"ub" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/closet/toolcloset,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uc" = (/obj/structure/closet/secure_closet/guncabinet/phase{name = "phase weapon cabinet"; req_access = newlist(); req_one_access = list(43,67)},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/corner/purple{dir = 5},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Exploration Prep"; dir = 8},/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/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"ud" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"ue" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_north) -"uf" = (/obj/structure/table/standard,/obj/machinery/light{dir = 8},/obj/item/device/starcaster_news,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"ug" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"uh" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_three) -"ui" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/bar) -"uj" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/turretid/stun{check_records = 0; control_area = "\improper Main Outpost Teleporter"; name = "Main Outpost Teleporter turret control"; pixel_y = 24; req_access = list(19)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"uk" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ul" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"um" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/button/windowtint{id = "dorm_tint5"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"un" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"up" = (/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"uq" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"ur" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"us" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"ut" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uu" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/machinery/camera/network/telecom{c_tag = "Tcoms - Main Outpost"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"uv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/security/smes) -"uw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/security) -"ux" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"uA" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"uB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"uC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"uD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/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/surface/outpost/main/corridor/left_upper) -"uE" = (/turf/simulated/floor/water,/area/surface/outside/lake/romsele) -"uF" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) -"uG" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"uH" = (/obj/structure/snowman/borg,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"uJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"uK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uL" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"uM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"uN" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"uO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"uP" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/obj/machinery/meter,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"uQ" = (/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/corner/brown{dir = 5},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"uR" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"uS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"uT" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"uU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_left) -"uV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"uW" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"uX" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"uY" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"uZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"vb" = (/turf/simulated/wall,/area/surface/outpost/main/showers) -"vc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Showers"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/showers) -"vd" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"ve" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"vf" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_upper) -"vg" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security) -"vh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"vj" = (/obj/effect/engine_setup/pump_max,/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"vk" = (/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"vl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"vm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vn" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vo" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"vp" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"vq" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"vs" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"vt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"vv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"vw" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"vx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "External Access Button"},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"vy" = (/obj/effect/floor_decal/borderfloor,/obj/structure/table/standard,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"vz" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Production Room"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"vA" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"vB" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/mountains) -"vC" = (/obj/machinery/atmospherics/unary/heat_exchanger{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"vD" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vE" = (/obj/structure/table/steel,/obj/structure/closet/secure_closet/medical_wall/pills{pixel_y = 32},/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = 12},/obj/random/medical/pillbottle,/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"vF" = (/obj/structure/table,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"vG" = (/obj/structure/boxingrope{dir = 1},/obj/structure/boxingrope{dir = 8},/obj/structure/boxingrope{dir = 9},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"vH" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"vI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/orange/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"vJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"vK" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"vN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"vO" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"vP" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"vR" = (/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"vT" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"vU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"vV" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"vW" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"vY" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"vZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wa" = (/obj/machinery/light_construct,/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut/empty,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"wb" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"wc" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"wd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"we" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"wf" = (/obj/machinery/conveyor{dir = 8; id = "mining_external"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/refinery) -"wg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"wh" = (/turf/simulated/wall,/area/surface/outpost/main/gym) -"wi" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"wj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"wk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"wm" = (/obj/machinery/vending/coffee{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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/surface/outpost/main/corridor/right_upper) -"wn" = (/obj/structure/table/standard,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/random_multi/single_item/hand_tele,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"wo" = (/obj/effect/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wp" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "External Access Button"; pixel_x = 26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) -"wq" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"wr" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ws" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_three) -"wt" = (/obj/structure/closet/athletic_mixed,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"wu" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"wv" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ww" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"wx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"wy" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"wA" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"wC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"wD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"wE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/structure/table/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/left_lower) -"wH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage2"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = -22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"wI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) -"wJ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"wK" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_exterior"; locked = 1; name = "Engineering Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) -"wL" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"wM" = (/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"wN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"wO" = (/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"wP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Foyeur"; dir = 10; name = "Engineering Outpost"; network = list("Engineering")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"wQ" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"wS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) -"wT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"wU" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"wV" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Containment Pen"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"wW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"wX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) -"wY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"wZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xb" = (/obj/machinery/vending/fishing{dir = 8},/obj/effect/floor_decal/corner/orange{dir = 6},/obj/effect/floor_decal/corner/orange{dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"xd" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"xe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"xh" = (/turf/simulated/floor/water/shoreline{dir = 6},/area/surface/outside/ocean) -"xi" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/smes) -"xk" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "mining1_airlock_control"; name = "External Access Button"; pixel_y = -26; req_one_access = list(48)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining1_airlock_exterior"; locked = 1; name = "Mining Outpost External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/storage) -"xl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) -"xn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"xp" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"xq" = (/turf/simulated/floor/wood{outdoors = 1},/area/surface/outside/path/plains) -"xr" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"xs" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{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/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"xt" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 3"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_three) -"xw" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/floor_decal/corner/purple/border{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"xx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"xy" = (/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Room South"; dir = 4; name = "Reactor_Room"; network = list("Engine")},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"xz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"xA" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Explorer"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"xB" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/mineral/input,/obj/structure/sign/warning/moving_parts{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"xC" = (/obj/item/stack/material/wood,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"xD" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"xE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xF" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"xG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/search_and_rescue) -"xH" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"xI" = (/obj/machinery/telecomms/relay/preset/southerncross/cave,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"xJ" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) -"xK" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"xL" = (/turf/simulated/floor/water,/area/surface/outside/ocean) -"xM" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"xN" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"xO" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"xP" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"xQ" = (/obj/structure/fence/end,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"xR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Central Hall"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"xS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"xT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"xU" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = -5; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 5; pixel_y = 2},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"xV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"xW" = (/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"xY" = (/obj/structure/table/glass,/obj/item/inflatable{pixel_x = 6; pixel_y = 6},/obj/item/inflatable{pixel_x = 2; pixel_y = 2},/obj/item/inflatable{pixel_x = -2; pixel_y = -3},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"xZ" = (/obj/structure/table/bench/standard,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) -"ya" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"yb" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/cable/heavyduty{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/yjunction{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"yc" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"yd" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"ye" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"yg" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"yh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"yi" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"yj" = (/turf/simulated/floor/outdoors/grass/sif/forest/planetuse,/area/surface/outside/plains/normal) -"yk" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"yl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"ym" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"yn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{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,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"yo" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"yp" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"yq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"yr" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"ys" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 22},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"yt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/obj/structure/cable/yellow{d1 = 2; d2 = 9; icon_state = "2-9"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"yu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_three) -"yv" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"yx" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_three) -"yy" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"yz" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"yA" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock 2"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"yB" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 8; start_pressure = 4559.63},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"yC" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-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"},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -21},/obj/structure/cable/blue{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/surface/outpost/engineering/monitoring) -"yD" = (/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"yE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"yF" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/space) -"yG" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"yH" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"yI" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"yJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"yK" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"yL" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_5) -"yM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"yN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"yO" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"yP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main1_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main1_airlock_exterior"; tag_interior_door = "main1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"yQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main) -"yR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"yS" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"yT" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"yV" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 4},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"yW" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"yX" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"yY" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"yZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"za" = (/turf/simulated/floor/water/shoreline{dir = 4},/area/surface/outside/ocean) -"zb" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) -"zc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"zd" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"ze" = (/obj/machinery/telecomms/relay/preset/southerncross/skylands,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"zf" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"zg" = (/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/mountains) -"zh" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"zi" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zj" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"zk" = (/obj/machinery/mineral/unloading_machine,/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"zl" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"zm" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/reagent_containers/food/drinks/britcup,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"zn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zo" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"zr" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/structure/coatrack,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"zt" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"zu" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"zv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"zw" = (/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"zx" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"zz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"zB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"zC" = (/obj/effect/shuttle_landmark{base_area = /area/surface/outside/plains/normal; base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; landmark_tag = "outpost_s"; name = "South of Outpost"},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"zD" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint6"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint6"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_6) -"zE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/machinery/recharger,/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"zF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"zH" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"zI" = (/obj/structure/catwalk,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{name = "Fuel Storage Room"; req_one_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"zJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"zL" = (/obj/structure/table/steel,/obj/random/tech_supply,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"zM" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "civ1_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "civ1_airlock_interior"; locked = 1; name = "Civilian Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/civilian/fishing) -"zN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"zO" = (/obj/machinery/conveyor{dir = 8; id = "mining_internal"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"zP" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/shoes/galoshes,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"zQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"zR" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "dorm_tint5"},/obj/structure/window/reinforced/polarized{dir = 8; id = "dorm_tint5"},/turf/simulated/floor/plating,/area/surface/outpost/main/dorms/dorm_5) -"zS" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_4) -"zV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"zW" = (/obj/machinery/vending/snack{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"zX" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"zY" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/carpet/purcarpet,/area/surface/outpost/main/dorms/dorm_2) -"zZ" = (/obj/structure/fence/corner{dir = 9},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Aa" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/left_two) -"Ac" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Ae" = (/obj/machinery/light,/obj/item/weapon/book/manual/rust_engine,/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Af" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ag" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ah" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Ai" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Aj" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"Ak" = (/obj/effect/map_effect/portal/line/side_a,/obj/effect/map_effect/perma_light/concentrated,/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"Am" = (/obj/effect/overlay/snow/floor,/obj/machinery/disposal,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"An" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ao" = (/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"Ap" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Aq" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ar" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/backup_kit{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/box/cdeathalarm_kit,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"As" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/smes) -"At" = (/turf/simulated/wall/r_wall,/area/surface/outside/plains/outpost) -"Au" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Av" = (/obj/effect/floor_decal/borderfloor,/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Aw" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Right Wing"; dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Ax" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Az" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main6_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "main6_airlock_exterior"; tag_interior_door = "main6_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"AA" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"AB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"AC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{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/surface/outpost/main/corridor) -"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"AE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AF" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AG" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light/small{dir = 4},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"AH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"AI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"AJ" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/item/weapon/tool/wrench,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"AK" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main/refinery) -"AL" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"AM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"AN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"AO" = (/obj/effect/floor_decal/borderfloor/full,/obj/effect/floor_decal/industrial/danger/full,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/shieldwallgen{anchored = 1; req_access = list(1,43); state = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"AP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/glass_jar,/obj/structure/table/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"AQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"AR" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"AT" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"AU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"AW" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/tcomm) -"AX" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"AY" = (/obj/effect/landmark/start{name = "Search and Rescue"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"AZ" = (/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ba" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Bb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Bc" = (/obj/structure/catwalk,/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Bd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Be" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Bf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Bg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Bh" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Bj" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Bk" = (/obj/effect/overlay/snow/floor,/obj/structure/table/bench/steel,/obj/machinery/light{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"Bl" = (/turf/simulated/wall,/area/surface/outpost/main/emergency_storage/one) -"Bm" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_5) -"Bn" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Bo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Bp" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Bq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Br" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"Bs" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Bt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor/corner,/obj/item/weapon/extinguisher/mini,/obj/effect/floor_decal/corner/yellow/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Bu" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/fitness/punching_bag/clown,/obj/effect/floor_decal/corner/black{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Bv" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"Bw" = (/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Bx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"BA" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"BB" = (/obj/machinery/telecomms/relay/preset/southerncross/planet,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"BC" = (/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"BD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"BE" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/sauna) -"BF" = (/obj/effect/floor_decal/spline/fancy/wood/corner,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"BG" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/light,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock"; dir = 1},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"BH" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/civilian{c_tag = "CO - Airlock Access 1"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"BI" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock Access"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"BJ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/cable/blue{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/monotile,/area/surface/outpost/civilian/sauna) -"BK" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/tools) -"BL" = (/obj/structure/table/woodentable,/obj/item/toy/bouquet,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"BM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) -"BN" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/ender{icon_state = "1-2"; id = "surface_cave"},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"BO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"BP" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"BQ" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"BR" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"BT" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"BU" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"BV" = (/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"BW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"BX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"BZ" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Cb" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_exterior"; locked = 1; name = "Landing South External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) -"Cc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Search and Rescue Starboard"; dir = 8},/obj/structure/window/reinforced{health = 1e+006; req_access = list(5)},/obj/structure/table/rack,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/weapon/storage/belt/medical/emt,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/brigdoor/southleft{dir = 8; name = "EMT Supplies"; req_access = list(5); req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Cd" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_north) -"Ce" = (/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/surface/outpost/engineering/monitoring) -"Cf" = (/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"Cg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Ch" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/monitoring) -"Ci" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) -"Ck" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Cl" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/fusion_core/mapped{id_tag = "Outpost Fusion Core"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Cm" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Cn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Co" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/landmark{name = "JoinLateGateway"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"Cp" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Cr" = (/obj/structure/closet/crate{name = "Tritium Storage"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/item/weapon/fuel_assembly/tritium,/obj/machinery/light_switch{pixel_x = -11; pixel_y = 21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"Cs" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Cu" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) -"Cv" = (/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 = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Cx" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals9,/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{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"Cy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"CA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"CB" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 7; tag_north = 2; tag_south = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"CC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CD" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"CE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/emergency_storage) -"CF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CG" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"CH" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/visible/supply,/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"CI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"CM" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"CN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"CO" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"CP" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/corner/purple/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"CQ" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/light/small{dir = 8},/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"CR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"CT" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_one) -"CU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"CW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"CX" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"CY" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"CZ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"Db" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Dc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/exterior) -"Dd" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"De" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Df" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) -"Dh" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Di" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Dj" = (/obj/machinery/atmospherics/unary/cryo_cell{layer = 3.3},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Dk" = (/obj/structure/closet,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/orange/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 5},/obj/item/weapon/storage/backpack/dufflebag,/obj/item/clothing/shoes/boots/winter/climbing,/obj/item/clothing/shoes/boots/winter/climbing,/obj/machinery/camera/network/civilian{c_tag = "CO - Fishing 1"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Dl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/light{dir = 8},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Dn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Do" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Dp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/catwalk,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Dq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"Dr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ds" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"Dt" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Du" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/white/border{dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Dv" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_6) -"Dw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Dx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_left) -"Dz" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"DA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"DB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"DC" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"DD" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/vending/loadout/gadget,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"DG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"DH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"DI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"DJ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"DK" = (/obj/machinery/conveyor{id = "mining_internal"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"DL" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"DM" = (/obj/structure/closet/lasertag/blue,/obj/item/stack/flag/blue,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"DN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"DP" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"DQ" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/normal) -"DT" = (/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/tiled,/area/surface/outpost/main/corridor) -"DU" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"DW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost SMES Room"; dir = 10; name = "Engineering_Outpost"; network = list("Engineering")},/obj/machinery/light_switch{pixel_x = -21; pixel_y = -11},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"DX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"DY" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"DZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ea" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Eb" = (/obj/structure/fence,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Ec" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"Ed" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"Ee" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_three) -"Ef" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"Ei" = (/obj/structure/table/steel,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Ej" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/auxiliary_storage) -"Ek" = (/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"El" = (/obj/effect/floor_decal/corner/brown{dir = 9},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Em" = (/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/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"En" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{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},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"Ep" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/left_one) -"Er" = (/obj/machinery/telecomms/relay/preset/southerncross/wild,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/tcomm) -"Et" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"Eu" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"Ev" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ew" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ex" = (/obj/effect/landmark{name = "bluespacerift"},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"Ey" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"EA" = (/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"EB" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"EC" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ED" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"EE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"EF" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EG" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/construction_area) -"EH" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic{pixel_x = 7},/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"EI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"EJ" = (/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 = "Reactor Room Internal Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/reactor_smes) -"EK" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"EL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"EM" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"EN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"EO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"EP" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"EQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_lower) -"ER" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"ES" = (/obj/machinery/teleport/station,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"ET" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"EU" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"EW" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"EX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"EY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/structure/table/standard,/obj/random/action_figure,/obj/item/weapon/coin/silver,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"EZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Fa" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Fc" = (/obj/machinery/conveyor{dir = 4; id = "mining_north"},/obj/machinery/mineral/input,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/mining_main/exterior) -"Fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Fe" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Ff" = (/obj/machinery/cablelayer,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Fg" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Fi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/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},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Fj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Fk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Fl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/gym) -"Fm" = (/obj/structure/closet/secure_closet{name = "hunting locker"; req_one_access = list(1,43)},/obj/item/weapon/gun/energy/netgun,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/material/knife/tacknife/survival,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/item/clothing/shoes/boots/jungle,/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Fn" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"Fo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Fp" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Fq" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm6"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"Fr" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"Fs" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Ft" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Fu" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown/full,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Fv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Fy" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Laundry 2"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Fz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"FA" = (/obj/item/weapon/banner/nt,/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"FB" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"FC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"FD" = (/obj/effect/step_trigger/teleporter/bridge/north_to_south,/obj/structure/railing,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"FE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"FF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main7_airlock_control"; pixel_x = 26; pixel_y = -26; tag_exterior_door = "main7_airlock_exterior"; tag_interior_door = "main7_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"FH" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/external,/area/surface/outpost/wall) -"FI" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/item/device/gps/security,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"FJ" = (/obj/structure/toilet{dir = 1},/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"FK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"FL" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_3) -"FM" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"FN" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"FO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/symbol/em{pixel_x = 32},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"FP" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/brown/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"FQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"FR" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/pool) -"FS" = (/obj/structure/table/steel,/obj/random/junk,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"FU" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"FV" = (/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"FW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"FX" = (/obj/item/weapon/banner/nt,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"FY" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"FZ" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ga" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Gb" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Gc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Gd" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_one) -"Ge" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Gf" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "civ2_airlock_control"; pixel_x = 26; pixel_y = 26; tag_exterior_door = "civ2_airlock_exterior"; tag_interior_door = "civ2_airlock_interior"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Gg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Gh" = (/obj/random/trash,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Gi" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Left Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Gj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Gk" = (/obj/structure/snowman/spider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Gl" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Security Checkpoint"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"Gm" = (/obj/structure/undies_wardrobe,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Gn" = (/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Gp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Gq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_north) -"Gr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Gs" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/ocean) -"Gt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/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/surface/outpost/main/corridor/left_upper) -"Gu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Gv" = (/turf/simulated/floor/water/shoreline/corner{dir = 4},/area/surface/outside/ocean) -"Gw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Gx" = (/obj/structure/table/steel,/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Gy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Gz" = (/obj/structure/ore_box,/obj/effect/floor_decal/corner/brown{dir = 9},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"GA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"GC" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"GD" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"GE" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"GF" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"GG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"GI" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"GJ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/right_two) -"GK" = (/obj/effect/floor_decal/stairs{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"GL" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; name = "Reactor Core"; rad_resistance = 150; req_access = list(11)},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"GM" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"GN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"GO" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/secure_closet/engineering_welding,/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"GP" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"GQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"GR" = (/obj/effect/landmark/event_spawn/dronepod_landing,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"GS" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"GT" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Mining Storage"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/uxstorage) -"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"GV" = (/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"GW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"GX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"GY" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_y = -30},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"GZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ha" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"Hb" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/security) -"Hc" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Hd" = (/obj/structure/closet/wardrobe/black,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"He" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Hf" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"Hg" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_two) -"Hh" = (/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_left) -"Hi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Hj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"Hk" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Hl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Hm" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Hn" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"Ho" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"Hp" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Hq" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Hr" = (/obj/effect/overlay/snow/floor,/obj/structure/symbol/gu{pixel_x = -32},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Hs" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"Ht" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Hu" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/fishing) -"Hv" = (/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Hw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Hx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) -"Hy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Hz" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_right) -"HA" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"HB" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"HC" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"HD" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_one) -"HE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"HF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 8; icon_state = "6-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"HG" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"HH" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"HI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"HK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"HL" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"HM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"HN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/main_outpost{c_tag = "MO Right Wing - Hallway 2"; dir = 4; name = "security camera"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"HO" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"HP" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"HQ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"HR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"HS" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"HU" = (/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"HV" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"HW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"HX" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"HY" = (/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_6) -"HZ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/heavyduty{icon_state = "2-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ib" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/storage) -"Ic" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Id" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ie" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"If" = (/obj/machinery/door/airlock{id_tag = "dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_1) -"Ig" = (/turf/simulated/floor/water/deep,/area/surface/outside/ocean) -"Ih" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Ii" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/surface/outpost/mining_main) -"Ij" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ik" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/door/firedoor/glass/hidden{dir = 2},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Il" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Im" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Mining"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"In" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Io" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/space) -"Ip" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/exploration) -"Iq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Ir" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"Is" = (/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"It" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Iu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Iv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Iw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ix" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/exploration/containment) -"Iy" = (/obj/machinery/mineral/processing_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"IA" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"IC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"ID" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_exterior"; locked = 1; name = "Landing North External"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) -"IE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/tools) -"IF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) -"IG" = (/obj/effect/overmap/visitable/planet/Sif,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"IH" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"II" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/search_and_rescue) -"IJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"IK" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/mask/gas,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"IM" = (/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/spline/fancy/wood,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"IN" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Laundry"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) -"IO" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"IP" = (/obj/structure/closet/secure_closet/guncabinet/phase{req_one_access = null},/obj/item/clothing/accessory/holster/hip,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"IQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"IR" = (/obj/structure/closet/secure_closet/explorer,/obj/item/clothing/accessory/holster/hip,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"IS" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"IT" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"IU" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"IV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; name = "mining conveyor"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"IW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"IX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main2_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main2_airlock_exterior"; tag_interior_door = "main2_airlock_interior"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"IY" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/obj/machinery/button/remote/blast_door{id = "production1"; name = "Production Shutters"; pixel_x = 22; req_one_access = list(48)},/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"IZ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Ja" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Jb" = (/obj/structure/catwalk,/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/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/network/engineering_outpost{c_tag = "SUBS - Civilian"; dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"Jc" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Jd" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Teleporter"; dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Je" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Jf" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/obj/machinery/light/spot,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Jg" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_one) -"Jh" = (/obj/machinery/door/airlock{id_tag = "dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_2) -"Ji" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Jj" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Jk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/smes) -"Jl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) -"Jm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Jn" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Jo" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main3_airlock_interior"; locked = 1; name = "Landing South Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_south) -"Jq" = (/turf/simulated/wall,/area/surface/outpost/main/corridor) -"Js" = (/obj/structure/table/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Jt" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_upper) -"Ju" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning{dir = 1},/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/surface/outpost/engineering/monitoring) -"Jw" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/security) -"Jx" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"Jy" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining2_airlock_control"; pixel_x = -26; pixel_y = -26; req_one_access = list(48,10); tag_exterior_door = "mining2_airlock_exterior"; tag_interior_door = "mining2_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Jz" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"JB" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Teleporter"; dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JC" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"JD" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"JE" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"JF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"JG" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"JH" = (/obj/structure/sign/warning/caution{desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; name = "\improper WARNING: NO ACCESS"},/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) -"JJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"JK" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/reactor_smes) -"JL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"JM" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"JN" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"JO" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner/brown{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Storage"; dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"JP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"JQ" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"JR" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"JS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"JT" = (/obj/structure/catwalk,/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,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/surface/outpost/civilian/smes) -"JU" = (/obj/structure/table/standard,/obj/item/weapon/soap,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"JV" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"JW" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 10},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room/smes_right) -"JX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"JY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"JZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Ka" = (/turf/simulated/floor/water/shoreline{dir = 10},/area/surface/outside/ocean) -"Kb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/laundry) -"Kd" = (/turf/simulated/floor/water/shoreline/corner,/area/surface/outside/ocean) -"Ke" = (/turf/simulated/wall/r_wall,/area/surface/outpost/civilian/sauna) -"Kf" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance/engineering,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Kg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Kh" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = -4; pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{pixel_x = 5; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/civilian/sauna) -"Ki" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"Kj" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Kk" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Kl" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Km" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Kn" = (/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/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Ko" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Kp" = (/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Kr" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Reactor Room External Access"; req_one_access = list(11)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/techfloor/grid,/area/surface/outpost/engineering/atmos_room) -"Ks" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) -"Ku" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gateway) -"Kv" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Kw" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"Kx" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Ky" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"Kz" = (/obj/machinery/light{dir = 1},/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"KA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"KB" = (/turf/simulated/shuttle/wall/voidcraft/hard_corner,/area/surface/outpost/wall) -"KC" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KD" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/security/maa) -"KE" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"KF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KG" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/holofloor/tiled/dark,/area/surface/outpost/security/maa) -"KH" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"KI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"KK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"KL" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"KM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"KN" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/glass{name = "Production Area"; req_one_access = list(48)},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main) -"KO" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"KP" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/atmos_room) -"KQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"KR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"KS" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"KT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"KU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/emergencystorage) -"KV" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/button/windowtint{id = "dorm_tint6"; pixel_x = -22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"KW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/terminal,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"KX" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"KY" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"KZ" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"La" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Lb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Lc" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ld" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/unary/vent_pump/engine{dir = 1; external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "rust_cooling_out"; initialize_directions = 1; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Le" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Lf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"Lg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Lh" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Li" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Lj" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ll" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 1},/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/tools) -"Lm" = (/obj/structure/closet/hydrant{pixel_y = 32},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"Ln" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/boxingrope{dir = 1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Lo" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Lp" = (/obj/structure/table/steel,/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"Lq" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Lr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Ls" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Lt" = (/obj/structure/closet/crate,/obj/effect/floor_decal/corner/brown{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/engineering{name = "Atmos Room"; req_one_access = list(12)},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/tools) -"Lv" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"Lw" = (/obj/structure/sign/warning/radioactive,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/monitoring) -"Lx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Ly" = (/obj/structure/fence/end{dir = 8},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Lz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"LA" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"LC" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/main/gen_room/smes_right) -"LD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"LE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_one) -"LF" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint1"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"LG" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"LH" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"LI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"LJ" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"LK" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main6_airlock_control"; name = "Internal Access Button"; pixel_x = 26; pixel_y = 5},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main6_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/left_one) -"LL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"LM" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"LN" = (/turf/simulated/wall,/area/surface/outpost/civilian/emergency_storage) -"LO" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/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,/obj/machinery/vending/fitness{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"LP" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/flora/pottedplant/flower,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"LQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LR" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"LS" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"LT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"LU" = (/obj/structure/cable/blue,/obj/machinery/power/apc{dir = 8; name = "west bump"; operating = 0; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"LV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Long Range Teleporter Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gateway) -"LW" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"LY" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"LZ" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ma" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/corridor/right_upper) -"Mb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"Mc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/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 = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Me" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire{pixel_x = -5; pixel_y = 5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/o2{pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/obj/item/weapon/storage/firstaid/adv{pixel_x = -5; pixel_y = -5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Mf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Mg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"Mh" = (/turf/simulated/floor/water/shoreline{dir = 5},/area/surface/outside/ocean) -"Mi" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Mj" = (/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Mk" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Ml" = (/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Mm" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom/department/medbay{pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Mn" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Mo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Mp" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Mq" = (/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/structure/closet/cabinet,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Mr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ms" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Mt" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Mu" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/security/maa) -"Mv" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Mx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/engineering{name = "SMES Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room/smes_right) -"My" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Gym"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/gym) -"Mz" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"MA" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"MB" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/machinery/door/window/brigdoor/westleft{name = "Medical Supplies"; req_access = null; req_one_access = list(5,43)},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"MC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"MD" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/zone_divider,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"ME" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/laundry) -"MF" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"MG" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"MH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"MI" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"MJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/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/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"MK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"ML" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"MM" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/corner/orange{dir = 9},/obj/effect/floor_decal/corner/orange{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MN" = (/turf/simulated/wall,/area/surface/outpost/main/laundry) -"MO" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MP" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"MQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"MR" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"MT" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{dir = 4; rad_resistance = 150},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"MU" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Outpost Laundry"},/obj/effect/floor_decal/corner/white/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"MV" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"MW" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/machinery/light_switch{pixel_x = -12; pixel_y = -22},/obj/structure/cable/blue,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"MX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"MY" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"MZ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_construct{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Na" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"Nb" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/restroom) -"Nc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/highsecurity{name = "Telecommunication Hub"; req_one_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/tcomm) -"Nd" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ne" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Nf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Nh" = (/obj/machinery/camera/network/civilian{c_tag = "CO - Sauna"; dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Ni" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"Nj" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Nk" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/white/bordercorner2{dir = 10},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 3"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Nm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Nn" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/fishing) -"No" = (/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/industrial/outline,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"Np" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Nq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ns" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Nt" = (/obj/machinery/light{dir = 4},/obj/machinery/alarm{dir = 8; frequency = 1441; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Nu" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm5"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Nv" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Nw" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_three) -"Nx" = (/obj/structure/table/steel,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Ny" = (/obj/effect/overlay/snow/floor,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"Nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) -"NA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"NB" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_two) -"NC" = (/obj/effect/overlay/snow/floor,/obj/structure/ore_box,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"NE" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm4"; name = "Door Lock Control"; pixel_y = 25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"NF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"NG" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/right_three) -"NH" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"NI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/purple/border{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"NJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"NK" = (/obj/structure/cable/blue{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},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"NL" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/powercell,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room) -"NM" = (/obj/structure/fence/end{dir = 1},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"NN" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/refinery) -"NO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/janitor) -"NP" = (/obj/structure/closet/emcloset,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"NQ" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"NR" = (/obj/effect/map_effect/portal/line/side_a,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/exterior) -"NU" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"NV" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"NW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"NX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"NY" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) -"NZ" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 5; d2 = 6; icon_state = "5-6"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Oa" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Ob" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Oc" = (/obj/structure/table/bench/steel,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/path/plains) -"Od" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 2"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_two) -"Oe" = (/obj/machinery/door/airlock{id_tag = "dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_3) -"Of" = (/turf/simulated/wall/r_wall,/area/surface/outpost/security/maa) -"Oh" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/closet,/obj/effect/floor_decal/corner/white/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Oi" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Oj" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"Om" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Oo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Op" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"Oq" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Os" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"Ot" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Ou" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Ov" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Ow" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_6) -"Ox" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "sec1_airlock_exterior"; locked = 1; name = "Security Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "sec1_airlock_control"; name = "External Access Button"; pixel_y = 26; req_one_access = list(1)},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/security) -"Oy" = (/obj/structure/dispenser/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_south) -"OA" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/landing_south) -"OB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/blast/shutters{dir = 8; id = "garage1"; name = "Garage Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_two) -"OC" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"OD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock Access 1"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"OE" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"OF" = (/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"OH" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "Internal Access Button"; pixel_x = -6; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_interior"; locked = 1; name = "Main Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) -"OI" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main4_airlock_control"; pixel_x = -5; tag_exterior_door = "main4_airlock_exterior"; tag_interior_door = "main4_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main4_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_north) -"OJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{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/surface/outpost/security) -"OK" = (/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river,/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"OL" = (/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"OM" = (/obj/structure/fitness/punchingbag,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"ON" = (/obj/structure/table/standard,/obj/item/stack/material/steel{amount = 10},/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"OO" = (/obj/item/weapon/towel{color = "#FF8C00"; name = "orange towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"OP" = (/obj/structure/showcase/sign{desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; name = "WARNING: HAIL STORMS"},/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"OQ" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"OR" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"OS" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/monitoring) -"OT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"OU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"OV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"OW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"OX" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"OY" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room/smes_left) -"OZ" = (/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Pa" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"Pb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Pc" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "mining2_airlock_control"; name = "Internal Access Button"; pixel_x = -26; pixel_y = -6; req_one_access = list(48,10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "mining2_airlock_interior"; locked = 1; name = "Mining Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/mining_main/tools) -"Pd" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Pe" = (/obj/machinery/door/firedoor/multi_tile/glass,/obj/machinery/door/airlock/multi_tile/metal{name = "Sauna"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/sauna) -"Pf" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"Pg" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"Ph" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/light{dir = 4},/obj/random/maintenance/engineering,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Pi" = (/obj/structure/fence/cut/large,/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outside/plains/outpost) -"Pj" = (/obj/structure/table/bench/marble,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Pk" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/left_upper) -"Pl" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"Pm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Po" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 6},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Ps" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Pt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) -"Pu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Pv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "SMES Access"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/gen_room) -"Pw" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"Py" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Pz" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/light/small{dir = 4},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"PA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 4; dir = 4; icon_state = "2-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/machinery/light{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/reactor_smes) -"PC" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"PD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"PE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"PF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"PG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"PJ" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"PK" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"PL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/right_three) -"PM" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"PN" = (/obj/machinery/floodlight,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/orange/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"PO" = (/turf/simulated/floor/water/shoreline{dir = 1},/area/surface/outside/ocean) -"PQ" = (/obj/machinery/pipedispenser,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"PR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"PS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"PT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/light{dir = 4},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"PU" = (/obj/effect/zone_divider,/turf/simulated/floor/water,/area/surface/outside/river/faxalven) -"PV" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"PW" = (/obj/effect/step_trigger/teleporter/bridge/east_to_west,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"PX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"PY" = (/obj/structure/sign/electricshock,/turf/simulated/wall,/area/surface/outpost/civilian/smes) -"PZ" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Search and Rescue"; req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/multi_tile/glass,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) -"Qa" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Qb" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Qd" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 6},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Qe" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Qf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"Qg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"Qh" = (/obj/structure/table/steel,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -25},/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Qi" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/glass,/obj/item/roller{pixel_x = 8; pixel_y = 1},/obj/item/roller{pixel_x = 8; pixel_y = 9},/obj/item/roller{pixel_x = -8; pixel_y = 1},/obj/item/roller{pixel_x = -8; pixel_y = 9},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Qj" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Qk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/button/remote/blast_door{id = "pen"; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Ql" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Qn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"Qo" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"Qp" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Qq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/orange/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Qr" = (/obj/structure/fence,/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Qt" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"Qu" = (/obj/random/junk,/obj/random/junk,/obj/random/contraband,/turf/simulated/floor/plating,/area/surface/outpost/main/laundry) -"Qv" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Air Tank Bypass Pump"},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Qx" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/heavyduty{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"Qy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Qz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"QA" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"QB" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/camera/network/security{c_tag = "SO - Security Checkpoint"; dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"QC" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"QD" = (/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Airlock Access 3"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"QG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/blue{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},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"QH" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"QI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable/heavyduty{d2 = 2; dir = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/border_only,/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"QJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/right_lower) -"QL" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"QM" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"QN" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/emergencystorage) -"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/plaque,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/corridor/right_upper) -"QP" = (/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/auxiliary_storage) -"QQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 1"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"QR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"QS" = (/obj/structure/fence,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"QT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "production1"; name = "Production Shutters"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/mining_main/refinery) -"QU" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"QV" = (/obj/machinery/door/airlock{id_tag = "dorm5"; name = "Dorm 5"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_5) -"QW" = (/turf/simulated/wall,/area/surface/outpost/main/gateway) -"QX" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 4},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"QY" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"QZ" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = -32},/obj/structure/dogbed,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Ra" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main3_airlock_control"; pixel_x = -5; tag_exterior_door = "main3_airlock_exterior"; tag_interior_door = "main3_airlock_interior"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "main3_airlock_control"; name = "Internal Access Button"; pixel_x = 5},/turf/simulated/wall/r_wall,/area/surface/outpost/main/airlock/landing_south) -"Rb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"Rd" = (/obj/structure/boxingrope{dir = 4},/obj/structure/boxingrope,/obj/structure/boxingrope{dir = 6; layer = 4.1},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"Re" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Rf" = (/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/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Rg" = (/obj/machinery/door/airlock{id_tag = "dorm6"; name = "Dorm 6"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_6) -"Rh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"Ri" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Rj" = (/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Rk" = (/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"Rl" = (/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/steel,/obj/item/weapon/handcuffs/fuzzy,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_left) -"Rm" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Rn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Ro" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Rp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = -6; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Rq" = (/obj/machinery/computer/gyrotron_control{id_tag = "Reactor Gyrotron"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/machinery/button/remote/blast_door/radproof{id = "EngineReactor"; name = "Reactor Blast Doors"; pixel_x = -25},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Rr" = (/turf/simulated/shuttle/wall/voidcraft,/area/surface/outside/lake/romsele) -"Rs" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ru" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Rv" = (/obj/machinery/computer/fusion_fuel_control{id_tag = "Reactor Fuel Injectors"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Rw" = (/obj/structure/table/rack,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/left_two) -"Rx" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/tool/crowbar/red,/obj/item/device/flashlight,/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing North Airlock"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"Ry" = (/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"Rz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"RA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"RB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/machinery/light/small{dir = 8},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/emergency_storage) -"RC" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main5_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main5_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outside/plains/outpost) -"RD" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/glass,/obj/item/clothing/accessory/stethoscope,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"RE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"RF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/landing_south) -"RG" = (/obj/machinery/vending/loadout/accessory,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"RH" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"RI" = (/obj/structure/table/steel,/obj/structure/closet/hydrant{pixel_y = -32},/obj/item/clothing/glasses/meson,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"RJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"RK" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/path/plains) -"RL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"RN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"RO" = (/obj/effect/step_trigger/teleporter/bridge/west_to_east,/obj/structure/railing{dir = 4},/turf/simulated/floor/water,/area/surface/outside/river/indalsalven) -"RP" = (/obj/effect/decal/cleanable/dirt,/obj/vehicle/train/engine/quadbike{dir = 2},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"RQ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack,/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Airlock 1"; dir = 8},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/obj/item/weapon/melee/umbrella{color = "#7c0d0d"},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"RS" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = 6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -6; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = 6; pixel_y = -6},/obj/effect/floor_decal/corner/purple{dir = 10},/obj/effect/floor_decal/corner/purple{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"RT" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 8},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"RV" = (/obj/structure/table/glass,/obj/item/clothing/mask/snorkel,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"RW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"RX" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"RY" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/yellow{d1 = 6; d2 = 9; icon_state = "6-9"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"RZ" = (/obj/machinery/computer/teleporter{dir = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/surface/outpost/main/teleporter) -"Sa" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Sb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/uxstorage) -"Sc" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_one) -"Sd" = (/obj/machinery/vending/nifsoft_shop{dir = 4},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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/surface/outpost/main/corridor/left_lower) -"Se" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Sf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"Sg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Sh" = (/obj/machinery/mineral/stacking_unit_console,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/refinery) -"Si" = (/obj/machinery/disposal,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Sj" = (/obj/machinery/conveyor{dir = 4; id = "mining_internal"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Sk" = (/obj/effect/zone_divider,/turf/simulated/shuttle/wall/voidcraft,/area/surface/outpost/wall) -"Sm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Sn" = (/obj/machinery/light,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"So" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"Sp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Sq" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Sr" = (/obj/structure/fitness/weightlifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Ss" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Su" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Sv" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Sx" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Sy" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Sz" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_south) -"SA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"SB" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"SC" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_two) -"SD" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SE" = (/obj/machinery/door/firedoor/border_only,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "sauna_tint2"},/obj/structure/window/reinforced/polarized{id = "sauna_tint2"},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"SF" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"SH" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle/candelabra,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_1) -"SJ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/mining_main) -"SK" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) -"SL" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/main_outpost{c_tag = "MO Right Wing - Hallway 5"; dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SN" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"SO" = (/obj/structure/sign/electricshock,/turf/simulated/wall/r_wall{cached_rad_resistance = 150},/area/surface/outpost/engineering/monitoring) -"SP" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gym) -"SQ" = (/obj/structure/table/woodentable,/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 3},/obj/item/weapon/towel{color = "#FF6666"; name = "light red towel"; pixel_y = 6},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"SR" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"ST" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Gateway"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"SU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/overlay/snow/floor,/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/path/plains) -"SV" = (/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"SW" = (/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/airlock/landing_south) -"SX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"SY" = (/turf/simulated/floor/water{outdoors = 0},/area/surface/outside/plains/mountains) -"SZ" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/oracarpet,/area/surface/outpost/main/dorms/dorm_1) -"Ta" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Tc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Te" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/dorms/dorm_3) -"Tf" = (/obj/machinery/hyperpad/centre{map_pad_id = "pad_1_away"; map_pad_link_id = "pad_1_station"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Tg" = (/obj/structure/closet/wardrobe/xenos,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Th" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Ti" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/structure/cable/blue{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Tj" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Tk" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Tl" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gen_room) -"Tm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"To" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 1},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 8},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Tq" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/orange/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Tr" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/border{dir = 8},/obj/item/weapon/storage/fancy/markers,/obj/random/toy,/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Ts" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Tt" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/machinery/camera/network/mining{c_tag = "PO - Mining Hallway 2"; dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Tu" = (/obj/structure/table,/obj/machinery/light_construct{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Tv" = (/obj/machinery/door/airlock{id_tag = "dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/dorms/dorm_4) -"Tw" = (/obj/structure/table/steel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/machinery/light,/obj/machinery/camera/network/mining{c_tag = "PO - Tool Storage"; dir = 4},/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Tx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Ty" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_1) -"Tz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/suit_cycler/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"TA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_one) -"TB" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/two) -"TC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/closet/secure_closet/pilot,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"TD" = (/obj/structure/fence{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 1},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"TE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"TF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/closet/toolcloset,/obj/item/weapon/storage/belt,/obj/item/weapon/storage/belt,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"TG" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"TH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"TI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"TL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"TM" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"TN" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/corner/yellow{dir = 9},/obj/effect/floor_decal/corner/yellow{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"TO" = (/turf/simulated/wall,/area/surface/outpost/main/restroom) -"TP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/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; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"TQ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"TR" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Explorer"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"TS" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/plating{icon_state = "asteroidplating2"},/area/surface/outpost/mining_main/exterior) -"TT" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main4_airlock_interior"; locked = 1; name = "Landing North Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/landing_north) -"TU" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"TV" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"TW" = (/obj/structure/closet/secure_closet/explorer,/obj/item/device/binoculars,/obj/machinery/status_display{pixel_x = -32},/obj/item/device/cataloguer,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"TX" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/left_two) -"TZ" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/weapon/storage/belt/utility/full,/obj/item/weapon/storage/belt/utility/full,/obj/effect/floor_decal/industrial/outline,/obj/item/clothing/head/welding,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Ua" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Ub" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Uc" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating,/area/surface/outside/plains/outpost) -"Ud" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Ue" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/heavyduty{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Uf" = (/obj/structure/closet,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Ug" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Uh" = (/turf/simulated/wall,/area/surface/outpost/civilian/sauna) -"Ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Airlock Access"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/airlock/left_two) -"Uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Uk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Ul" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"Um" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "mining1_airlock_control"; pixel_x = 26; pixel_y = -26; req_one_access = list(48); tag_exterior_door = "mining1_airlock_exterior"; tag_interior_door = "mining1_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Uo" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 1; id_tag = "Reactor Fuel Injectors"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Up" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/heavyduty{icon_state = "1-8"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/engineering/atmos_room) -"Uq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"Ur" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Us" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"Ut" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Uu" = (/turf/simulated/wall,/area/surface/outpost/mining_main/uxstorage) -"Uv" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Uw" = (/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/structure/cable/blue{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/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Ux" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/railing,/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"Uy" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/teleporter) -"Uz" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"UA" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/right_one) -"UB" = (/obj/effect/floor_decal/corner/red{dir = 6},/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"UC" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/radproof{id = "EngineReactor"; rad_resistance = 150},/turf/simulated/floor/reinforced,/area/surface/outpost/engineering/reactor_smes) -"UD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/power/hydromagnetic_trap,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"UE" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main2_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main2_airlock_control"; name = "External Access Button"; pixel_x = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_one) -"UF" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_upper) -"UG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"UH" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_one) -"UI" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"UJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"UK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"UL" = (/obj/structure/cable/blue,/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Security"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"UM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"UN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"UO" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"UP" = (/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/normal) -"UQ" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Outpost Reactor Power"; name_tag = "Outpost Reactor Power"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/structure/catwalk,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"UR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"US" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/purple/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"UT" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"UU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/closet/crate,/obj/machinery/camera/network/mining{c_tag = "PO - Mining Stocking"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"UV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"UW" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/surface/outpost/main/emergency_storage/one) -"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"UZ" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Va" = (/obj/machinery/computer/fusion_core_control{id_tag = "Outpost Fusion Core"},/obj/machinery/camera/emp_proof{c_tag = "ENG - Outpost Reactor Monitoring"; name = "Engineering_Outpost"; network = list("Engineering")},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Vb" = (/obj/structure/table/rack,/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/shoes/boots/winter,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/suit/storage/hooded/wintercoat,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/airlock/landing_north) -"Vc" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Vd" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Ve" = (/obj/structure/fence/cut/medium,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Vf" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Vg" = (/turf/simulated/wall/solidrock,/area/surface/outside/plains/mountains) -"Vh" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/frame/extinguisher_cabinet,/obj/item/weapon/extinguisher,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"Vj" = (/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Vk" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/storage) -"Vn" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "main8_airlock_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "main8_airlock_exterior"; tag_interior_door = "main8_airlock_interior"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/left_three) -"Vo" = (/obj/machinery/mineral/unloading_machine{icon_state = "unloader-corner"},/turf/simulated/floor/plating,/area/surface/outpost/mining_main/refinery) -"Vp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Vq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/monitoring) -"Vr" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/effect/overlay/snow/floor,/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"Vs" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Vt" = (/obj/machinery/button/remote/blast_door/radproof{name = "Engine Monitoring Room Blast Doors"; pixel_x = 23},/obj/machinery/computer/security/engineering,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/reactor_smes) -"Vu" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Vv" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Vy" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"Vz" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/bcarpet,/area/surface/outpost/main/dorms/dorm_4) -"VB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_north) -"VC" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/machinery/camera/network/main_outpost{c_tag = "MO - Landing South Airlock Access"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"VD" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/normal) -"VE" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"VF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 9},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"VG" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/reinforced/airless,/area/surface/outpost/engineering/reactor_smes) -"VH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VI" = (/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Emergency Storage"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/emergency_storage/two) -"VJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VK" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/surface/outpost/civilian/pool) -"VL" = (/turf/simulated/floor/outdoors/grass/sif/planetuse,/area/surface/outside/plains/outpost) -"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5},/turf/simulated/floor/plating,/area/surface/outpost/engineering/auxiliary_storage) -"VP" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/gen_room) -"VQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_lower) -"VR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_two) -"VT" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/action_figure,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"VU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/mineral/equipment_vendor{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"VV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"VY" = (/obj/item/weapon/stool/padded,/obj/machinery/camera/network/civilian{c_tag = "CO - Pool 1"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"VZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor) -"Wa" = (/obj/machinery/scale,/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Wb" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/gym) -"Wc" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"We" = (/obj/structure/closet/crate{name = "Deuterium Storage"},/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/obj/item/weapon/fuel_assembly/deuterium,/turf/simulated/floor/plating,/area/surface/outpost/engineering/storage) -"Wg" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Wh" = (/obj/machinery/vending/nifsoft_shop{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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/surface/outpost/main/corridor/right_upper) -"Wi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Wj" = (/obj/machinery/vending/loadout/overwear,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Wk" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Wl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"Wm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/table/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -25},/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Wn" = (/obj/effect/zone_divider,/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"Wo" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"Wp" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"Wq" = (/obj/structure/table/rack,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/item/weapon/material/fishing_rod/modern/cheap,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"Wr" = (/obj/machinery/door/firedoor/glass,/obj/item/tape/engineering,/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"Ws" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Wt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"Wv" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment,/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/overlay/snow/floor/edges{dir = 8},/obj/effect/overlay/snow/floor/edges{dir = 4},/obj/effect/zone_divider,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Ww" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Wx" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"Wy" = (/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/machinery/camera/network/mining{c_tag = "PO - Airlock Access 2"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Wz" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ENG_Outpost_airlock_control"; name = "Internal Access Button"; pixel_x = 5; pixel_y = 26; req_one_access = list(10)},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "ENG_Outpost_airlock_interior"; locked = 1; name = "Engineering Outpost Internal"},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/engineering/monitoring) -"WA" = (/obj/structure/closet/secure_closet/sar,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/item/roller/adv,/turf/simulated/floor/tiled,/area/surface/outpost/main/search_and_rescue) -"WB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/engineering/atmos_room) -"WC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"WD" = (/obj/random/toolbox,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"WE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_2) -"WG" = (/obj/structure/flora/pottedplant/fern,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/sauna) -"WH" = (/obj/machinery/vending/cola{dir = 8},/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/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/surface/outpost/main/corridor/left_lower) -"WI" = (/obj/structure/closet/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/head/radiation,/obj/item/clothing/suit/radiation,/obj/item/clothing/suit/radiation,/obj/item/device/geiger,/obj/item/device/geiger,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"WJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"WK" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "main1_airlock_exterior"; locked = 1; name = "Main Outpost External"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "main1_airlock_control"; name = "External Access Button"; pixel_y = -26},/turf/simulated/floor/tiled/steel_ridged,/area/surface/outpost/main/airlock/right_two) -"WL" = (/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"WM" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/main/exploration/containment) -"WN" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/structure/cable/blue{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},/obj/effect/floor_decal/industrial/danger{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/teleporter) -"WO" = (/obj/machinery/disposal,/obj/machinery/button/remote/airlock{id = "dorm3"; name = "Door Lock Control"; pixel_y = -25; specialfunctions = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"WP" = (/turf/simulated/floor/outdoors/rocks/sif/planetuse,/area/surface/outside/plains/normal) -"WQ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/exploration) -"WR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"WS" = (/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"WT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/restroom) -"WV" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) -"WW" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"WX" = (/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_three) -"WY" = (/obj/effect/zone_divider,/turf/simulated/floor/water/deep,/area/surface/outside/river/indalsalven) -"WZ" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Pool"},/obj/machinery/door/firedoor/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/pool) -"Xa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"Xb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/dorms) -"Xc" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Xd" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/material/ashtray/plastic,/obj/machinery/recharger,/obj/effect/floor_decal/corner/red/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Xe" = (/obj/effect/overlay/snow/floor,/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/structure/cable/heavyduty{icon_state = "1-2"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Xf" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Xg" = (/obj/machinery/button/remote/blast_door{id = "garage1"; name = "Garage Shutter Control"; pixel_x = 22; req_one_access = list(48,43)},/turf/simulated/floor/outdoors/dirt/sif/planetuse,/area/surface/outpost/main/airlock/right_two) -"Xh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_4) -"Xi" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "Reactor Fuel Injectors"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Xj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"Xk" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Xl" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/obj/structure/extinguisher_cabinet{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) -"Xm" = (/turf/simulated/floor/plating,/area/surface/outpost/engineering/reactor_smes) -"Xn" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/bed/chair/office/light{dir = 8},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Xo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external/public{name = "Outpost Access"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Xp" = (/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/obj/item/device/gps/security,/turf/simulated/floor/tiled,/area/surface/outpost/security) -"Xq" = (/obj/structure/closet/toolcloset,/obj/item/device/flashlight/maglight,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration) -"Xs" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Xt" = (/obj/structure/sink{pixel_y = 16},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Xu" = (/turf/simulated/wall,/area/surface/outpost/civilian/fishing) -"Xv" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/left_three) -"Xw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/teleporter) -"Xx" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"Xy" = (/obj/effect/floor_decal/borderfloor/cee{dir = 1},/obj/effect/floor_decal/industrial/danger/cee{dir = 1},/obj/machinery/door/window/brigdoor/westright{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/window/brigdoor/eastleft{name = "Containment Pen"; req_one_access = list(43,1)},/obj/machinery/door/blast/regular/open{id = "pen"; name = "Containment Lockdown Blast Doors"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"Xz" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"XA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"XB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"XC" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet,/area/surface/outpost/main/dorms/dorm_6) -"XD" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/white/bordercorner{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/surface/outpost/main/corridor) -"XE" = (/turf/simulated/mineral/sif,/area/surface/outside/plains/mountains) -"XF" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"XG" = (/obj/structure/catwalk,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/surface/outpost/security/smes) -"XH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"XI" = (/obj/structure/table/steel,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"XJ" = (/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"XK" = (/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/surface/outpost/main/bar) -"XL" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"XM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/surface/outpost/main/dorms/dorm_3) -"XN" = (/turf/simulated/floor/water/deep,/area/surface/outside/lake/romsele) -"XO" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/main/search_and_rescue) -"XP" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green,/obj/machinery/light_switch{pixel_x = 22},/turf/simulated/floor/carpet/blue,/area/surface/outpost/main/dorms/dorm_5) -"XQ" = (/turf/simulated/wall/r_wall,/area/surface/outpost/mining_main/tools) -"XR" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/landing_south) -"XS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Custodial Closet"; req_one_access = list(26)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/janitor) -"XU" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{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},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"XV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_4) -"XW" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_upper) -"XX" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"XY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"XZ" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/surface/outpost/security) -"Ya" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/surface/outpost/civilian/pool) -"Yb" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_3) -"Yc" = (/turf/simulated/wall,/area/surface/outpost/mining_main/refinery) -"Yd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -25},/turf/simulated/floor/holofloor/wood,/area/surface/outpost/main/gym) -"Ye" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_lower) -"Yf" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/white/bordercorner2,/obj/structure/closet/emcloset,/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Yg" = (/obj/machinery/washing_machine,/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},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Yh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/white/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Yi" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/tools) -"Yj" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"Yk" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/white/border{dir = 6},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Yl" = (/obj/item/weapon/towel{color = "#800080"; name = "purple towel"},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"Ym" = (/obj/structure/closet/crate/secure/gear{name = "explorer crate"; req_access = list(43)},/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/corridor/right_upper) -"Yn" = (/obj/structure/fence{dir = 8},/obj/effect/zone_divider,/turf/simulated/floor/outdoors/snow/sif/planetuse,/area/surface/outside/plains/outpost) -"Yo" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"Yp" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/gateway) -"Yq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/white/bordercorner2{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/symbol/da{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Yr" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_two) -"Ys" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_y = 24},/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"Yt" = (/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/white/border{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Yu" = (/obj/machinery/atmospherics/binary/pump/on,/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"Yv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/airlock/right_one) -"Yw" = (/turf/simulated/floor/water,/area/surface/outside/plains/mountains) -"Yy" = (/obj/effect/decal/remains/ribcage,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/surface/outside/plains/outpost) -"Yz" = (/turf/unsimulated/wall/planetary/sif,/area/surface/outside/river/indalsalven) -"YA" = (/obj/effect/overlay/snow/floor,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/mining_main/storage) -"YB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_2) -"YC" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/security) -"YD" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"YE" = (/obj/effect/floor_decal/corner/red{dir = 9},/obj/effect/floor_decal/corner/red{dir = 6},/obj/structure/table/reinforced,/obj/item/weapon/storage/box,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/surface/outpost/security/maa) -"YF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/effect/overlay/snow/floor,/obj/effect/overlay/snow/floor/edges{dir = 4},/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/outpost) -"YG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"YH" = (/obj/effect/overlay/snow/floor,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/civilian/smes) -"YI" = (/obj/effect/floor_decal/steeldecal/steel_decals1,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/refinery) -"YJ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/computer/guestpass{pixel_y = 28},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main) -"YK" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/corner/purple/border,/obj/item/clothing/suit/caution,/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"YL" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"YM" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/orange/border{dir = 8},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/blue,/obj/machinery/light_switch{pixel_x = -22; pixel_y = -10},/turf/simulated/floor/tiled,/area/surface/outpost/civilian/fishing) -"YO" = (/turf/simulated/wall/r_wall,/area/surface/outpost/main/showers) -"YP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Laundry"},/turf/simulated/floor/tiled/steel_grid,/area/surface/outpost/main/laundry) -"YQ" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/turf/simulated/floor/plating,/area/surface/outpost/main/bar) -"YR" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"YS" = (/obj/machinery/vending/fitness{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/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,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/gym) -"YT" = (/obj/effect/landmark/start{name = "Search and Rescue"},/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"YU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"YV" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/surface/outpost/engineering/monitoring) -"YW" = (/turf/simulated/wall,/area/surface/outpost/main/dorms/dorm_2) -"YX" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"YZ" = (/obj/structure/closet/secure_closet/miner,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Za" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/camera/network/main_outpost{c_tag = "MO Left Wing - Hallway 1"; dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Zb" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/civilian/fishing) -"Zc" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"Zd" = (/obj/structure/cable/blue{d2 = 4; icon_state = "0-4"},/obj/machinery/power/smes/buildable/outpost_substation{RCon_tag = "Outpost - Right Wing"; charge = 5e+006; input_attempt = 1; input_level = 150000; output_level = 150000},/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Zf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/white/bordercorner,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"Zg" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_y = 24},/obj/structure/cable/blue{d2 = 2; icon_state = "0-2"},/obj/machinery/light_switch{pixel_x = -12; pixel_y = 22},/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/refinery) -"Zh" = (/obj/effect/floor_decal/corner/white{dir = 9},/obj/effect/floor_decal/corner/white{dir = 6},/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Zj" = (/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor/tiled/monotile,/area/surface/outpost/mining_main/storage) -"Zk" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/structure/window/basic,/obj/structure/window/basic{dir = 8},/obj/item/weapon/mining_scanner,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/head/helmet/space/void/mining,/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"Zl" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/turf/simulated/floor/plating,/area/surface/outpost/main/corridor/left_upper) -"Zm" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/light_switch{pixel_x = 22; pixel_y = -10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/surface/outpost/main/janitor) -"Zn" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/white/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"Zo" = (/obj/structure/table/steel,/obj/machinery/power/apc{name = "south bump"; pixel_y = -24},/obj/structure/cable/blue{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating,/area/surface/outpost/main/gen_room/smes_right) -"Zp" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/showers) -"Zq" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/surface/outpost/civilian/sauna) -"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"Zt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/white/border,/obj/machinery/door/firedoor/glass/hidden{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/right_upper) -"Zu" = (/turf/simulated/floor/plating/sif/planetuse,/area/surface/outside/plains/normal) -"Zv" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/white/border{dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/surface/outpost/main/gateway) -"Zx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) -"Zy" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/surface/outside/plains/outpost) -"Zz" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor/left_lower) -"ZA" = (/obj/structure/closet/emcloset,/obj/machinery/camera/network/engineering_outpost{c_tag = "ENG - Mining Outpost Power 2"},/turf/simulated/floor/plating,/area/surface/outpost/engineering/atmos_room) -"ZB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ZC" = (/obj/item/weapon/stool/padded,/obj/structure/boxingrope{dir = 8},/turf/simulated/floor/boxing,/area/surface/outpost/main/gym) -"ZD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/blue{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/surface/outpost/main/exploration/containment) -"ZE" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ZF" = (/obj/effect/overlay/snow/floor,/obj/machinery/light/small,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/overlay/snow/floor/edges{dir = 1},/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outpost/main/airlock/landing_north) -"ZG" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/civilian/pool) -"ZI" = (/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/surface/outpost/main/airlock/right_one) -"ZJ" = (/obj/effect/overlay/snow/floor,/obj/structure/cable/heavyduty{icon_state = "4-8"},/obj/effect/overlay/snow/floor/edges,/turf/simulated/floor/tiled/steel/sif/planetuse,/area/surface/outside/plains/outpost) -"ZK" = (/turf/simulated/wall/r_wall,/area/surface/outpost/engineering/smes) -"ZL" = (/obj/structure/table/bench/standard,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/surface/outpost/main/exploration) -"ZM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_5) -"ZN" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main/uxstorage) -"ZO" = (/obj/machinery/conveyor{id = "mining_north"},/obj/machinery/mineral/output,/turf/simulated/floor/plating,/area/surface/outpost/mining_main/exterior) -"ZP" = (/obj/random/technology_scanner,/turf/simulated/floor/plating,/area/surface/outpost/main/construction_area) -"ZQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 8; pixel_x = 22},/turf/simulated/floor/wood,/area/surface/outpost/main/dorms/dorm_3) -"ZR" = (/obj/structure/table/glass,/obj/structure/cable/blue{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/item/weapon/backup_implanter{pixel_y = -6},/obj/item/weapon/backup_implanter{pixel_y = 6},/obj/item/weapon/backup_implanter{pixel_y = 12},/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/white,/area/surface/outpost/main/search_and_rescue) -"ZS" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light/spot{dir = 1},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) -"ZT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/surface/outpost/mining_main/storage) -"ZU" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/wood,/area/surface/outpost/civilian/sauna) -"ZV" = (/obj/structure/toilet,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/main/dorms/dorm_5) -"ZW" = (/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 = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/blue{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/surface/outpost/main/corridor) -"ZX" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 4},/obj/structure/catwalk,/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/random/powercell,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/plating,/area/surface/outpost/engineering/smes) -"ZY" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/corner/white{dir = 6},/obj/effect/floor_decal/corner/white{dir = 9},/turf/simulated/floor/tiled,/area/surface/outpost/main/laundry) -"ZZ" = (/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled/freezer,/area/surface/outpost/civilian/pool) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"ab" = ( +/obj/structure/table/steel, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"ac" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"ad" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ae" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"af" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ag" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"ah" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"ai" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Gym"; + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"aj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"am" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"an" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"ao" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"ap" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/computer/cryopod/gateway{ + pixel_y = 30 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"aq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/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/main_outpost{ + c_tag = "MO Left Wing - Hallway 4"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ar" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Left Wing"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"as" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"at" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"au" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"av" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"aw" = ( +/obj/machinery/vending/sol{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ax" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ay" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"az" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"aA" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/material/ashtray, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"aB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"aD" = ( +/obj/effect/mist, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/sauna) +"aE" = ( +/obj/structure/fence/cut/large, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"aF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) +"aG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aJ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"aK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"aL" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"aM" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"aN" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23; + pixel_y = 12 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/main/exploration/containment) +"aP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"aQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"aR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"aS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"aT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"aV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"aW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"aX" = ( +/obj/structure/cable/cyan{ + 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/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"aY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"aZ" = ( +/obj/structure/closet/crate, +/obj/item/weapon/tool/crowbar/red, +/obj/item/frame/light, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"ba" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/emergency_storage) +"bb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main5_airlock_control"; + pixel_x = 26; + pixel_y = -26; + tag_exterior_door = "main5_airlock_exterior"; + tag_interior_door = "main5_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"bc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"bf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"bg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"bh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"bi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"bj" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_north"; + name = "mining conveyor" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"bk" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main8_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main8_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_three) +"bl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/surface/outpost/security) +"bm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"bn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"bo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"bp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Outpost Substation"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/engineering/smes) +"bq" = ( +/obj/structure/fence/post{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"br" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"bs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"bt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"bu" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/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, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"bv" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"bw" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"bx" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/weapon/material/ashtray/plastic, +/obj/random/cigarettes, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"by" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"bz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"bD" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"bE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/item/weapon/extinguisher/mini, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"bG" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_three) +"bH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"bI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"bK" = ( +/obj/item/device/universal_translator, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"bL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"bM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"bN" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/storage) +"bO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_1) +"bP" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/mountains) +"bQ" = ( +/obj/structure/boxingropeenter{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"bR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"bS" = ( +/obj/structure/table/glass, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"bT" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"bV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"bW" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/structure/bedsheetbin, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"bX" = ( +/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/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"bY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"bZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"ca" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"cb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/surface/outpost/security) +"cc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"cd" = ( +/obj/structure/boxingrope{ + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"ce" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"cf" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"cg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"ch" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ci" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"cj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ck" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/security) +"cl" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"cm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cn" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"co" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/lapvend, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/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{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"cq" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"cr" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/emergencystorage) +"cs" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"cu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"cv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"cx" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"cy" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"cz" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"cB" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"cD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"cE" = ( +/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/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_lower) +"cF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"cG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"cI" = ( +/obj/machinery/button/remote/blast_door{ + id = "garage2"; + name = "Garage Shutter Control"; + pixel_x = 22 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"cJ" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/outside/plains/mountains) +"cK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "civ1_airlock_control"; + pixel_x = -26; + pixel_y = 26; + tag_exterior_door = "civ1_airlock_exterior"; + tag_interior_door = "civ1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"cM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"cO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"cP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"cQ" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"cR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"cS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"cT" = ( +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"cU" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"cW" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"cX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Medical Supplies"; + req_access = null; + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"cY" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Exploration Prep"; + req_access = null; + req_one_access = list(43,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration) +"cZ" = ( +/obj/structure/snowman{ + name = "Frosty" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"da" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"db" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"dc" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"dd" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"de" = ( +/obj/machinery/vending/medical{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Search and Rescue Port" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"df" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"dg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dh" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"dk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dm" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"dn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"do" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 4"; + dir = 1; + name = "MO Right Wing - Hallway Three" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"dp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"dq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"dr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"dt" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"du" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_4) +"dv" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"dw" = ( +/obj/structure/table/steel, +/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 + }, +/obj/item/weapon/storage/box/nifsofts_mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"dy" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_6) +"dA" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"dB" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint2" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "sauna_tint2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"dE" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Outpost Parallel - Main 2"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 100 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"dF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"dG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/laundry) +"dH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"dI" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"dJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"dK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"dN" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"dO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"dP" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/smes) +"dQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room Internal Access"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"dR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"dS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"dT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"dV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"dW" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/dice/d20, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"dY" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"dZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"ea" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"eb" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"ec" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ed" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"ef" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 6"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"eh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/emergency_storage/one) +"ej" = ( +/obj/machinery/vending/loadout/loadout_misc, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Laundry 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ek" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"el" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"em" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"en" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"eo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ep" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"eq" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"er" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"es" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"et" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eu" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/tools) +"ev" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"ew" = ( +/obj/machinery/space_heater, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ex" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"ez" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eB" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"eC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"eD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/vending/giftvendor, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eE" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"eF" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"eG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"eH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"eI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/dorms) +"eJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"eL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"eM" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"eN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"eO" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"eP" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main) +"eQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"eR" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"eS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"eT" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"eU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"eV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"eW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"eX" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"eY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"fa" = ( +/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/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"fb" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"fc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost SMES Room"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"fd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"fe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ff" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/surface/outside/plains/normal; + base_turf = /turf/simulated/floor/outdoors/snow/sif/planetuse; + landmark_tag = "outpost_nw"; + name = "Northwest Outpost Perimiter" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"fg" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/storage/box/wormcan/sickly{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/wormcan/sickly{ + pixel_x = 3 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Fishing 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"fj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"fl" = ( +/obj/item/weapon/banner/virgov, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"fm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"fn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"fo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"fp" = ( +/turf/simulated/floor/water/shoreline, +/area/surface/outside/ocean) +"fq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"fr" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"fs" = ( +/obj/structure/table/glass, +/obj/item/clothing/shoes/swimmingfins, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ft" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"fu" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"fv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"fw" = ( +/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/surface/outpost/main/corridor) +"fx" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"fy" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"fz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"fA" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"fB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"fC" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"fD" = ( +/obj/machinery/mineral/input, +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_external" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"fE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/outpost/mining_main/exterior) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"fG" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"fH" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 3"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled, +/area/surface/outside/plains/outpost) +"fI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Airlock"; + dir = 9; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"fJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"fK" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"fL" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"fM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"fN" = ( +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"fO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"fP" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "sec1_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = 26; + req_one_access = list(1) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec1_airlock_interior"; + locked = 1; + name = "Security Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/security) +"fQ" = ( +/turf/simulated/wall, +/area/surface/outside/path/plains) +"fS" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"fT" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main3_airlock_control"; + name = "External Access Button" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"fU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"fV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"fY" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"fZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ga" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"gb" = ( +/turf/simulated/floor/reinforced, +/area/surface/outpost/main/exploration/containment) +"gc" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"gd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ge" = ( +/obj/item/clothing/suit/caution, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"gf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"gg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"gj" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/search_and_rescue) +"gk" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/left_upper) +"gl" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"gm" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"go" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"gp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"gr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"gs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"gu" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"gw" = ( +/obj/machinery/fusion_fuel_compressor, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Fuel Storage"; + dir = 6; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"gx" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"gy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1438; + id = "rust_cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"gz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"gB" = ( +/obj/machinery/button/windowtint{ + id = "sauna_tint1"; + pixel_x = -5; + pixel_y = 22 + }, +/obj/machinery/button/windowtint{ + id = "sauna_tint2"; + pixel_x = 6; + pixel_y = 22 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"gC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"gD" = ( +/turf/simulated/floor/water/shoreline{ + dir = 9 + }, +/area/surface/outside/ocean) +"gE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"gG" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/mountains) +"gH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"gI" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"gJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/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{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"gK" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_left) +"gL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"gM" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"gN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"gO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) +"gP" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"gQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"gR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"gS" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"gT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"gV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"gW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"gX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"gZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ha" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"hc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_6) +"hd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"he" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 1"; + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"hf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"hg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"hh" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = newlist(); + req_one_access = list(43,67) + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/obj/item/weapon/gun/energy/locked/frontier, +/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/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"hi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"hk" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"hl" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main7_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main7_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_two) +"hm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/fitness/punching_bag/clown, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"hn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ho" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"hq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"hr" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "civ2_airlock_control"; + name = "Internal Access Button"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ2_airlock_interior"; + locked = 1; + name = "Civilian Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/sauna) +"hs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Airlock Access 2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"ht" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"hu" = ( +/obj/machinery/disposal, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"hv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"hw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"hx" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"hy" = ( +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Shuttle Landing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"hA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/camera/network/security{ + c_tag = "SO - Airlock Access"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"hB" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"hC" = ( +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"hD" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"hE" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"hF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hG" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"hH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"hI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"hJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"hK" = ( +/turf/simulated/floor/outdoors/snow, +/area/surface/outside/plains/outpost) +"hL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"hM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"hN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"hO" = ( +/turf/simulated/floor/water/shoreline{ + dir = 8 + }, +/area/surface/outside/ocean) +"hP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/symbol/lo{ + pixel_x = -32 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"hR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"hS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Tool Storage"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"hT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"hU" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"hV" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"hW" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"hX" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"hZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ib" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/emergency_storage/two) +"ic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_three) +"id" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ie" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"if" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"ig" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outside/plains/outpost) +"ih" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/item/weapon/pickaxe, +/obj/item/device/gps/mining, +/obj/item/clothing/head/hardhat/orange, +/obj/machinery/vending/wallmed1{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ii" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"ij" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"il" = ( +/obj/structure/fence/corner, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"im" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"in" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ip" = ( +/obj/effect/shuttle_landmark{ + landmark_tag = "response_ship_planet"; + name = "Sif Surface East" + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"iq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"is" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"it" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"iu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"iw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ix" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"iy" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"iz" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"iA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"iC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"iD" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"iE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"iF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/plains/normal) +"iG" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"iH" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"iI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"iJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/animal/passive/mouse/mining, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"iK" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"iL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/grille, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"iM" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_one) +"iN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"iO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"iR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"iS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "rustengine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"iU" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "ENG_Outpost_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "ENG_Outpost_airlock_exterior"; + tag_interior_door = "ENG_Outpost_airlock_interior" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"iV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"iW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"iX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"iY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"iZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"ja" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"jb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"jc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"jd" = ( +/obj/structure/cable/blue{ + 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/surface/outpost/security/maa) +"je" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_engineering{ + name = "Reactor Monitoring Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/engineering/monitoring) +"jf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"jg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"ji" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"jj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"jk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"jl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"jm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jn" = ( +/obj/item/stack/material/wood, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"jo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"jr" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"js" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"jt" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ju" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining2_airlock_exterior"; + locked = 1; + name = "Mining Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining2_airlock_control"; + name = "External Access Button"; + pixel_x = -26; + req_one_access = list(48,10) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/tools) +"jv" = ( +/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 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"jw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/mask/gas, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"jx" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_north) +"jy" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "sec1_airlock_control"; + pixel_x = 26; + pixel_y = 26; + req_one_access = list(1); + tag_exterior_door = "sec1_airlock_exterior"; + tag_interior_door = "sec1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"jz" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"jA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter Hallway" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jE" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"jF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"jH" = ( +/obj/structure/sign/warning/caution{ + desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; + name = "\improper WARNING: NO ACCESS" + }, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"jI" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"jJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"jK" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -11 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"jL" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"jM" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"jN" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"jO" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"jQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"jR" = ( +/obj/machinery/vending/foodasian{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"jS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"jT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"jU" = ( +/obj/item/weapon/stock_parts/motor, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"jV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"jW" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"jX" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"jY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"jZ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ka" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Fauna Containment"; + req_one_access = list(1,43) + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"kc" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ke" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"kf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"kg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"kh" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"ki" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"kj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/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/surface/outpost/main/corridor/left_upper) +"kk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/standard, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/gloves/boxing/blue, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"kl" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"km" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"kn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/mining_scanner, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ko" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"kp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"kq" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/matches, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"ks" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"ku" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"kv" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"kw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"kx" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_right) +"ky" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"kz" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/structure/cable/blue{ + 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/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"kA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kB" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"kC" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main7_airlock_control"; + name = "Internal Access Button"; + pixel_x = 6; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main7_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_two) +"kD" = ( +/obj/structure/table/bench/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"kE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kF" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"kG" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"kH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"kI" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/tool, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Main Outpost"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"kJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"kK" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/search_and_rescue) +"kL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/smes) +"kM" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"kN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"kO" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + 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/surface/outpost/main/corridor) +"kP" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"kQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"kR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"kS" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"kU" = ( +/obj/machinery/mineral/input, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"kV" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"kW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "Teleporter Access"; + req_access = newlist(); + req_one_access = list(17) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"kX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/heater/sauna{ + dir = 8; + icon_state = "heater_1"; + use_power = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"kY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"kZ" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"la" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lb" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"lc" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"ld" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_1) +"le" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"lf" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"lg" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 3" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"li" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"lj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main) +"lk" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Pool 2"; + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"lm" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main8_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main8_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_three) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lp" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"lq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"lr" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ls" = ( +/obj/machinery/vending/loadout, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"lt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"lu" = ( +/obj/item/clothing/head/hardhat/orange, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"lw" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"lx" = ( +/obj/structure/table/marble, +/obj/item/device/starcaster_news, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ly" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"lz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"lA" = ( +/turf/simulated/wall/dungeon{ + icon = 'icons/obj/doors/shuttledoors.dmi'; + icon_state = "door_locked"; + name = "Wall Gate" + }, +/area/surface/outpost/wall) +"lB" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"lC" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + rad_resistance = 150 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lD" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"lE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"lF" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lG" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"lI" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"lK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"lL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"lM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"lN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"lP" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/cave) +"lQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"lR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"lS" = ( +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"lT" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"lU" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"lV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/main_outpost{ + c_tag = "ATV Garage 2"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"lW" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/atmos_room) +"lX" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Outpost Parallel - Main 1"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 750000 + }, +/obj/structure/cable, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"lY" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"lZ" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"ma" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"mb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"mc" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_two) +"md" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"mf" = ( +/obj/structure/cable/cyan{ + 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/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"mh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"mi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"mj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"mk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"ml" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"mm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"mn" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/obj/structure/boxingrope{ + dir = 4 + }, +/obj/structure/boxingrope{ + dir = 6 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"mo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"mq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"mr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"ms" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"mt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"mu" = ( +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"mv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"mw" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"mx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/pilot, +/obj/item/device/cataloguer/compact, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"my" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"mz" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/syndie, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"mA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"mB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"mC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"mD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"mE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"mF" = ( +/obj/machinery/vending/fishing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mG" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"mI" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"mJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/exploration/containment) +"mK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"mL" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/light, +/obj/item/device/communicator, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"mM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"mN" = ( +/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/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"mO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"mP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"mQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"mR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"mS" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ1_airlock_exterior"; + locked = 1; + name = "Civilian Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "civ1_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/fishing) +"mT" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"mU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"mV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"mW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret/industrial/teleport_defense, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/teleporter) +"mX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"mY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "SUBS - Eng Outpost"; + dir = 4; + name = "Engineering_Outpost"; + network = list("Engineering Outpost") + }, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"na" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/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/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nc" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"nd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"ne" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/shoreline{ + dir = 8 + }, +/area/surface/outside/ocean) +"nf" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Auxiliary Room"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ng" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"nh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ni" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"nj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"nm" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/locked/phasegun/rifle{ + pixel_y = -4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Hallway 1" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"no" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"np" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"nq" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"nr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ns" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"nt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"nv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"nw" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"nx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"ny" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-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/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"nz" = ( +/obj/effect/floor_decal/borderfloor/cee, +/obj/effect/floor_decal/industrial/danger/cee, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Containment Pen"; + req_access = newlist(); + req_one_access = list(43,1) + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Containment Pen"; + req_access = newlist(); + req_one_access = list(43,1) + }, +/obj/machinery/door/blast/regular/open{ + id = "pen"; + name = "Containment Lockdown Blast Doors" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"nA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"nC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"nD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"nE" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"nF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"nG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"nH" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"nI" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/smes) +"nJ" = ( +/obj/structure/table/rack/shelf/steel, +/obj/fiftyspawner/phoronglass, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/steel, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"nK" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"nL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"nM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"nN" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"nO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"nP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"nQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"nR" = ( +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Engineering Outpost"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/obj/structure/cable/blue, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"nS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"nT" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/reactor_smes) +"nU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"nV" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/fishing) +"nW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"nX" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"nY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"nZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"oa" = ( +/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/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"ob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/main_outpost{ + c_tag = "ATV Garage 1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"od" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"oe" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"of" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"og" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oh" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"oi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"oj" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"ok" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ol" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"om" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/clothing/mask/gas/half, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"on" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oo" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/weapon/pickaxe, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"op" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"os" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/random/soap, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"ot" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ou" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"ow" = ( +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"ox" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oy" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"oA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"oC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"oD" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/monitoring) +"oE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"oF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"oH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"oI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "mining1_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = -26; + req_one_access = list(48) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining1_airlock_interior"; + locked = 1; + name = "Mining Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/storage) +"oJ" = ( +/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/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"oL" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"oM" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor) +"oN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oO" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"oP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"oQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"oR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_one) +"oS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"oT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"oU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"oV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"oX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"oY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"oZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"pa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"pb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"pd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"pe" = ( +/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 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"pf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"pg" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ph" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"pj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"pm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"pn" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 2"; + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"po" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"pp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"pu" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pw" = ( +/obj/structure/fence/end{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"px" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"py" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"pz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/lapvend{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/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{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"pA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"pB" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"pC" = ( +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/outside/plains/mountains) +"pD" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/item/weapon/tank/oxygen{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/weapon/tank/oxygen{ + pixel_x = 1; + pixel_y = -5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"pE" = ( +/obj/structure/stasis_cage, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"pF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"pG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"pH" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"pJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/engine/quadbike{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"pK" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"pL" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"pM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"pN" = ( +/turf/simulated/wall, +/area/surface/outpost/main/search_and_rescue) +"pO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"pP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"pQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"pR" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/item/clothing/gloves/duty, +/obj/item/clothing/gloves/duty, +/obj/item/clothing/under/serviceoveralls, +/obj/item/clothing/under/serviceoveralls, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"pS" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"pT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"pU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"pV" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"pW" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 1 + }, +/area/surface/outside/ocean) +"pX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"pY" = ( +/obj/item/stack/flag/green{ + pixel_x = -4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"pZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"qb" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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 = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"qd" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 5; + tag_north = 2; + tag_south = 1; + tag_west = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"qe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"qf" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qg" = ( +/turf/simulated/wall, +/area/surface/outpost/main/bar) +"qh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"qi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qj" = ( +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room Access"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/monitoring) +"ql" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"qm" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"qn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qo" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"qp" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"qq" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"qs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Auxiliary Room"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + d1 = 9; + d2 = 10; + icon_state = "9-10" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"qt" = ( +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"qu" = ( +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"qv" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"qw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Outpost SMES Room"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"qx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"qy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"qA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"qB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"qC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"qD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"qE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"qF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"qG" = ( +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"qH" = ( +/obj/structure/table/glass, +/obj/item/weapon/inflatable_duck, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"qK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"qL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"qM" = ( +/obj/item/modular_computer/console/preset/security, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qN" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/smes) +"qO" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"qP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"qQ" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"qR" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"qT" = ( +/turf/simulated/wall, +/area/surface/outpost/main/exploration) +"qU" = ( +/obj/machinery/conveyor_switch{ + id = "mining_external" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"qV" = ( +/turf/simulated/wall, +/area/surface/outpost/main/corridor/left_lower) +"qW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/thermoregulator, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"qY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"qZ" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 2"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"ra" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"rb" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/stack/material/lead{ + amount = 30 + }, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plasteel, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/item/stack/material/copper{ + amount = 25 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"rc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"rd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"re" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"rf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"rg" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main5_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main5_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outside/plains/outpost) +"rh" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Construction Area" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_lower) +"ri" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"rj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Construction Area" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/left_upper) +"rk" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"rl" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"rm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"rn" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"ro" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Civilian"; + charge = 500000; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"rq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"rr" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ2_airlock_exterior"; + locked = 1; + name = "Civilian Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "civ2_airlock_control"; + name = "External Access Button"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/sauna) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"ru" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"rv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"rw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ry" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"rz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"rA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"rB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"rC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"rD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/engineering/monitoring) +"rE" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"rF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"rG" = ( +/obj/machinery/vending/fitness{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"rI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration) +"rK" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"rL" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 5; + tag_west = 1; + use_power = 0 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"rM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/uxstorage) +"rN" = ( +/obj/structure/closet/lasertag/red, +/obj/item/stack/flag/red, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"rO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"rP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"rQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"rR" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"rS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/tcomm) +"rT" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"rU" = ( +/obj/machinery/vending/loadout/clothing, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"rV" = ( +/turf/simulated/wall/solidrock, +/area/surface/outpost/wall) +"rW" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main) +"rY" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/exterior) +"rZ" = ( +/obj/structure/table/rack, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/item/stack/cable_coil/silver, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"sa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"sb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Custodial Closet"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"sc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"sd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"se" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"sf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "production1"; + name = "Production Shutters"; + pixel_x = -20; + pixel_y = -10; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main/refinery) +"sg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Outpost Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/corridor/left_lower) +"si" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_north) +"sj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"sk" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/tool, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/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/surface/outpost/mining_main/tools) +"sl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"sm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sn" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/obj/item/device/gps/mining{ + pixel_x = -5 + }, +/obj/item/device/gps/mining{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"so" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"sp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + 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/surface/outpost/security) +"sq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sr" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"st" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"su" = ( +/obj/effect/floor_decal/stairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"sv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"sx" = ( +/obj/structure/closet/secure_closet/sar, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/roller/adv, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"sy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 3"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"sA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"sB" = ( +/obj/structure/table/marble, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"sC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/storage) +"sD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "garage2"; + name = "Garage Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_one) +"sE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/surface/outpost/main/corridor/right_upper) +"sF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"sH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"sI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"sK" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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, +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"sL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"sM" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"sN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"sO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"sP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"sQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"sS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/heavyduty, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"sT" = ( +/obj/structure/table/marble, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"sV" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + dir = 4; + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"sW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_5) +"sX" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"sY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"ta" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"tb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room East"; + dir = 4; + name = "Reactor_Room"; + network = list("Engine") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"tc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"td" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"te" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"tf" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"tg" = ( +/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/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"th" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ti" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"tj" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/pool) +"tk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Airlock Access 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"tl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"tm" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"tn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"to" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/normal) +"tp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_south) +"tq" = ( +/obj/structure/catwalk, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"tr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ts" = ( +/obj/effect/zone_divider, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"tt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"tu" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"tv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tw" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"tx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ty" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_upper) +"tz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Master at Arms" + }, +/obj/machinery/door/firedoor/glass, +/obj/item/tape/engineering, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/steel_grid, +/area/surface/outpost/security/maa) +"tA" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"tB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tC" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"tD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"tE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"tF" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"tG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/computer/general_air_control/supermatter_core{ + input_tag = "rust_cooling_in"; + name = "Engine Cooling Control"; + output_tag = "rust_cooling_out"; + sensors = list("rustengine_sensor"="Engine Temperature") + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"tH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"tI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"tJ" = ( +/obj/structure/boxingrope{ + dir = 8 + }, +/obj/structure/boxingrope, +/obj/structure/boxingrope{ + dir = 9; + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"tK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"tL" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + id = "Reactor Gyrotron"; + id_tag = "Reactor Gyrotron" + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"tM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_two) +"tN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"tO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"tP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tQ" = ( +/obj/structure/table/bench/wooden, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"tR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"tT" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"tU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/hydromagnetic_trap, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"tV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"tW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"tX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant/bamboo, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"tY" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 8 + }, +/area/surface/outside/ocean) +"tZ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"ua" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/stairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"ub" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uc" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + name = "phase weapon cabinet"; + req_access = newlist(); + req_one_access = list(43,67) + }, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Exploration Prep"; + dir = 8 + }, +/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/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"ud" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_north) +"uf" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/starcaster_news, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"ug" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"uh" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_three) +"ui" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/bar) +"uj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/turretid/stun{ + check_records = 0; + control_area = "\improper Main Outpost Teleporter"; + name = "Main Outpost Teleporter turret control"; + pixel_y = 24; + req_access = list(19) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"uk" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ul" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"um" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "dorm_tint5"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"un" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"up" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"uq" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"ur" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"us" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"ut" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Main Outpost"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"uv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/security/smes) +"uw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"ux" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"uA" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"uB" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"uC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"uD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/surface/outpost/main/corridor/left_upper) +"uE" = ( +/turf/simulated/floor/water, +/area/surface/outside/lake/romsele) +"uF" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room) +"uG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"uH" = ( +/obj/structure/snowman/borg, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"uJ" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"uK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uL" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"uM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"uN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"uO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"uP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"uQ" = ( +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"uR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"uS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"uT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"uU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_left) +"uV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"uW" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"uX" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"uY" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"uZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"vb" = ( +/turf/simulated/wall, +/area/surface/outpost/main/showers) +"vc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Showers" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/showers) +"vd" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"ve" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"vf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_upper) +"vg" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security) +"vh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"vj" = ( +/obj/effect/engine_setup/pump_max, +/obj/machinery/atmospherics/binary/pump/high_power, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"vk" = ( +/obj/machinery/light, +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/obj/effect/landmark/start{ + name = "Non-Crew" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"vl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"vm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vn" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vo" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"vp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"vq" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"vs" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"vt" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"vv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"vw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"vx" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main4_airlock_control"; + name = "External Access Button" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"vy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/standard, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/gloves/boxing, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"vz" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Production Room"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"vA" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"vB" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/mountains) +"vC" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"vD" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vE" = ( +/obj/structure/table/steel, +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_y = 32 + }, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = 12 + }, +/obj/random/medical/pillbottle, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"vF" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"vG" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/obj/structure/boxingrope{ + dir = 8 + }, +/obj/structure/boxingrope{ + dir = 9 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"vH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"vI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"vJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"vK" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"vN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"vO" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"vP" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"vR" = ( +/obj/structure/boxingrope{ + dir = 1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"vT" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"vU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"vV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"vW" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"vY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"vZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wa" = ( +/obj/machinery/light_construct, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut/empty, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"wb" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"wc" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"wd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"we" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"wf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_external" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/mining_main/refinery) +"wg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"wh" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gym) +"wi" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Long Range Teleporter Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"wm" = ( +/obj/machinery/vending/coffee{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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/surface/outpost/main/corridor/right_upper) +"wn" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/random_multi/single_item/hand_tele, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"wo" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wp" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main6_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main6_airlock_control"; + name = "External Access Button"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_one) +"wq" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"wr" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ws" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_three) +"wt" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"wu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"wv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ww" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"wx" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"wy" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"wA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"wC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"wD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"wE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/structure/table/rack, +/obj/item/weapon/weldingtool, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/left_lower) +"wH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/remote/blast_door{ + id = "garage2"; + name = "Garage Shutter Control"; + pixel_x = -6; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"wI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main2_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main2_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_one) +"wJ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"wK" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "ENG_Outpost_airlock_control"; + name = "External Access Button"; + pixel_y = 26; + req_one_access = list(10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ENG_Outpost_airlock_exterior"; + locked = 1; + name = "Engineering Outpost External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/engineering/monitoring) +"wL" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"wM" = ( +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"wN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"wO" = ( +/obj/item/weapon/towel{ + color = "#00FFFF"; + name = "cyan towel"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"wP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Foyeur"; + dir = 10; + name = "Engineering Outpost"; + network = list("Engineering") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"wQ" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"wS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) +"wT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"wU" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"wV" = ( +/obj/structure/closet/secure_closet{ + name = "hunting locker"; + req_one_access = list(1,43) + }, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/beartrap/hunting, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/jungle, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Containment Pen"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"wW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"wX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) +"wY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"wZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xb" = ( +/obj/machinery/vending/fishing{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"xd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"xe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"xh" = ( +/turf/simulated/floor/water/shoreline{ + dir = 6 + }, +/area/surface/outside/ocean) +"xi" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/smes) +"xk" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining1_airlock_control"; + name = "External Access Button"; + pixel_y = -26; + req_one_access = list(48) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining1_airlock_exterior"; + locked = 1; + name = "Mining Outpost External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/storage) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_1) +"xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"xp" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"xq" = ( +/turf/simulated/floor/wood{ + outdoors = 1 + }, +/area/surface/outside/path/plains) +"xr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"xs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + 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/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"xt" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 3" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_three) +"xw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"xx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"xy" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Room South"; + dir = 4; + name = "Reactor_Room"; + network = list("Engine") + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"xz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"xA" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"xB" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/mineral/input, +/obj/structure/sign/warning/moving_parts{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"xC" = ( +/obj/item/stack/material/wood, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"xD" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"xE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xF" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"xG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/search_and_rescue) +"xH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"xI" = ( +/obj/machinery/telecomms/relay/preset/southerncross/cave, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"xJ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) +"xK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"xL" = ( +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"xM" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"xN" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"xO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"xP" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"xQ" = ( +/obj/structure/fence/end, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"xR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Central Hall" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"xS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"xT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"xU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"xV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"xW" = ( +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"xY" = ( +/obj/structure/table/glass, +/obj/item/inflatable{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/inflatable{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/inflatable{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"xZ" = ( +/obj/structure/table/bench/standard, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/security/maa) +"ya" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"yb" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/cable/heavyduty{ + 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/yjunction{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"yc" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"yd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"ye" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"yg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"yh" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"yi" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"yj" = ( +/turf/simulated/floor/outdoors/grass/sif/forest/planetuse, +/area/surface/outside/plains/normal) +"yk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"yl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"ym" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"yn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + 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, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"yo" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"yp" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"yr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"ys" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"yt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 9; + icon_state = "2-9" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"yu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_three) +"yv" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"yx" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_three) +"yy" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"yz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"yA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock 2" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"yB" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"yC" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-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" + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -21 + }, +/obj/structure/cable/blue{ + 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/surface/outpost/engineering/monitoring) +"yD" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"yE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"yF" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/space) +"yG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"yH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"yI" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"yJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"yK" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"yL" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_5) +"yM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"yN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"yO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"yP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main1_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main1_airlock_exterior"; + tag_interior_door = "main1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"yQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main) +"yR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"yS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"yT" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"yV" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"yW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"yX" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"yY" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"yZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"za" = ( +/turf/simulated/floor/water/shoreline{ + dir = 4 + }, +/area/surface/outside/ocean) +"zb" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/atmos_room) +"zc" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"zd" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"ze" = ( +/obj/machinery/telecomms/relay/preset/southerncross/skylands, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"zf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"zg" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/mountains) +"zh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"zi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"zk" = ( +/obj/machinery/mineral/unloading_machine, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"zl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"zm" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/weapon/reagent_containers/food/drinks/britcup, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"zn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"zr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zs" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"zt" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"zu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"zv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"zw" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"zx" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"zz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"zB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"zC" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/surface/outside/plains/normal; + base_turf = /turf/simulated/floor/outdoors/grass/sif/planetuse; + landmark_tag = "outpost_s"; + name = "South of Outpost" + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"zD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "dorm_tint6" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "dorm_tint6" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/dorms/dorm_6) +"zE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"zF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"zH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"zI" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Fuel Storage Room"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"zJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"zL" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"zM" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "civ1_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "civ1_airlock_interior"; + locked = 1; + name = "Civilian Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/civilian/fishing) +"zN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"zO" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"zP" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/clothing/shoes/galoshes, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"zQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"zR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "dorm_tint5" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "dorm_tint5" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/dorms/dorm_5) +"zS" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_4) +"zV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"zW" = ( +/obj/machinery/vending/snack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"zX" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"zY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/purcarpet, +/area/surface/outpost/main/dorms/dorm_2) +"zZ" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Aa" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/left_two) +"Ac" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ad" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Ae" = ( +/obj/machinery/light, +/obj/item/weapon/book/manual/rust_engine, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Af" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ag" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ah" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Ai" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Aj" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"Ak" = ( +/obj/effect/map_effect/portal/line/side_a, +/obj/effect/map_effect/perma_light/concentrated, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"Am" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"An" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ao" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"Ap" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Aq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ar" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/backup_kit{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"As" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/smes) +"At" = ( +/turf/simulated/wall/r_wall, +/area/surface/outside/plains/outpost) +"Au" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Av" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Aw" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Right Wing"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Ax" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Az" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main6_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "main6_airlock_exterior"; + tag_interior_door = "main6_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"AA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"AB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"AC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + 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/surface/outpost/main/corridor) +"AD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"AE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AF" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AG" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/blue, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"AH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"AI" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"AJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/weapon/tool/wrench, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"AK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main/refinery) +"AL" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"AM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"AN" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"AO" = ( +/obj/effect/floor_decal/borderfloor/full, +/obj/effect/floor_decal/industrial/danger/full, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/shieldwallgen{ + anchored = 1; + req_access = list(1,43); + state = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"AP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/glass_jar, +/obj/structure/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"AQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"AR" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"AT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"AU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"AV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"AW" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/tcomm) +"AX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"AY" = ( +/obj/effect/landmark/start{ + name = "Search and Rescue" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"AZ" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ba" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Bb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Bc" = ( +/obj/structure/catwalk, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Bd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Be" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Bf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Bg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Bh" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Bj" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Bk" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/table/bench/steel, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Bl" = ( +/turf/simulated/wall, +/area/surface/outpost/main/emergency_storage/one) +"Bm" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_5) +"Bn" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Bo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Bp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Bq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Br" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"Bs" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Bt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor/corner, +/obj/item/weapon/extinguisher/mini, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Bu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/fitness/punching_bag/clown, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Bv" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"Bw" = ( +/obj/structure/boxingrope{ + dir = 4 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Bx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"BA" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"BB" = ( +/obj/machinery/telecomms/relay/preset/southerncross/planet, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"BC" = ( +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"BD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"BE" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/sauna) +"BF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"BG" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/light, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing South Airlock"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"BH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Airlock Access 1" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"BI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing North Airlock Access" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"BJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/monotile, +/area/surface/outpost/civilian/sauna) +"BK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/tools) +"BL" = ( +/obj/structure/table/woodentable, +/obj/item/toy/bouquet, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"BM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) +"BN" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/ender{ + icon_state = "1-2"; + id = "surface_cave" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"BO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"BP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"BQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"BR" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"BT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"BU" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"BV" = ( +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"BW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"BX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"BZ" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Cb" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main3_airlock_exterior"; + locked = 1; + name = "Landing South External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_south) +"Cc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Search and Rescue Starboard"; + dir = 8 + }, +/obj/structure/window/reinforced{ + health = 1e+006; + req_access = list(5) + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + name = "EMT Supplies"; + req_access = list(5); + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Cd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_north) +"Ce" = ( +/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/surface/outpost/engineering/monitoring) +"Cf" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"Cg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Ch" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room External Access"; + req_one_access = list(11) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/monitoring) +"Ci" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/plains/mountains) +"Ck" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Cl" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/fusion_core/mapped{ + id_tag = "Outpost Fusion Core" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Cm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Cn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Co" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"Cp" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Cr" = ( +/obj/structure/closet/crate{ + name = "Tritium Storage" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/weapon/fuel_assembly/tritium, +/obj/item/weapon/fuel_assembly/tritium, +/obj/item/weapon/fuel_assembly/tritium, +/obj/machinery/light_switch{ + pixel_x = -11; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"Cs" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Cu" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/auxiliary_storage) +"Cv" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Cx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/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{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"Cy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 5"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Cz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"CA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"CB" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 7; + tag_north = 2; + tag_south = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"CC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CD" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"CE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/emergency_storage) +"CF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CG" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"CH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/supply, +/obj/machinery/atmospherics/pipe/manifold4w/visible/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"CI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"CM" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"CN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"CO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"CP" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"CQ" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"CR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"CT" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_one) +"CU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"CW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"CX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"CY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"CZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outside/plains/outpost) +"Db" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Dc" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/exterior) +"Dd" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"De" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Df" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/left_lower) +"Dh" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Di" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Dj" = ( +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Dk" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 5 + }, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Fishing 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Dn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Do" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Dp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Dq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"Dr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ds" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"Dt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Du" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Dv" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_6) +"Dw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room/smes_left) +"Dz" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"DA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"DB" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"DC" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"DD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/vending/loadout/gadget, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"DE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"DG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"DH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"DI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"DJ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"DK" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"DL" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"DM" = ( +/obj/structure/closet/lasertag/blue, +/obj/item/stack/flag/blue, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"DN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"DP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"DQ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"DT" = ( +/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/tiled, +/area/surface/outpost/main/corridor) +"DU" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"DW" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost SMES Room"; + dir = 10; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/machinery/light_switch{ + pixel_x = -21; + pixel_y = -11 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"DX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"DY" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"DZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ea" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Eb" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ec" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"Ed" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"Ee" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_three) +"Ef" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"Ei" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Ej" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/auxiliary_storage) +"Ek" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"El" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Em" = ( +/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/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"En" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Eo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + 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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"Ep" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/left_one) +"Er" = ( +/obj/machinery/telecomms/relay/preset/southerncross/wild, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/tcomm) +"Et" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"Eu" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"Ev" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ew" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ex" = ( +/obj/effect/landmark{ + name = "bluespacerift" + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"Ey" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"EA" = ( +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"EB" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"EC" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"EE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"EF" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/construction_area) +"EH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork/plastic{ + pixel_x = 7 + }, +/obj/item/weapon/reagent_containers/food/snacks/pastatomato, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"EI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"EJ" = ( +/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 = "Reactor Room Internal Access"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/reactor_smes) +"EK" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"EL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"EM" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"EN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"EO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"EP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"EQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/right_lower) +"ER" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"ES" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"ET" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"EU" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"EW" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"EX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"EY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/action_figure, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"EZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Fa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Fc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_north" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/mining_main/exterior) +"Fd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Fe" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Ff" = ( +/obj/machinery/cablelayer, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Fg" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Fj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Fk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Fl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gym) +"Fm" = ( +/obj/structure/closet/secure_closet{ + name = "hunting locker"; + req_one_access = list(1,43) + }, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/beartrap/hunting, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/jungle, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Fn" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"Fo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Fp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Fq" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm6"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"Fr" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"Fs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/h_chocolate, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Ft" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Fu" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Fv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Fy" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Laundry 2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Fz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"FA" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"FB" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"FC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"FD" = ( +/obj/effect/step_trigger/teleporter/bridge/north_to_south, +/obj/structure/railing, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"FE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"FF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main7_airlock_control"; + pixel_x = 26; + pixel_y = -26; + tag_exterior_door = "main7_airlock_exterior"; + tag_interior_door = "main7_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"FH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"FI" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/gps/security, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"FJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"FK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"FL" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_3) +"FM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"FN" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"FO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/symbol/em{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"FP" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"FQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"FR" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/pool) +"FS" = ( +/obj/structure/table/steel, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"FU" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"FV" = ( +/obj/structure/boxingrope{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"FW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"FX" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"FY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"FZ" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/structure/disposalpipe/segment, +/obj/random/powercell, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ga" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Gb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Gc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Gd" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_one) +"Ge" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Gf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "civ2_airlock_control"; + pixel_x = 26; + pixel_y = 26; + tag_exterior_door = "civ2_airlock_exterior"; + tag_interior_door = "civ2_airlock_interior" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Gg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Gh" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Gi" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Left Wing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Gj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Gk" = ( +/obj/structure/snowman/spider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Gl" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Security Checkpoint" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"Gm" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Gn" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Gq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_north) +"Gr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Gs" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"Gt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/surface/outpost/main/corridor/left_upper) +"Gu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Gv" = ( +/turf/simulated/floor/water/shoreline/corner{ + dir = 4 + }, +/area/surface/outside/ocean) +"Gw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Gx" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Gy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Gz" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"GA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"GC" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"GD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"GE" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"GF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"GG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"GH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"GI" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"GJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/right_two) +"GK" = ( +/obj/effect/floor_decal/stairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"GL" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Reactor Core"; + rad_resistance = 150; + req_access = list(11) + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"GM" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"GN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"GO" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"GP" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"GQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"GR" = ( +/obj/effect/landmark/event_spawn/dronepod_landing, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"GS" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"GT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Mining Storage"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/uxstorage) +"GU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"GV" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"GW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"GX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"GY" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/vending/wallmed1{ + name = "NanoMed Wall"; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"GZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ha" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"Hb" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/security) +"Hc" = ( +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Hd" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"He" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Hf" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"Hg" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_two) +"Hh" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_left) +"Hi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Hj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"Hk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Hl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Hm" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Hn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"Ho" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"Hp" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Hq" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Hr" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/symbol/gu{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Hs" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"Ht" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Hu" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/fishing) +"Hv" = ( +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Hw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_2) +"Hy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Hz" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room/smes_right) +"HA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"HB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"HC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"HD" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_one) +"HE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"HF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 6; + d2 = 8; + icon_state = "6-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"HG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"HH" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"HI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"HK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"HL" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"HM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"HN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/main_outpost{ + c_tag = "MO Right Wing - Hallway 2"; + dir = 4; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"HO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"HP" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"HQ" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"HR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"HS" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"HU" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"HV" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"HW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"HX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"HY" = ( +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_6) +"HZ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ib" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/storage) +"Ic" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Id" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ie" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"If" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_1) +"Ig" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"Ih" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Ii" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/mining_main) +"Ij" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ik" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 2 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Il" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Im" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Mining"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"In" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Io" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/space) +"Ip" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/exploration) +"Iq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Ir" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"Is" = ( +/obj/item/weapon/towel{ + color = "#90ee90"; + name = "green towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"It" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Iu" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Iv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Iw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ix" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/exploration/containment) +"Iy" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Iz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"IA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"ID" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main4_airlock_exterior"; + locked = 1; + name = "Landing North External" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_north) +"IE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/tools) +"IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_3) +"IG" = ( +/obj/effect/overmap/visitable/planet/Sif, +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"IH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"II" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/search_and_rescue) +"IJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"IK" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"IM" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"IN" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Laundry" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/laundry) +"IO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"IP" = ( +/obj/structure/closet/secure_closet/guncabinet/phase{ + req_one_access = null + }, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"IQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"IR" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/clothing/accessory/holster/hip, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"IS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"IT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"IU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"IV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"IW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"IX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main2_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main2_airlock_exterior"; + tag_interior_door = "main2_airlock_interior" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"IY" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + id = "production1"; + name = "Production Shutters"; + pixel_x = 22; + req_one_access = list(48) + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"IZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Ja" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Jb" = ( +/obj/structure/catwalk, +/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/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "SUBS - Civilian"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"Jc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Jd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Teleporter"; + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Je" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Jf" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Jg" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_one) +"Jh" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_2) +"Ji" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Jj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Jk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/smes) +"Jl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) +"Jm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Jn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Jo" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main3_airlock_interior"; + locked = 1; + name = "Landing South Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_south) +"Jq" = ( +/turf/simulated/wall, +/area/surface/outpost/main/corridor) +"Js" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Jt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_upper) +"Ju" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Jv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/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/surface/outpost/engineering/monitoring) +"Jw" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/security) +"Jx" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"Jy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "mining2_airlock_control"; + pixel_x = -26; + pixel_y = -26; + req_one_access = list(48,10); + tag_exterior_door = "mining2_airlock_exterior"; + tag_interior_door = "mining2_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Jz" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"JB" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Teleporter"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"JD" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"JE" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"JF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"JG" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"JH" = ( +/obj/structure/sign/warning/caution{ + desc = "This appears to be a sign warning people that the other side is dangerous. It also says that NanoTrasen cannot guarantee your safety beyond this point."; + name = "\improper WARNING: NO ACCESS" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall) +"JJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"JK" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/reactor_smes) +"JL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"JM" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"JN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"JO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"JP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"JQ" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"JR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"JS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"JT" = ( +/obj/structure/catwalk, +/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, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/smes) +"JU" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"JV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"JW" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room/smes_right) +"JX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"JY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"JZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ka" = ( +/turf/simulated/floor/water/shoreline{ + dir = 10 + }, +/area/surface/outside/ocean) +"Kb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/laundry) +"Kd" = ( +/turf/simulated/floor/water/shoreline/corner, +/area/surface/outside/ocean) +"Ke" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/civilian/sauna) +"Kf" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/maintenance/engineering, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Kg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Kh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/civilian/sauna) +"Ki" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"Kj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Kk" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Kl" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Km" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Kn" = ( +/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/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Ko" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Kp" = ( +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Kr" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Room External Access"; + req_one_access = list(11) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/engineering/atmos_room) +"Ks" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Kt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_south) +"Ku" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gateway) +"Kv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Kw" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"Kx" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Ky" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"Kz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"KA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"KB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/surface/outpost/wall) +"KC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KD" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/security/maa) +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"KF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KG" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/holofloor/tiled/dark, +/area/surface/outpost/security/maa) +"KH" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"KI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"KK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"KL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"KM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"KN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Production Area"; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main) +"KO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"KP" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/atmos_room) +"KQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"KR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"KS" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"KT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"KU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/emergencystorage) +"KV" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/button/windowtint{ + id = "dorm_tint6"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"KW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"KX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"KY" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"KZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"La" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Lc" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ld" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 1; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + frequency = 1438; + icon_state = "map_vent_in"; + id_tag = "rust_cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Le" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Lf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"Lg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Lh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Li" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Lj" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Lk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ll" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/tools) +"Lm" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"Ln" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/boxingrope{ + dir = 1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Lo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Lp" = ( +/obj/structure/table/steel, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"Lq" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/radproof{ + dir = 4; + rad_resistance = 150 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Lr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Ls" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Lt" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Lu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Atmos Room"; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/tools) +"Lv" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"Lw" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/monitoring) +"Lx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Ly" = ( +/obj/structure/fence/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Lz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"LA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"LC" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/main/gen_room/smes_right) +"LD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"LE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_one) +"LF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint1" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"LG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"LH" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"LI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"LJ" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"LK" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main6_airlock_control"; + name = "Internal Access Button"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main6_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/left_one) +"LL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"LM" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"LN" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/emergency_storage) +"LO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/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, +/obj/machinery/vending/fitness{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"LP" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"LQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"LS" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"LT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"LU" = ( +/obj/structure/cable/blue, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + operating = 0; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"LV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Long Range Teleporter Access" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gateway) +"LW" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"LY" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"LZ" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ma" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/corridor/right_upper) +"Mb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"Mc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/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 = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Me" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Mg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"Mh" = ( +/turf/simulated/floor/water/shoreline{ + dir = 5 + }, +/area/surface/outside/ocean) +"Mi" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Mj" = ( +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Mk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Ml" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Mm" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Mn" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Mo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Mp" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Mq" = ( +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Mr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ms" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Mt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Mu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/maa) +"Mv" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Mx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room/smes_right) +"My" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Gym" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/gym) +"Mz" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"MA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"MB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Medical Supplies"; + req_access = null; + req_one_access = list(5,43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"MC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"MD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/laundry) +"MF" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"MG" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"MH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"MI" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"MJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/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/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"MK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"ML" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"MM" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/corner/orange{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MN" = ( +/turf/simulated/wall, +/area/surface/outpost/main/laundry) +"MO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"MQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"MR" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"MT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + dir = 4; + rad_resistance = 150 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"MU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Outpost Laundry" + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"MV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"MW" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -22 + }, +/obj/structure/cable/blue, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"MX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"MY" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"MZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Na" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"Nb" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/restroom) +"Nc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + name = "Telecommunication Hub"; + req_one_access = list(61) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/tcomm) +"Nd" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ne" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Nf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Nh" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Sauna"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Ni" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"Nj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Nk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 3"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Nm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Nn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/fishing) +"No" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"Np" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Nq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ns" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Nt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + frequency = 1441; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Nu" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm5"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Nv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Nw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_three) +"Nx" = ( +/obj/structure/table/steel, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Ny" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"Nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_4) +"NA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"NB" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_two) +"NC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"NE" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm4"; + name = "Door Lock Control"; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"NF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"NG" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/right_three) +"NH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"NI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"NJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"NK" = ( +/obj/structure/cable/blue{ + 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 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"NL" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room) +"NM" = ( +/obj/structure/fence/end{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"NN" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/refinery) +"NO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/janitor) +"NP" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"NQ" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"NR" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/exterior) +"NU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"NV" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"NW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"NX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"NY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/smes) +"NZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 5; + d2 = 6; + icon_state = "5-6" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Oa" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ob" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Oc" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/path/plains) +"Od" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_two) +"Oe" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_3) +"Of" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/security/maa) +"Oh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/closet, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Oi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Oj" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"Om" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Oo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Op" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"Oq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Os" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"Ot" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Ou" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Ov" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Ow" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_6) +"Ox" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sec1_airlock_exterior"; + locked = 1; + name = "Security Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "sec1_airlock_control"; + name = "External Access Button"; + pixel_y = 26; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/security) +"Oy" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_south) +"OA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/landing_south) +"OB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "garage1"; + name = "Garage Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_two) +"OC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"OD" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock Access 1"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"OE" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"OF" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"OH" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main1_airlock_control"; + name = "Internal Access Button"; + pixel_x = -6; + pixel_y = -26 + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main1_airlock_interior"; + locked = 1; + name = "Main Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_two) +"OI" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main4_airlock_control"; + pixel_x = -5; + tag_exterior_door = "main4_airlock_exterior"; + tag_interior_door = "main4_airlock_interior" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main4_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_north) +"OJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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/surface/outpost/security) +"OK" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves/river, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"OL" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"OM" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"ON" = ( +/obj/structure/table/standard, +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"OO" = ( +/obj/item/weapon/towel{ + color = "#FF8C00"; + name = "orange towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"OP" = ( +/obj/structure/showcase/sign{ + desc = "This appears to be a sign warning people that it is dangerous outside. Further reading suggests being properly equipped or acquiring an umbrella."; + name = "WARNING: HAIL STORMS" + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"OQ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"OR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"OS" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/monitoring) +"OT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"OU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"OV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"OW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"OX" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"OY" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room/smes_left) +"OZ" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Pa" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"Pb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Pc" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "mining2_airlock_control"; + name = "Internal Access Button"; + pixel_x = -26; + pixel_y = -6; + req_one_access = list(48,10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mining2_airlock_interior"; + locked = 1; + name = "Mining Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/mining_main/tools) +"Pd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Pe" = ( +/obj/machinery/door/firedoor/multi_tile/glass, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "Sauna" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/sauna) +"Pf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"Pg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"Ph" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/maintenance/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Pi" = ( +/obj/structure/fence/cut/large, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/outpost) +"Pj" = ( +/obj/structure/table/bench/marble, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Pk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/left_upper) +"Pl" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"Pm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Po" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ps" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Pt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) +"Pu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Pv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/engineering{ + name = "SMES Access" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/gen_room) +"Pw" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"Py" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Pz" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"PA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + dir = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/reactor_smes) +"PC" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"PD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"PE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"PF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"PG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"PJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"PK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/closet/crate, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"PL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/right_three) +"PM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"PN" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"PO" = ( +/turf/simulated/floor/water/shoreline{ + dir = 1 + }, +/area/surface/outside/ocean) +"PQ" = ( +/obj/machinery/pipedispenser, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"PR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"PS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"PT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"PU" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/faxalven) +"PV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"PW" = ( +/obj/effect/step_trigger/teleporter/bridge/east_to_west, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"PX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"PY" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall, +/area/surface/outpost/civilian/smes) +"PZ" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Search and Rescue"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/machinery/door/firedoor/multi_tile/glass, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/search_and_rescue) +"Qa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Qb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Qd" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Qf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"Qg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"Qh" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Qi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/roller{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/roller{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/roller{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/roller{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Qj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Qk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "pen"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Ql" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"Qo" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"Qp" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Qr" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Qt" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"Qu" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/surface/outpost/main/laundry) +"Qv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4; + name = "Air Tank Bypass Pump" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Qx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"Qy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Qz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"QA" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"QB" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/security{ + c_tag = "SO - Security Checkpoint"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"QC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"QD" = ( +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Airlock Access 3"; + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"QG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + 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 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"QH" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"QI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + d2 = 2; + dir = 4; + icon_state = "0-4" + }, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"QJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/right_lower) +"QL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"QM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"QN" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/emergencystorage) +"QO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/plaque, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/corridor/right_upper) +"QP" = ( +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/auxiliary_storage) +"QQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 1" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"QR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"QS" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"QT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "production1"; + name = "Production Shutters" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/mining_main/refinery) +"QU" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"QV" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Dorm 5" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_5) +"QW" = ( +/turf/simulated/wall, +/area/surface/outpost/main/gateway) +"QX" = ( +/obj/item/weapon/stool/padded, +/obj/structure/boxingrope{ + dir = 4 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"QY" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"QZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Ra" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main3_airlock_control"; + pixel_x = -5; + tag_exterior_door = "main3_airlock_exterior"; + tag_interior_door = "main3_airlock_interior" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "main3_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/airlock/landing_south) +"Rb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"Rd" = ( +/obj/structure/boxingrope{ + dir = 4 + }, +/obj/structure/boxingrope, +/obj/structure/boxingrope{ + dir = 6; + layer = 4.1 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"Re" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Rf" = ( +/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/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Rg" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm6"; + name = "Dorm 6" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_6) +"Rh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"Ri" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Rj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Rk" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"Rl" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_left) +"Rm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Rn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Ro" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Rp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/remote/blast_door{ + id = "garage1"; + name = "Garage Shutter Control"; + pixel_x = -6; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Rq" = ( +/obj/machinery/computer/gyrotron_control{ + id_tag = "Reactor Gyrotron" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door/radproof{ + id = "EngineReactor"; + name = "Reactor Blast Doors"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Rr" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outside/lake/romsele) +"Rs" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ru" = ( +/obj/machinery/vending/loadout/costume, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Rv" = ( +/obj/machinery/computer/fusion_fuel_control{ + id_tag = "Reactor Fuel Injectors" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Rw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/left_two) +"Rx" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/flashlight, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing North Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"Ry" = ( +/obj/item/weapon/towel{ + color = "#b5651d"; + name = "brown towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"Rz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"RA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"RB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/emergency_storage) +"RC" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main5_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main5_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outside/plains/outpost) +"RD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/item/clothing/accessory/stethoscope, +/obj/item/device/defib_kit/loaded, +/obj/item/device/defib_kit/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"RE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"RF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/landing_south) +"RG" = ( +/obj/machinery/vending/loadout/accessory, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"RH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"RI" = ( +/obj/structure/table/steel, +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"RJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"RK" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/path/plains) +"RL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"RN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"RO" = ( +/obj/effect/step_trigger/teleporter/bridge/west_to_east, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/indalsalven) +"RP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/engine/quadbike{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"RQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Airlock 1"; + dir = 8 + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/obj/item/weapon/melee/umbrella{ + color = "#7c0d0d" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"RS" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"RT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"RV" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/snorkel, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"RW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"RX" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"RY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 6; + d2 = 9; + icon_state = "6-9" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"RZ" = ( +/obj/machinery/computer/teleporter{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/main/teleporter) +"Sa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Sb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/uxstorage) +"Sc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_one) +"Sd" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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/surface/outpost/main/corridor/left_lower) +"Se" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"Sg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Sh" = ( +/obj/machinery/mineral/stacking_unit_console, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/refinery) +"Si" = ( +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Sj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Sk" = ( +/obj/effect/zone_divider, +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outpost/wall) +"Sm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Sn" = ( +/obj/machinery/light, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"So" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"Sp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Sq" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Sr" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Ss" = ( +/obj/structure/janitorialcart, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Su" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Sv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Sx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Sy" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Sz" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_south) +"SA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"SB" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"SC" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_two) +"SD" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "sauna_tint2" + }, +/obj/structure/window/reinforced/polarized{ + id = "sauna_tint2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"SF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"SG" = ( +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/obj/effect/landmark/start{ + name = "Non-Crew" + }, +/turf/simulated/shuttle/floor/voidcraft/external, +/area/surface/outpost/wall) +"SH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_1) +"SJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main) +"SK" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/tools) +"SL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Right Wing - Hallway 5"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"SO" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/r_wall{ + cached_rad_resistance = 150 + }, +/area/surface/outpost/engineering/monitoring) +"SP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gym) +"SQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_y = 3 + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"SR" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"ST" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Gateway"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"SU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/overlay/snow/floor, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/path/plains) +"SV" = ( +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"SW" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/airlock/landing_south) +"SX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"SY" = ( +/turf/simulated/floor/water{ + outdoors = 0 + }, +/area/surface/outside/plains/mountains) +"SZ" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/surface/outpost/main/dorms/dorm_1) +"Ta" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Tc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Te" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/dorms/dorm_3) +"Tf" = ( +/obj/machinery/hyperpad/centre{ + map_pad_id = "pad_1_away"; + map_pad_link_id = "pad_1_station" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Tg" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Th" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Ti" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Tj" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Tk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Tl" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gen_room) +"Tm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"To" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Tq" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/orange/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Tr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/item/weapon/storage/fancy/markers, +/obj/random/toy, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Ts" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Tt" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Hallway 2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Tu" = ( +/obj/structure/table, +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Tv" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/dorms/dorm_4) +"Tw" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/machinery/light, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Tool Storage"; + dir = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Tx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Ty" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_1) +"Tz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"TA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_one) +"TB" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/two) +"TC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/secure_closet/pilot, +/obj/item/device/cataloguer/compact, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"TD" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"TE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/closet/toolcloset, +/obj/item/weapon/storage/belt, +/obj/item/weapon/storage/belt, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"TG" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"TH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"TI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"TL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"TM" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"TN" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"TO" = ( +/turf/simulated/wall, +/area/surface/outpost/main/restroom) +"TP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/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; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"TQ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"TR" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"TS" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/surface/outpost/mining_main/exterior) +"TT" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main4_airlock_interior"; + locked = 1; + name = "Landing North Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/landing_north) +"TU" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"TV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"TW" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/item/device/binoculars, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/device/cataloguer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"TX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/left_two) +"TZ" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/industrial/outline, +/obj/item/clothing/head/welding, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Ua" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Ub" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Uc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating, +/area/surface/outside/plains/outpost) +"Ud" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Ue" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Uf" = ( +/obj/structure/closet, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Ug" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Uh" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/sauna) +"Ui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Airlock Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/airlock/left_two) +"Uj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Uk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Ul" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"Um" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "mining1_airlock_control"; + pixel_x = 26; + pixel_y = -26; + req_one_access = list(48); + tag_exterior_door = "mining1_airlock_exterior"; + tag_interior_door = "mining1_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Uo" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 1; + id_tag = "Reactor Fuel Injectors" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Up" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/engineering/atmos_room) +"Uq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"Ur" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Us" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"Ut" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Uu" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/uxstorage) +"Uv" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Uw" = ( +/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/structure/cable/blue{ + 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/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Ux" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"Uy" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/teleporter) +"Uz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"UA" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/structure/window/basic, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/right_one) +"UB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"UC" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/radproof{ + id = "EngineReactor"; + rad_resistance = 150 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/engineering/reactor_smes) +"UD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/power/hydromagnetic_trap, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"UE" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main2_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main2_airlock_control"; + name = "External Access Button"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_one) +"UF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_upper) +"UG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"UH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_one) +"UI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"UJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"UK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"UL" = ( +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Security"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"UM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"UN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"UO" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"UP" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/normal) +"UQ" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Outpost Reactor Power"; + name_tag = "Outpost Reactor Power" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"UR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"US" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"UT" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"UU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/crate, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Mining Stocking"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"UV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"UW" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/emergency_storage/one) +"UY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"UZ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Va" = ( +/obj/machinery/computer/fusion_core_control{ + id_tag = "Outpost Fusion Core" + }, +/obj/machinery/camera/emp_proof{ + c_tag = "ENG - Outpost Reactor Monitoring"; + name = "Engineering_Outpost"; + network = list("Engineering") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Vb" = ( +/obj/structure/table/rack, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/shoes/boots/winter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/airlock/landing_north) +"Vc" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Vd" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Ve" = ( +/obj/structure/fence/cut/medium, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Vf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Vg" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/mountains) +"Vh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/frame/extinguisher_cabinet, +/obj/item/weapon/extinguisher, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"Vj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Vk" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/storage) +"Vn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "main8_airlock_control"; + pixel_x = -26; + pixel_y = -26; + tag_exterior_door = "main8_airlock_exterior"; + tag_interior_door = "main8_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/left_three) +"Vo" = ( +/obj/machinery/mineral/unloading_machine{ + icon_state = "unloader-corner" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/refinery) +"Vp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Vq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/monitoring) +"Vr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"Vs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Vt" = ( +/obj/machinery/button/remote/blast_door/radproof{ + name = "Engine Monitoring Room Blast Doors"; + pixel_x = 23 + }, +/obj/machinery/computer/security/engineering, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/reactor_smes) +"Vu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Vv" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Vy" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"Vz" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"VA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/outpost/main/dorms/dorm_4) +"VB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_north) +"VC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO - Landing South Airlock Access"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"VD" = ( +/obj/effect/step_trigger/teleporter/bridge/south_to_north, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/normal) +"VE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"VF" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"VG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/surface/outpost/engineering/reactor_smes) +"VH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VI" = ( +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Emergency Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/emergency_storage/two) +"VJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/outpost/civilian/pool) +"VL" = ( +/turf/simulated/floor/outdoors/grass/sif/planetuse, +/area/surface/outside/plains/outpost) +"VM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/auxiliary_storage) +"VP" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/gen_room) +"VQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_lower) +"VR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_two) +"VT" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/action_figure, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"VU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/mineral/equipment_vendor{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"VV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"VX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"VY" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/civilian{ + c_tag = "CO - Pool 1"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"VZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor) +"Wa" = ( +/obj/machinery/scale, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Wb" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/gym) +"Wc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"We" = ( +/obj/structure/closet/crate{ + name = "Deuterium Storage" + }, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/obj/item/weapon/fuel_assembly/deuterium, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/storage) +"Wg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Wh" = ( +/obj/machinery/vending/nifsoft_shop{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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/surface/outpost/main/corridor/right_upper) +"Wi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Wj" = ( +/obj/machinery/vending/loadout/overwear, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Wk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Wl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"Wm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Wn" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"Wo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"Wp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"Wq" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/item/weapon/material/fishing_rod/modern/cheap, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"Wr" = ( +/obj/machinery/door/firedoor/glass, +/obj/item/tape/engineering, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"Ws" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"Wv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/overlay/snow/floor/edges{ + dir = 8 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Ww" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Wx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"Wy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/camera/network/mining{ + c_tag = "PO - Airlock Access 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Wz" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "ENG_Outpost_airlock_control"; + name = "Internal Access Button"; + pixel_x = 5; + pixel_y = 26; + req_one_access = list(10) + }, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ENG_Outpost_airlock_interior"; + locked = 1; + name = "Engineering Outpost Internal" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/engineering/monitoring) +"WA" = ( +/obj/structure/closet/secure_closet/sar, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/roller/adv, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/search_and_rescue) +"WB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/engineering/atmos_room) +"WC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"WD" = ( +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"WE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_2) +"WG" = ( +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/sauna) +"WH" = ( +/obj/machinery/vending/cola{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/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/surface/outpost/main/corridor/left_lower) +"WI" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/device/geiger, +/obj/item/device/geiger, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"WJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"WK" = ( +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main1_airlock_exterior"; + locked = 1; + name = "Main Outpost External" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "main1_airlock_control"; + name = "External Access Button"; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/outpost/main/airlock/right_two) +"WL" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"WM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration/containment) +"WN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/blue{ + 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 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/teleporter) +"WO" = ( +/obj/machinery/disposal, +/obj/machinery/button/remote/airlock{ + id = "dorm3"; + name = "Door Lock Control"; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"WP" = ( +/turf/simulated/floor/outdoors/rocks/sif/planetuse, +/area/surface/outside/plains/normal) +"WQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/exploration) +"WR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"WS" = ( +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"WT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/restroom) +"WV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/pool) +"WW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"WX" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_three) +"WY" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/indalsalven) +"WZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Pool" + }, +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/pool) +"Xa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"Xb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/dorms) +"Xc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Xd" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/material/ashtray/plastic, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Xe" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Xf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Xg" = ( +/obj/machinery/button/remote/blast_door{ + id = "garage1"; + name = "Garage Shutter Control"; + pixel_x = 22; + req_one_access = list(48,43) + }, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outpost/main/airlock/right_two) +"Xh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_4) +"Xi" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "Reactor Fuel Injectors" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Xj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"Xk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Xl" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/main/gateway) +"Xm" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/reactor_smes) +"Xn" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Xo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public{ + name = "Outpost Access" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Xp" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"Xq" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"Xr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration) +"Xs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Xt" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Xu" = ( +/turf/simulated/wall, +/area/surface/outpost/civilian/fishing) +"Xv" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/left_three) +"Xw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/teleporter) +"Xx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"Xy" = ( +/obj/effect/floor_decal/borderfloor/cee{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/cee{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Containment Pen"; + req_one_access = list(43,1) + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Containment Pen"; + req_one_access = list(43,1) + }, +/obj/machinery/door/blast/regular/open{ + id = "pen"; + name = "Containment Lockdown Blast Doors" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"Xz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"XA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"XB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"XC" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet, +/area/surface/outpost/main/dorms/dorm_6) +"XD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + 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/surface/outpost/main/corridor) +"XE" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/plains/mountains) +"XF" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"XG" = ( +/obj/structure/catwalk, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security/smes) +"XH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"XI" = ( +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"XJ" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"XK" = ( +/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/surface/outpost/main/bar) +"XL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"XM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/surface/outpost/main/dorms/dorm_3) +"XN" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/lake/romsele) +"XO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/main/search_and_rescue) +"XP" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/outpost/main/dorms/dorm_5) +"XQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/mining_main/tools) +"XR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/landing_south) +"XS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_one_access = list(26) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/janitor) +"XU" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + 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 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"XV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_4) +"XW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_upper) +"XX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"XY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"XZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/security) +"Ya" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/surface/outpost/civilian/pool) +"Yb" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_3) +"Yc" = ( +/turf/simulated/wall, +/area/surface/outpost/mining_main/refinery) +"Yd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/holofloor/wood, +/area/surface/outpost/main/gym) +"Ye" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_lower) +"Yf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/closet/emcloset, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Yg" = ( +/obj/machinery/washing_machine, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Yh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Yi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/tools) +"Yj" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"Yk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Yl" = ( +/obj/item/weapon/towel{ + color = "#800080"; + name = "purple towel" + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"Ym" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/corridor/right_upper) +"Yn" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/outpost) +"Yo" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"Yp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gateway) +"Yq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/symbol/da{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Yr" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_two) +"Ys" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"Yt" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Yu" = ( +/obj/machinery/atmospherics/binary/pump/on, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"Yv" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/airlock/right_one) +"Yw" = ( +/turf/simulated/floor/water, +/area/surface/outside/plains/mountains) +"Yy" = ( +/obj/effect/decal/remains/ribcage, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt, +/area/surface/outside/plains/outpost) +"Yz" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/river/indalsalven) +"YA" = ( +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/mining_main/storage) +"YB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_2) +"YC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/security) +"YD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"YE" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/outpost/security/maa) +"YF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/overlay/snow/floor, +/obj/effect/overlay/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/outpost) +"YG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"YH" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/civilian/smes) +"YI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals1, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/refinery) +"YJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main) +"YK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/purple/border, +/obj/item/clothing/suit/caution, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"YL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"YM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/blue, +/obj/machinery/light_switch{ + pixel_x = -22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/civilian/fishing) +"YO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/main/showers) +"YP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Laundry" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/main/laundry) +"YQ" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/turf/simulated/floor/plating, +/area/surface/outpost/main/bar) +"YR" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"YS" = ( +/obj/machinery/vending/fitness{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/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, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gym) +"YT" = ( +/obj/effect/landmark/start{ + name = "Search and Rescue" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"YU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"YV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/engineering/monitoring) +"YW" = ( +/turf/simulated/wall, +/area/surface/outpost/main/dorms/dorm_2) +"YX" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"YZ" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Za" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/camera/network/main_outpost{ + c_tag = "MO Left Wing - Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Zb" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/civilian/fishing) +"Zc" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"Zd" = ( +/obj/structure/cable/blue{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Right Wing"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Zf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"Zg" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/blue{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/refinery) +"Zh" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Zj" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/mining_main/storage) +"Zk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/item/weapon/mining_scanner, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"Zl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/outpost/main/corridor/left_upper) +"Zm" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 22; + pixel_y = -10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/janitor) +"Zn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"Zo" = ( +/obj/structure/table/steel, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/surface/outpost/main/gen_room/smes_right) +"Zp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/showers) +"Zq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/sauna) +"Zr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"Zt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/door/firedoor/glass/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/right_upper) +"Zu" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/normal) +"Zv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/gateway) +"Zx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/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/surface/outpost/main/corridor/right_lower) +"Zy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outside/plains/outpost) +"Zz" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor/left_lower) +"ZA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/engineering_outpost{ + c_tag = "ENG - Mining Outpost Power 2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/atmos_room) +"ZB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ZC" = ( +/obj/item/weapon/stool/padded, +/obj/structure/boxingrope{ + dir = 8 + }, +/turf/simulated/floor/boxing, +/area/surface/outpost/main/gym) +"ZD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/exploration/containment) +"ZE" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ZF" = ( +/obj/effect/overlay/snow/floor, +/obj/machinery/light/small, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/overlay/snow/floor/edges{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outpost/main/airlock/landing_north) +"ZG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/civilian/pool) +"ZI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/main/airlock/right_one) +"ZJ" = ( +/obj/effect/overlay/snow/floor, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/overlay/snow/floor/edges, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/plains/outpost) +"ZK" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/engineering/smes) +"ZL" = ( +/obj/structure/table/bench/standard, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/main/exploration) +"ZM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_5) +"ZN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/outpost/mining_main/uxstorage) +"ZO" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/outpost/mining_main/exterior) +"ZP" = ( +/obj/random/technology_scanner, +/turf/simulated/floor/plating, +/area/surface/outpost/main/construction_area) +"ZQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/main/dorms/dorm_3) +"ZR" = ( +/obj/structure/table/glass, +/obj/structure/cable/blue{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -6 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 6 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 12 + }, +/obj/item/weapon/backup_implanter, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/main/search_and_rescue) +"ZS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) +"ZT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/mining_main/storage) +"ZU" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/turf/simulated/floor/wood, +/area/surface/outpost/civilian/sauna) +"ZV" = ( +/obj/structure/toilet, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/main/dorms/dorm_5) +"ZW" = ( +/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 = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/corridor) +"ZX" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/random/powercell, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/engineering/smes) +"ZY" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/main/laundry) +"ZZ" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/civilian/pool) (1,1,1) = {" -VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgDseMNRAkAkAkNReMeMVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgOKeMeMCiCiCieMeMeMVgVgVgVgVgVgVg -VgpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYwMwMwMrYpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEWnXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEpCcJpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCrYTSwMyHrYDcDcDcpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahabThahahahahahahahahahahahahahahahahahapCpCpCpChahahahahahahapCpCpCpChahapCpCpCpCBNfLwMfLFczkZODchahahahahahahahahahapCpCpCpCpCpCpCpCpCpCpCpChahahahapCpCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpChahahahahahahakygxgxgxbjkieBDchahahahahahahahahahahapCpCpCpCpCpCpCpCpCpChahahahahahapCpCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaguhahahaguwJguhahahahahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahayORKRKRKaQfEEuDchahahahahahahahahahahahahapCpCpCpCpCpChahahahahahahahahapCpCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahatfsoIAVrIAVrEPVrIAIAofhahahahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxDcDcDcDchahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahaMnDGsodXsodXMDdXsodXwyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahaeaUGwywywywyKEwywywywyguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahapAdXwywywywyKEwywywyYFhaguhahaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahaeaUGwywywywyKEwywywyYFhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEhahahahahahahapAdXwywywywyKEwywywyYFhahaguguhahahaguhahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwzwzwGRzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwhahahahahahahaeaUGwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahapAdXwywywywyKEwywywywyguhaguguhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwhahahahahahahaeaUGDGrnjqpAJZpAjqpAUGhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahapCpCpCcJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYSYXEXEXEXEXEbPXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahahahaTohaPshahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahvgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahagucJpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXESYSYYwXEXEXEXEbPbPXEXEXEVg -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwhahahahahazZypTDnHDhnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHLyhahahaBQgxgxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHyphVpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEYwYwYwXEXEbPbPbPbPbPXEXEVg -VgXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwhahahahahaEbguulPomPhahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaOapCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxLxLxLpWbPbPbPbPbPbPXEXEVg -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwhahahahahaEbhaEDtNhahahahabThahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCpCpCpCpCpCpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLzabPbPbPbPKdpWXEXEgG -VgXEXEXEXEXEXEXEXEXEzwzwzwzwXEXEXEXEXEzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwhahahahahaPiQPEjEjQPCuQPQPQPQPQPTsRTJVRTAxhaKPKPKPKPzbhahahahahahahahahahahahahahahahahahahahahahahahahaFXhvgxgxgxhaFXhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPKdxhxLxLxLzabPbPbPKdxhKafpfpgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwhahahahahaEbQPvjssyhisisgdvdaVQPSvlJalalqzKPKPZAqydUKPSbSbSbhahahahahahahahahahahahahahahahahahahahahahahaBQgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLKafpfpfpxhxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPryCYSxhPmbLjLjmhQPghUcRTRTGSKPavmEuPyBKPoLmsSbSbSbhayQljljljyQhahahahahaFKFKFKFKwLwLwLwLwLwLMLgxgxgxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrpCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPprlOqXdLhRRsTjqWQPwuOXalalqzKPavxrhZyBKPGzcnnOuQSbyQyQIirWIiyQFKFKFKFKFKFKagLYGaXFXFXFkVXFXFNNgxgxgxgxgxXgGJGJGJGJGJhahahahahahagjxGxGxGxGgjgjgjKuhahahahahamJmJWMWMWMmJmJhahahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPssqqlgMYioBplodBQPgLQPiLiLiLKPavxrhZyBKPElZNMbiJrMNfYJhMhMhgihYcxBDeimSjtZvAVofDwfwfwfwfwfwffJgxgxgxgxgxHPOBRpBeVRGJhahahahahagjgjkKIIQiegSqDjTUKuKuydydydKumJpEpEMzbKAPmJmJhahahahahaOapCpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPVOqXUdBpQydOELfdcAaNQPPwPwPwKPyIqdjYasKPFuLtmjJOGTOvJLviviiWIYYcsfzuzuFKzukSFKFKwLwLwLwLqUwLxFgxgxgxgxgxHPOBBepJBeDohahahahagjgjvEBRYjInfycXrvKYQWeEJMJMJMRHmJpEpEOUvZBxAOmJmJmJmJhahaxQgupCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLxLxLxLxLgG -VgXEXEXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPupKQaIciNqHFchuYLRPzQPPwPwPwAnfvCBjYKkKPUuUuUuUuUuolkgAXAXWtqDsAAHiNusZgzuxDFKyyyyyyyyyyyyyyXegxgxgxgxgxHPOBnlBeocGJhahahahagjdewQrztcYTfybsXnqlQWSTqQEAqQPJmJwEmqjVxpZDPghIgbaOmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLxLIggG -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSQPBprLnfhFqfvCRYVynPdkQPddPwPwKPKPdTQvfZKPeXuqcrTisYORbhAXAXGrxVQTqaDEKHvzIyfSFKHryyyyyyyyyyyyXegxgxgxhagxnqGJGJGJGJGJhahahahaswWAwQFMZRGncCRDggOpQWXlCoCoCouLmJmJwVbnJDnxXygbgbgbmJhahabThapCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLxLIgIgIggG -VgXEXEXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYQedYJKdYuOdYdYqsIbIbIbIbIbiGKPIhdhYuPQKPOQtmKUekMvkMzBkMsaBDqDhDdJDqIVYIzuDKFKyyyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswWAwQuNCGlRAYMBzNCcKymOmOmOylaoapmJFmbnMznxnzgbgbgbmJhahabThapCpCzgzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIggG -VgXEXEXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYgyPVPVPVLddYNZQlIbCrgwWeIbQYKPpgRoRoHcKPauQNcrPKUUbEWmVUyzeYsrYcAKzuzuShzukSFKNCyyyyyyyyyyyyXegxgxgxhahahahahahahahahahahahaswsxMmJctgKZnvbXMeAJKyRbuWSgKsERTgmJzEcLdjQkPghIgbaOmJhahabThahahahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJvsUDOjoUevudytzIaMtFtqIbzjAEeHzvmmFfKPKPKPXQeueueueuePKNvpSJlPeOtTzOgmqvkUVkrHrHVkyyyyyypVQdExgxgxhaOPhahahaGJyMyMGJGJGJGJGJGJpNpNpdPZXOpdpdpdQWZvPEBgquOTYfmJLcGZLhqFAOuhuhuhuhuhuhiIIoAthahahazgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKzJoUClVGNWUCuBgWIbIbIbIbIblWKPObVuITMonNpyiDXQQhaGtVeupYIlcvdwbNbNVkVkVkVkVkVkZjUTVkvopVvPQdgxgxgxgxhahahahaVFGJYrHgGJsNIKjwOdGJGCEiGCiYCNTZYmgSQWKyKyLVYpwlKymJmJkbIxmJmJuhlhyxlThwuhNGyFAtlYhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYzJIWtUbIoUevXiMkXmnXnTeVHflWARoOoOzhoOoOoOoOXQfalQphiAleBdLIFBhkTzsnnmbgkndNsCBqtkdZYAXegxgxgxgxgxgxgxgxgxgxHPUzpnpUEIaKHwyYbMEItxafafyGgXHkHkHkEaHkjfdrxMWgNsPGjfcPqKetdnvlzFWXBXlpDICZfHDXyyhazgzgzgpCXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYIUuGuGuGiTJKtbUavtUQEJQfWBKrAZiyiyoNAfAFHvuKLusHpTEOBKrwNpRnUYLbnGRNRNRNhbUmoIotgQxkYAXegxgxgxgxgxgxgxgxgxgxHPWKWijsOHyPSeLrPMtMXUefqIjJpZHikEkEkAgZVfSXQOSXSDgZgZcMKMKMSLPLSNWoQLbbrgZyigRCyyzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYGLsVsVsVJKdYbtwYfcdYdYvHpmlWrbnJlUFZKPImubMWSKsksdYihSzHZTaLqAdtTcaLaLaLZTFiVkcOcOVkCQQdgxgxgxgxgxgxgxgxgxgxhWGJUsUsGJUsUsUsGJGJqTqTWQcYrIWQqTqTqTqTHGGeMfEMmHkGmLLHUyUyUyuhuhuhuhyuAtuMuMAtlYzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwffzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYnuUotLUopQizKjdYGIdEdYlWlWlWKPKPKPoAKPKPKPKPXQTwYgJyeuTtYZVdFPVkdgrmwwZkyVfYVkKSZJDBurhagxgxgxgxgxgxgxhahahaLXLWLWLWLWvnLWpjedooZLbHEXUrkNvhcUhhucqTeQJYWJUFMaUyUyUyUyDuwnAWuuBBAWhahabThahazgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYjKWWlaOEaXmfCHqwiHPAQIDBDBDBDBDBoXUpgRvnvnpjXQXQXQPcXQVkVkVkVkVkVkcOcOVkcOcOVkwchahagxgxgxgxgxgxgxgxhahahahaLohahahahahahaPCedomqmNITRxAVslLahahhdWQsXzrAUUFvWUyRZESiiWNGHNcEoxIAWhahawJguzgzgzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYxyXmTVXmXmCMbZdYDWlXdYyyyyyyyyyyyyyyyyyyyyZEvnpjnpppqxmIhqKSZJZJZJZJDBZJDBZJDBelhahagxgxgxftZFRXRXRXNVApApBjhHhahahahahahaPCedIRqmNIEKJsuJKpKpwAUSWQZhJtSmUFzWUyPXmWHBkzdcrStKnwAWhahawJguzgzgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSJKlClCJKlClCdYdQJKdYdYwYyyEBEBEBEByyEByyyyEByyEBLonpltWyrAhqwchahahahahahahahahahagxgxgxhahaPCFUIDvxIDFUhahahahahahahahahahaLoIpTWqmNIArNxXreTKTKTRmWQDdOmtvUFwmUyKvXwcuCgSRAWtKzeAWhahawJguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSdYRqRvVatGVtcabVfucayyyyQHhahahahahahahahahahahaLoXQjuIEXQXQwchahahahahahahahagxgxgxgxgxhahaPCeSyrBIyrBThahahahahahahahahahaPCIpIpRItnAgiROofzNopDRSqTrkuCBoUFWhUyJdeGnCUyUyUydRErAWhahaNMguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSMTiEoPkwdqgELqnYqkcayyyyyyyyWLhahahahahahahahaftitGPHoHoLlDBelhahahahahagxgxgxgxgxgxhahahahaLoeSItCdItBThahahahahahahahahahaANpjIpIpmxTCKTKTEvkxkxkxkxkxzrICezMaUyUyUykWUycoMaMaAWAWhahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSSOPyrfjMyCAecaChyXcaoDVqVqoDOSgxhahahahagxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahaIdBjNJeSnMjxnMBThahahahahahahahahahahaZEpjIpIpgagagagaHzAwVTjOkxNksqtPHMwZFvYqXkujFazivfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQScacacacajeyXcaJvcgWIoDXXfIoDlcgxgxgxgxgxgxgxgxoEgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahahahaPCFUFUFUTTOITTFUFUFUhahahahahahahahahahaANLWLWLWvnLWFYUeBcmdtuMxsEtBVvZtbinWcmdoVfBoWcvfhahahahaOaguXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbhahaoDTNNKCerQQnyDiUWzmlhLwKlcgxgxgxhahagxgxgxoEgxgxhahahahahahahahahahahagxgxhahahahahaLoeSTmHRmtHOIHzqRxBThahahahahahahahahahahahahahahahakPHzZdzdZoLCtWSmUFBlBlehBlBlHGgZYkvfhahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaPiguhaZKZKbpNYTFSABtYVoDrDCDoDOSgxgxgxgxgxgxgxgxoEgxhahahahahahahahahahahahagxgxhaguhahahaPCeSVbQtUKQtQMQtzXBThahahahahahahahahahahahahahahahaJWHzkxkxkxkxFQjtNABlRkaaveBlEfbxbuMahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaZKmYBvZKGOyDDLoDoDQjQjoDlcgxgxgxgxgxgxgxgxoEhahahaguhahahahahauHhauHgxgxgxhahahahahaLoeSoeQtUKDHQMQtsMBThahahahahahahahahahahahahahahahahaYOVcsjHHvbamMKgOBloBUWMGBlwhwhwhWbWbWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaEbguhaZKZXnRZKDlwPPhoDftLWLWvnLWHZvnHEUHUHHEravnhHhahahahahahahahahahaGkhahagxgxhahaguhahaLoFUdvFEmrxWvVVBPTFUhahahahahahahahahahahahahahahahahaYOwimuZpdKGQcQTkBlBlBlBlBlvGvRLnvRmnWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSguhaZKQxZKZKoDoDoDLwLohKhKhKhKPCiMiMScwpiMLQhahahahahahahahahahahahahahahagxhahahahahahaPCFUGqGqueFUsiGqGqFUhahahahahahahahahahahahahahahahahaYOVcceHHvbrigHwWwhlfKxCAzlZCMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaAskLkLvnbcLWLWEUhKhKhKhKPCpOFnrEmDrPLQhahahahahahahahahahahahagxgxgxgxgxgxgxgxhahaPCoMeDHmqhxRfwHmBVoMhahahahahahahahahahahahahahahahaYOYOvbvcvbvbPSPuEwlqfUReKmUxFVMjMjMjBwWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCpOEpoyoSrPLQhahaguhahahahahahahahagxgxgxOcabOcgxgxgxhahaPCoMDbHmLTdHvmHmxdoMhahahahahahahahahahahahahahahahaYOVzohnsosvbbRJCXcMyxlwkQAfNbQMjMjMjQXWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaVehahahahahahahabThahahahahahahaLoiMiMNiLKiMLohahaguhahahahahahahahagxhagxOcabOcgxgxhacZhaLoxzTMHmvKVMHmHmTMtEhahaoMuxoMuxoMuxoMhahahahahahahaYOreHqPjgpvbHNMKntSPhoHlfrYStJcdcdcdRdWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahaPCiMFrLMAzrPLQhaguhahahahahahahahahahahagxgxgxgxgxgxhahahaPCxzpHHmvKVMHmHmpHinhahaoMHmeoOtYLHmoMhahahahahahahaYOKOHqkDFdvbBWfFgOSPgMwoqenZkJvykkBuhmWbhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahaguQShahahahahahahabThahahahahahahaLoiMtdTAtIrPLohahahahahahahahahahahahahahahahahahahahaguguLoxzNHHmvKVMHmHmNHtEhahaoMJBTITfoxBVoMhahahahahahahaYOreHqepgpvbsJIqgOSPgMIZBnBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaftvnBjvnmRvnvnBjBjBjBjBjNJiMJgHspPrPLQhahahahahahahahahahahahahahahahahahahahahaguPCoMDbHmvKVMHmHmEToMhahaoMHmiXyKogHmoMhahahahahahaguYOUfXAazesqPsvWRgOSPccIZBCSrBCSyBCOMBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLyLyLyLyLTeTeTeTebObObOiMhejTuTiMZEvnBjBjBjBjvnBjBjBjBjBjBjBjBjBjBjBjBjBjvnvnBjNJoMhtHmOVdHACHmBsoMhahaoMpbURDionZBoMhahahahaEQQJQJYONdLZaJAivblKMKgOwhcsIZBCBCBCBCBCBCBCFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaPCyLxNZVHLBmJUwUYbFLojlbTyiMiMNioRiMIQIQIQwGIQIQwGIQIQIQwGwGoMoMuxuxuxoMoMuxuxuxoMoMoMREJqugFWrRJqzVoMoMoMoMukVMoMukHmoMoMuxoMEQEQUtayvbvbvbvbfqvbZxMKgOwhwTIZYdSraiSySnWaWaFlhahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaftNJyLmAxSwOBmBOXjIsFLmoymOOldoFfiIJBfdadadaDfdadaTPdadadatrshkOYtRARARAiSECGcRARAkcCCrRadnrWsVMVJCUKXrRXDYtjAHmVMpuHmHmUgJmRAeJXoAqkdkdkdQbMJGwsgQQJlMKhJTOvvTOTOTOTOqgqgqgqguihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLyLsWBmBmBmIFFLFLFLxmldldldjjAdDwopCmUjyNqiqBLsLsLsLsLsNmVQHmHmHmHmHmzQVWVHVWVWVWVWLzfjVHfjsFVWVHDTLzVWVWVHVWJJVWsRVWVWlMHmHmAcSakFTLyEyEGUjanjlllljbwWTOsGboEWQoTOyesBUOVhuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCyLzsSfklBmtXsOdAFLyopacxldsKaFCWvNXsOinkYUiwnQXfthRzYUYUqnshDtEFDJZaWwBbZfQzgzvMHQjFpxGFiOCFwgpsfkKLlIYhDrIwDrDrpXEmJzokkuokoQXoYeSpSpSpJiSpSpPtSpBMptkYWTpfqETOTOTOOFOFOFOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLoyLZctHXPBmvwXMczFLNQKISZldSdaFCWNvqVMNMNCnCnINMECnKbFNZzwGwGoMoMoMTlTlPvuFTlTloMoMoMoMzVJqrRFWugJqykoMoMVZoMNONONOXSNONOoMVZoMEQEQiViViVEQiViVEQtOZxMKntTOJnHyNbCpTOsTYQlxOFuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzRSFADFkBmiKKAYDFLkqLfgfldhQaFajMcQUMNejRJqrjDoiOhKbnLnLwGhahahahaTlfAABGpLpTlhahahaoMHAHmFodHeLHmRjoMhahahaNOCPXtpFZmNOhahahahahahahahahahahaMgVjZxUMsITOWrTOTOTOTOOFuXuXGVuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLozRxUIvXYBmBLfmZQFLSHFzCRldzmaFdVwXWHMNDDSBSBSBqJGmKbhahahahahahahaTlkIGhdxrCTlhahahaxzHmHmHmVMvKAAjRtEhahahaNODzCkPmxwNOhahahahahahahahahahahaMgUZZxMKwWieOFOFmiFevTnhOFjnUvuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSIdvnNJyLumZMNuBmXxHnWOFLfVHCtAldfCaFfehNlrMNgsSBEErqtRlsKbhahahahahahahaTlKfNLDphyTlhahahaxzTMTMHmVMvKAArGinhahahaNOSssbYKkoNOhahahahahahahahahahahaEQEQZxnDnacEKnXKSSVXVXgTAMAMLauihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSPCOYOYOYHhQVBmBmFLOeFLFLldIfldldldaFTxMPMNMNKKcWAvKlobRGKbhahahahahahahaTlTlTlcRTlTlhahahaxzpHpHHmVMvKAAawtEhahahaNONONONONONOhahahahahahahahahahahahaEQxsixdMrhpLOFwDOFjUvFuXqtuiuihahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSteOYarGxHhszjveIpeDZUJRfVpDZjveIIkwSPDQadGjQSBHWZYcjobrUKbIdBjBjLWLWvnLWLWvniqVPgohahahahaxzNHNHpbdHhfHmGytEhahahahahahahahahahahahahahahahahahahahahaCTLEdFCTCTLUuXwDxCOFvFfGuiuihahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSuUnyKWuZDxJuyqLkFjngiraBemerctctmwENmXKoCnunbfHWZYcjobRuKbLohahahahahahahahahahahahahahahaoMlFHmVVsQZWHmNtoMhahahahahahahahahahahahahahahahahahahahahaCTmyhiRQCTwvwvwvuiwvwvwvuihahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSnUOYGiRlgKJNOuoayaCvoJkmJaCvXbbyRixJaxJFYPZrIzHWclcjMCWjKbLohahahahahahahahahahahahahahahajNIrIrKtjNRFIrIrjNhahahahahahahahahahahahahahahahahahahahahaoZGbHphBCThahahahahahahahahahahahaQrXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbPbPbPbPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSLoOYOYOYHhRgDvDvduTvduduYWJhYWYWYWaFjSeCCnEYNXNUAIcjSBmMKbLohahahahahahahahahahahahahahahajNOyUNjlTGTEXaLDjNhahahahahahahahahahahahahahahahahahahahahaoZstTHUACThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQSANvnpjdyKVmkFqDvnKUINEduMQQgIuYWMIaFvrHXCnTrjpxORJCXSBuAKbLohahahahahahahahahahahahahahahaOAbwGMrOXRatGMJGxHhahahahahahahahahahahahahahahahahahahahahaoZIXlBjECThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDDNCIOwDvFsXhmQduAhpGfBYWCsaFdVNvMNmTGNrqniSBcWFyKbLohahahahahahahahahahahahahahahaOAhUGMrOGMatGMLJxHhahahahahahahahahahahahahahahahahahahahahaCTwIdFCTCThahahahahahahahahahahahaQrhaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCzDEHeNaPDvaAwCHIdupicwWEYWfCaFdVZnMNMUidHdThbWpcKbKbLohahahahahahahahahahahahahahahaOAmaGGXLgrMtGjBGxHhahahahahahahahahahahahahahahahahahahahahaoZjkYvHDKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdybDEgXCDvbLJXLvdubzmClDYWTaaFdVaqKbKbKbKbKbKbKbKbhaLohahahahahahahahahahahahahahahajNjNjNJoRaJojNjNjNhahahahahahahahahahahahahahahahahahahahahaoZXzODDCKihahahahahahahahahahahahaQrhahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLodyqpoTEtDvQZVAnEduLPdpzYYWpzaFdVFOKbOZQuKbhahahahahaLohahahahahahahahahahahahahahahahahaOAgNSWgNxHhahahahahahahahahahahahahahahahahahahahahahahaCTUEZICTCThahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgbPbPbPbPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaPCdydyhcDvDvDvNzzSduduHxYWYWYWDAlSenAaAaAaAaAaAaJPJPAaLogxgxhahahahahahahahagxgxgxgxhahahaOAMAtpMAxHhahahahahahahahahahahahahahahahahahahahahahahaGdfbfbFthahahahahahahahahahahahahaQrhahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaLogudyCOpIHYDvXVWlRydumUYBYlYWtyrtgJAayAqoRwysAamcDUAavqgxgxgxhahahahagxgxgxgxgxgxgxgxhahaOAkpVCkpxHhahahahahahahahahahahahahahaguhahahahahahahagxgxgxgxgxhahahaguguhahahahaguhahahaQrhahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaIdNJYydymzlyDYDvzcvJpBdurKFJpKYWNFjoXWTXPbFgRhtaTXSCqZSoNBgxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahajNCbfTCbjNhahahahahahahahahahahaguguguhahahahahahahagxgxgxgxgxgxhahahahahahahahahahahahahaOahahahahahahaXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwswswswswsDvDvdudududuYWYWYWYWtyBasmUixxLGexFFkCiQdfhlNBgxgxgxgxgxgxgxgxababgxgxababgxhahakvSzSzSzkvhahahahahahahahahahahahahahahahahahahagxgxgxgxgxgxgxhahagxcqCTCTCTCTCThahahahaguaEhahahahahaEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCwsxvfnzzicJjjGfMuVhnGtsyecGtuDVERcygibibibibyJAayJyJAavqgxgxgxgxgxgxgxgxOcOcgxgxOcOcgxhahahagxgxgxhahaOPhahadPdPdPdPdPhahahahahahahahahagxgxgxgxgxgxgxgxgxgxgxfbsDeKeKlVCThahahaguhaQrhahahahaVLEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwzocNEeDnGDqcqcCyjmrBJSsPsPRWXHqCzfibTBcBibftLWLWLWvnhHhahahagxhahahagxgxgxgxgxgxgxgxhahahagxgxgxhahahahahaAmNylZdIBkhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxfbsDeKRPeKAjhahahahahaQrhahahahaVLEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwyRachXwsgkZlZlgkrjPkZlZlgkgktyLiaRVIxPrlibLQhahahahaguguhahahahagxhahagxgxgxgxgxgxhahahagxgxgxgxgxhagxgxgxSUgxgxgxgxgxgxgxhahagxgxgxgxgxgxgxhagxgxgxgxgxgxgxfbsDwHeKgnCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLoNwVnfKouwsrTzLXIMlLgeFodMiFSEGkfutNjibksgIibLQhahahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxgxhahahagxgxgxgxgxgxgxcICTCTCTCTCThahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEzgzgzgzgzgzgzgbPbPbPbPbPbPbPbPbPbPbPbPbPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowslmDnwswseWBZLLBiUkrFGuqLwxEGkjLOtCibibibibLQhahahahahahahagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxgxhahahahagxgxgxgxgxhahahahahahahahahahahahahaQrhahahaVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEvBzgzgzgzgzgzgzgzgzgzgbPbPbPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwySPlbGwsGgbmIObYluztmBbYXqEGgkgkgkgkftvnvnybhahahahaguhagxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxhagxgxgxgxgxgxSUgxgxgxgxgxgxgxgxgxgxgxgxhahahahahagxgxgxgxhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaPCNwznQDwewsMZbYaZWDaSeFZPTuEGEGftLWLWLWNJhahaJRhahahahahahagxgxgxgxgxgxgxhagxhahaxKwbHuHuwbQpMRhahahaxKQpQpQpaYFRWVWVFRWVWVFRhahahahahahahaguhaharupSpSBEhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaLowsbkJewswsEGyZyZEGEGEGyZyZEGfthHhahahahahahaPChahahahaguhagxgxgxgxgxhahahahahahawrnVmSNnnVnVwrhahajZaYFRWVWVFRFReqseqHseeqFRFRWVWVFRhahahahahaKeKeiZrrKehahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShaANTQXvXvTQvnvnvnvnvnvnvnvnLWLWNJhahahahahahahaLQhahahahaguhagxgxgxgxhahahahahahahajztiscBHHtEdKFhahawrFRFRsexYseMpseOLOLOLseIcseRVVYFRFRhahahahaOCkZhsRLZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahagxgxgxgxgxGEgxgxgxgxgxgxhahaguhahahahahahahaANApBjpvvnvnBjALALALALLWLWApBjBjnFfoYHtiMOmGZbEdYorcQpaYFRwtFCxEQRQRQRQRQRQRQRQRQRAVgVewFRhahahahaOCJxcfQCZqhahahahahahahahahahahahahahaQrhahaVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgWnWnWnUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPUPbTbTbTbTbTQrbTbTbTGEGEGEGEGEGEOflzlzlzOfGEbTvgXZXZvgXZXZvgbTbTbTbTWvbTbTbTGEGEGEGEbTbTbTbTdPdPsSdPdPzMIenVnVnVnVNnNnFRkaOLPRPfnSnSnSnSnSVKVKOsPROLYXFRiZiZKeKeKeKevYhrbabababababTbTbTbTbTbTbTbTbTbTQrbTNaNaNaNayvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQDQtotototototototototototototoneGsGsGsGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahagxgxgxOfOfOfanCxUBOfOfgxvgIPkQxtSuqMvghahahahaKChahagxgxgxgxgxhahahahadProJTzPPYcKdbPNpRDkXuufowtjZZOLPRYaqGqGqGqGqGcTcTUqPROLYRtjWGdWUhjWSQMqKzGfLNRBLmeRbahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxHjcSKDkHndndYsOfOfvgGAMrWScpgCvghahahahaHShagxgxgxgxgxhahahahahadPhxlGJbJkPdHexeHeHeBrOWtDWxjcdSKgYaqGqGpkZSLAcTcTUqqYUVFpMVATwduanoAQbBBANeCEBhsLpobahahahahahahahahahahaQrhaVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahaguhahagxgxHjMuxZwNvOwjjdyntzqbcbblnAOJQGvgvgXZXZvgckgxgxgxgxgxgxhahahahahadPdPqNqNqNLeXJTqYGQqGKOqtlWZoVOLCwYaqGqGoYJfWpcTcTUqCwOLkeWZiuISsuNhKRSVoHxTLNLNLNbabahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxHjslkBwNcDeUgedmOfMHkhfxfxCzspjyfPlNIjOxHbgxgxgxgxgxgxgxhahahahahatiMMgPMsuSMXfOIeIenVpMpMFRttOLCwYaqGqGcTcTcTcTcTUqCwOLqjFRJAJAKeUhLFLFPeBJUhjrKhdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahaguhagxgxOfOfEkwNHUxoGWYEOfGYliXdzxBPwqYCuwkRhAaTHbgxgxgxgxgxgxgxhahahahahatiglbrjLPFAuEnoCmFnVhahaFRncOLCwaWJEJEBUBUBUBUBUijCwOLDMFRhahaKejiiCBFuRIMgBgckXdChahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfFIlEmVmVmKhuxixixixixihTycQBvgJwqOvgckgxgxhagxgxgxgxhahahahahanVnVYMXJXJEZXJvIxbnVhahaFRNPLxVNxnxnxnxnGXxnxnxnxnvUHKrNFRhahaKejiZUqRaDaDyijIKeKehahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahagxgxGEOfOfwaKGaeOfOfxiGlMFXGuvXBUwvgvgjgjgvgHbgxhahagxgxgxgxhahahahahahanVfgmNWqrZONrdnVnVhahaFRFRlkfsseOLOLOLWCOLOLOLsebSseFRFRhahaKeKeUlqRaDaDyitQKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahagxGEgxOfyWyWyWOfgxxiULPaAGnIXpmvvgftvnvnvnUbhahahagxgxgxhahahahahahahanVnVpMpMnVpMpMnVhahahahaFRZGZGFRFRWkWkSiWkWkFRFRZGZGFRhahahahaKeSESEKeKeSESEKehahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahaguhahaGEgxgxgxgxgxgxgxxixicGxixijgvgvgLohahahahahahaFXgxgxgxhaFXhahahahahahahahahahahahahahahahahahahahahaFRZGZGFRZGZGFRhahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahagxyyZEvDvnvnvnvnNJhahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaQShahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahahagxgxhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaQrVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahaebnHnHnHnHnHnHnHYnnHnHnHnHnHnHnHnHnHnHnHnHnHbqnHnHnHnHnHLyhahahahagxgxhahahahapwnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHnHilVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahafQxqxqfQhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahahahaROxqxqhGCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -YzCfCfCfCfifCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahahaCfCfROxqxqPWifCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXECfCfCfifififCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahahahahaCfCfCfKwxqxqPWififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfhahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXECfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwhahahahahahahahahahahahahabThahahahahahahahahahahahahahahahahaCfCfCfCfCfifKwxqxqPWCfCfifififififififififififififififififCfCfCfhahahahahahahahahahahahahahahahahahahaVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLVLNaVLVLVLVLVLEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififififROxqxqhGCfCfCfCfCfCfCfCfCfifififCfifififififififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfROxqxqhGCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfROxqxqhGCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfifififCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwfQxqxqfQzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififififCfCfCfCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififififififCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwtwzwzwgxgxgxzwtwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyCfCfCfCfCfCfCfifififififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwCfCfCfCfCfifCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfifCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwGRzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfififCfCfCfCfCfCfEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfififCfCfCfCfCfEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwHVCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifififCfCfCfEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfHVCfififCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfifCfCfCfEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfWYififCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfifCfCfCfEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfififCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfWYCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififHVCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfififCfCfHVCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfHVEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfHVCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfififCfCfCfCfCfCfzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfifHVCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfifififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififififCfCfCfCfCfCfzwzwzwUPzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfWYCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfzwzwzwzwzwUPzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfWYifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfifififififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfififCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwUPzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfHVCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfCfCfCfCfCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwUPzwEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwCfCfCfCfCfzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyHVCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEygxgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvCfCfCfififCfCfCfEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxgxEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyyvEyCfCfifififCfCfEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTEygxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyzwzwzwzwzwzwzwzwzwzwzwzwzwEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyyvEyfQjXjXFDFDFDjXjXEcfQgxgxgxgxEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTgxgxyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxGEgxxqxqxqxqxqxqxqxqxqxqgxgxEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTipyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxGEgxxqxqxqxqxqxqxqxqxqxqgxEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyyvEyfQVDcycyJQJQJQcycyfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgxLxLxLgDPOPOPOMhxLxLxLxLIgIgIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyyvEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgxLxLgDGvWPWPWPtYPOMhxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyyvEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLzaWPyTyTWPWPWPtYPOMhxLxLxLxLIgIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLzaWPWPyTyTyTWPWPWPtYMhxLxLxLxLIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyCfCfCfifCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLgDGvWPWPyTyTyTyTyTWPWPtYPOMhxLxLIgIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPKdfpxhxLxLxLIgIgIgxLxLgDGvWPWPyTyTEyEyEyyTWPWPWPWPhOxLxLxLIgIgIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEygxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPKdfpfpfpxhxLxLxLxLxLIgIgIgxLxLzaWPWPyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIgIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyCfCfCfifCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPfpfpfpxhxLxLxLxLxLxLxLxLxLIgIgIgIgxLKapWWPyTyTyTEyEyEyEyyTyTyTyTWPtYMhxLxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTCfCfxLxLxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgxLxLKapWWPyTyTyTyTEyEyEyEyyTyTyTWPtYMhxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyCfCfCfififCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfxLxLxLxLgDPOPOPOPOPOPOMhxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTyTyTyTWPWPhOxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfififCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfxLxLgDPOGvWPWPWPWPWPWPhOxLxLxLIgIgIgxLxLxLKapWWPWPyTyTyTyTyTyTWPWPWPWPhOxLxLIggG -VgXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyCfCfCfifCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfPOPOGvWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgxLxLxLKafppWWPWPWPWPWPWPWPKdfpfpxhxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgxLxLxLxLKafpfpfpfpfpfpfpxhxLxLxLxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLxLIggG -VgXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyCfCfififCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgxLxLxLxLxLxLxLxLxLxLxLxLIgIgIgIggG -VgXEXEXEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoCfCfCfifififCfCfCfCfififififififCfCfCfCfCfCfCfCfCfyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyAoAoAoCfCfCfCfCfCfifififififififififififififififCfCfCfyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyAoAoAoAoAoAoAoCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfififCfCfCfCfCfCfyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTEyyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfCfyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyCfCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTlwyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTCfCfCfCfCfCfCfWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTCfCfCfCfCfCffppWWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTCfCfCfCfxLKapWWPWPWPWPKdxhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPCfCfCfxLxLKafpfppWWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyZuEyZuEyfQxqxqfQEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPCfCfxLxLxLxLxLKafpxhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoEyEyEyEyEyEyEyAoAoPUAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPtYPOPOMhxLxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoEyEyEyEyAoAoAoAoPUAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoLSxqxqHaAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoAoPUAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoAoAoZuEyZuEyfQxqxqfQEyEyEyAoAoAoAoAoAoAoAoAoAoAoAoAoPUEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgWnWnWnWniFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFiFDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQiFiFiFiFiFiFyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvtsyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvPUPUPUPUPUPUPUyvyvyvyvyvyvyvyvyvyvyvyvGEGEGEyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvyvDQDQDQDQDQDQDQtotototototototototototoneGsGsGsGsGsGscFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFcFgG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyTyjyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPKdxhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyAoAoAoEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyhEEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEygxgxgxgxgxEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyEyEyEyEyuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjEyEyEyEyuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyzCyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyhEEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLIgIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTDQyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPhOxLxLxLxLxLIgIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYxLxLxLxLxLxLIgIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLIgIgIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLIgIgIgIgIggG -VgXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOMhxLxLxLxLxLIgIgIgIggG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYMhxLxLxLxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOMhxLxLxLgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPtYPOPOPOgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEgG -VgXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTyTyTuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTEyEyyTyTuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTEyEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEyTyTEyyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEyTyTyTuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPWPWPXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEyTyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPWPWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEyTyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPWPWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEEyyTEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTWPXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyyTyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyyTEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyyTyTyTEyEyEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyjyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTEyEyEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTEyEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyjyTyTyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEuEXNXNXNXNuEuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTEyyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTyThChChCyTyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyThChChCyTyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjiFyjyjyjyjyjyjyTflhCvkhCFAyTyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjuEuEuEuEuEuEXNXNuEuEuEuEuEuEuEuEuEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyflhCvkhCFAyTyvEyEyEyEyEyEyEyEyEyEyEyEyEyXEXEXEXEXEXEXEEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyEyyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEbvyjyjyjbvyjyjyjSkyjyjyjbvyjyjyjKBlAJHlAKByjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjyjyjbvyjuEuEuEXNXNuEuEuEyjbvyjyjEybvEyEyEybvEyEyEybvEyEyEybvEyEyEybvEyEyEyKBlAjHlAKBEyyvEybvEyEyEybvEyEyEybvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEEyEyEyEyEyEyEyXEXEXEXEXEXEXEXEyTyTyTyTyTyTyTyTyTyTyTyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjyjyjyjyjyjXEXEXEXEXEXEXEXEXEXEXEXEXEXEyjyjyjyjyjyjyjXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvhChChCbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvhChChCbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEyTyTyTyTXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgIGXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEbvbvbvbvbvbvbvbvbvbvbvSkbvbvbvbvbvbvbvbvDPhCFHbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvuEuEXNXNuEuEbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvbvDPhCFHbvbvSkbvbvbvbvbvbvbvbvbvbvbvXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEXEVg -VgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvRrRrRrRrRrRrbvrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVrVbvhChChCbvrVrVrVrVrVrVrVrVrVrVrVrVrVVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVgVg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Yz +Yz +Yz +Yz +Yz +Yz +Yz +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +"} +(2,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +Cf +Cf +Cf +Cf +if +Cf +Cf +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +IG +Vg +"} +(3,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +Cf +Cf +Cf +if +if +Cf +Cf +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(4,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +zw +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +XE +XE +XE +XE +XE +yT +yT +yT +yT +yT +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(5,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +Wn +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(6,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(7,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(8,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(9,1,1) = {" +Vg +pC +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(10,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +lw +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(11,1,1) = {" +Vg +pC +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +XE +Vg +"} +(12,1,1) = {" +Vg +pC +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +GR +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(13,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(14,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(15,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +XE +Vg +"} +(16,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(17,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(18,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(19,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(20,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +XE +Vg +"} +(21,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(22,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yj +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(23,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(24,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(25,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(26,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +ff +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(27,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(28,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(29,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(30,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(31,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(32,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(33,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(34,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(35,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(36,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(37,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(38,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(39,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(40,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(41,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(42,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(43,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(44,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(45,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(46,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(47,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(48,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(49,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(50,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(51,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(52,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(53,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(54,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(55,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(56,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +DQ +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(57,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(58,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(59,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +DQ +yT +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(60,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(61,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +GR +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(62,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(63,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(64,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(65,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +iF +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(66,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(67,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(68,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +Vg +"} +(69,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(70,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(71,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +UP +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +Vg +"} +(72,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(73,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +XE +XE +Vg +"} +(74,1,1) = {" +Vg +pC +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(75,1,1) = {" +Vg +pC +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(76,1,1) = {" +Vg +pC +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +XE +bv +bv +rV +"} +(77,1,1) = {" +Vg +pC +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +zZ +Eb +Eb +Pi +Eb +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +Eb +Pi +QS +Eb +QS +QS +QS +Ve +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +Qr +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +QS +eb +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(78,1,1) = {" +Vg +pC +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +yp +gu +ha +QP +QP +QP +QP +QP +QP +QP +QP +dY +dY +dY +JK +dY +dY +dY +dY +dY +dY +JK +dY +MT +SO +ca +ha +gu +ha +gu +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Id +PC +te +uU +nU +Lo +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(79,1,1) = {" +Vg +pC +XE +ha +ha +ha +tf +Mn +ea +pA +ea +pA +ea +pA +ea +To +TD +ul +ED +Ej +vj +ry +pr +ss +VO +up +Bp +Qe +gy +zJ +zJ +zJ +IU +GL +nu +jK +xy +lC +Rq +iE +Py +ca +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +vn +OY +OY +ny +OY +OY +vn +ha +ha +ha +ha +ha +ha +Id +PC +PC +PC +PC +Lo +Lo +PC +PC +Lo +AN +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(80,1,1) = {" +Vg +pC +XE +ha +ha +gu +so +DG +UG +dX +UG +dX +UG +dX +UG +ha +nH +Po +tN +Ej +ss +CY +lO +qq +qX +KQ +rL +dY +PV +vs +oU +IW +uG +sV +Uo +WW +Xm +lC +Rv +oP +rf +ca +oD +ZK +ZK +ZK +ZK +ha +ha +ha +ha +ha +ha +ha +ha +ft +PC +PC +Lo +PC +Lo +NJ +OY +ar +KW +Gi +OY +pj +PC +PC +PC +Lo +PC +Lo +NJ +ws +ws +Nw +Nw +Nw +ws +Nw +Nw +ws +TQ +gx +bT +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(81,1,1) = {" +Vg +pC +XE +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +DG +Ps +Dh +mP +ha +QP +yh +Sx +qX +lg +Ud +aI +nf +JK +PV +UD +Cl +tU +uG +sV +tL +la +TV +JK +Va +kw +jM +ca +TN +ZK +mY +ZX +Qx +As +ha +ha +ha +ha +ft +PC +PC +NJ +yL +yL +yL +zR +zR +yL +OY +Gx +uZ +Rl +OY +dy +zD +zD +dy +dy +dy +gu +Yy +ws +xv +zo +yR +Vn +lm +yS +zn +bk +Xv +gx +GE +ha +ha +ha +gu +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(82,1,1) = {" +Vg +pC +XE +ha +ha +ha +Vr +dX +wy +wy +wy +wy +wy +wy +rn +ha +nH +ha +ha +Cu +is +hP +dL +MY +Bp +ci +hF +dY +PV +Oj +VG +bI +uG +sV +Uo +OE +Xm +lC +tG +dq +yC +je +NK +bp +Bv +nR +ZK +kL +ha +ha +ha +ha +vn +yL +yL +yL +yL +zs +Zc +SF +xU +um +Hh +Hh +Dx +gK +Hh +KV +DN +EH +bD +qp +dy +dy +dy +ws +fn +cN +ac +fK +Dn +Pl +QD +Je +Xv +gx +GE +gx +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(83,1,1) = {" +Vg +pC +XE +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +jq +ha +nH +ha +ha +QP +is +mb +hR +io +Qy +Nq +qf +uO +Ld +oU +NW +oU +iT +JK +pQ +aX +Xm +lC +Vt +gE +Ae +yX +Ce +NY +ZK +ZK +ZK +kL +ha +ha +ha +ha +Bj +yL +xN +mA +sW +Sf +tH +AD +Iv +ZM +QV +sz +Ju +JN +Rg +mk +CI +eN +Eg +oT +hc +CO +mz +ws +zz +Ee +hX +ou +ws +bG +we +ws +TQ +gx +GE +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(84,1,1) = {" +Vg +pC +pC +ha +ha +gu +Vr +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +QP +gd +Lj +Rs +Bp +dO +HF +vC +dY +dY +ev +UC +ev +JK +dY +iz +mf +CM +dY +ca +Lq +ca +ca +rQ +TF +GO +Dl +oD +vn +ha +ha +ha +ha +vn +yL +ZV +xS +Bm +kl +XP +Fk +XY +Nu +Bm +jv +yq +Ou +Dv +Fq +Ow +aP +XC +Et +Dv +pI +ly +ws +ic +Dn +ws +ws +ws +ws +ws +ws +vn +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(85,1,1) = {" +Vg +cJ +cJ +bT +bT +wJ +EP +MD +KE +KE +KE +KE +KE +KE +JZ +bT +Yn +bT +bT +QP +vd +Lj +Tj +lo +EL +ch +RY +dY +NZ +ud +uB +Xi +tb +bt +Kj +CH +bZ +dQ +bV +nY +Ch +Jv +Qn +SA +yD +wP +oD +bc +bT +bT +bT +bT +mR +yL +HL +wO +Bm +Bm +Bm +Bm +Bm +Bm +Bm +eI +Lk +oa +Dv +Dv +Dv +Dv +Dv +Dv +Dv +HY +DY +Dv +Jj +GD +gk +rT +eW +Gg +MZ +EG +vn +GE +GE +Of +Hj +Hj +Hj +Of +GE +GE +GE +GE +bT +bT +Yn +bT +bT +bT +bT +bT +UP +UP +UP +UP +UP +UP +UP +UP +UP +UP +HV +HV +WY +WY +HV +HV +UP +UP +UP +UP +UP +UP +UP +UP +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +ts +yv +yv +yv +yv +yv +yv +yv +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +Sk +Sk +Sk +rV +"} +(86,1,1) = {" +Vg +pC +pC +ha +ha +gu +Vr +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +QP +aV +mh +qW +dB +fd +uY +Vy +qs +Ql +yt +gW +Mk +Ua +wY +dY +qw +dY +JK +fu +qk +yX +cg +yD +Bt +DL +Ph +oD +LW +ha +ha +ha +ha +vn +yL +Bm +Bm +Bm +tX +vw +iK +BL +Xx +FL +pe +Fj +ya +du +nK +Fs +aA +bL +QZ +Dv +Dv +Dv +Dv +jG +qc +Zl +zL +BZ +bm +bY +yZ +vn +gx +GE +Of +cS +Mu +sl +Of +Of +Of +gx +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(87,1,1) = {" +Vg +pC +pC +ha +ha +ha +IA +so +wy +wy +wy +wy +wy +wy +jq +ha +nH +ha +ha +QP +QP +QP +QP +QP +cA +LR +nP +Ib +Ib +zI +Ib +Xm +vt +fc +GI +iH +DW +dY +ca +ca +ca +WI +iU +YV +oD +oD +Lw +LW +ha +ha +ha +ha +vn +Te +JU +BO +IF +sO +XM +KA +fm +Hn +Oe +DZ +ng +Cv +Tv +UI +Xh +wC +JX +VA +Nz +XV +zc +du +fM +qc +Zl +XI +LL +IO +aZ +yZ +vn +gx +Of +Of +KD +xZ +kB +Ek +FI +Of +Of +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(88,1,1) = {" +Vg +pC +pC +ha +ha +ha +IA +dX +wy +wy +wy +wy +wy +wy +pA +ha +nH +ha +ha +Ts +Sv +gh +wu +gL +aN +Pz +dk +Ib +Cr +aM +Ib +nX +UQ +dY +dE +PA +lX +dY +yy +yy +oD +oD +Wz +oD +oD +ft +Lo +EU +ha +ha +ha +ha +Bj +Te +wU +Xj +FL +dA +cz +YD +ZQ +WO +FL +UJ +ir +oJ +du +NE +mQ +HI +Lv +nE +zS +Wl +vJ +du +uV +Cy +gk +Ml +Bi +bY +WD +EG +vn +gx +lz +an +kH +wN +wN +wN +lE +wa +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(89,1,1) = {" +Vg +pC +pC +ha +ha +ha +of +wy +wy +YF +YF +YF +wy +wy +UG +ha +nH +ha +ha +RT +lJ +Uc +OX +QP +QP +QP +QP +Ib +gw +tF +Ib +nT +EJ +dY +dY +QI +dY +wY +yy +yy +Vq +XX +ml +rD +Qj +LW +hK +hK +ha +ha +ha +ha +Bj +Te +Yb +Is +FL +FL +FL +FL +FL +FL +FL +Rf +aB +km +du +du +du +du +du +du +du +Ry +pB +du +hn +jm +rj +Lg +Uk +lu +aS +EG +vn +gx +lz +Cx +nd +vO +cD +HU +mV +KG +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(90,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +gu +gu +ha +ha +ha +gu +gu +ha +ha +nH +ha +ha +JV +al +RT +al +iL +Pw +Pw +dd +Ib +We +tq +Ib +eV +Qf +vH +lW +DB +yy +yy +QH +yy +Vq +fI +hL +CD +Qj +LW +hK +hK +ha +ha +ha +ha +Bj +Te +FL +FL +FL +yo +NQ +kq +SH +fV +ld +Vp +em +Ja +YW +MQ +Ah +pi +bz +LP +du +du +du +du +Gt +rB +Pk +eF +rF +zt +eF +EG +vn +gx +lz +UB +nd +wj +eU +xo +mV +ae +yW +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(91,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +gu +gu +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +RT +al +RT +al +iL +Pw +Pw +Pw +Ib +Ib +Ib +Ib +Hf +WB +pm +lW +DB +yy +EB +ha +yy +oD +oD +wK +oD +oD +vn +hK +hK +ha +ha +ha +ha +Bj +bO +oj +mo +xm +pa +KI +Lf +Fz +HC +If +DZ +er +Cv +Jh +Qg +pG +cw +mC +dp +Hx +mU +rK +YW +sy +JS +Zl +od +Gu +mB +ZP +yZ +vn +gx +Of +Of +Ys +jd +ge +GW +mK +Of +Of +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(92,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +gu +ha +ha +nH +ha +ha +Ax +qz +GS +qz +iL +Pw +Pw +Pw +iG +QY +zj +lW +lW +Kr +lW +lW +DB +yy +EB +ha +WL +OS +lc +lc +OS +lc +LW +hK +hK +ha +ha +ha +ha +Bj +bO +lb +ym +ld +cx +SZ +gf +CR +tA +ld +jv +ct +Xb +YW +Iu +fB +WE +lD +zY +YW +YB +FJ +YW +ec +sP +Zl +Mi +qL +bY +Tu +yZ +LW +ha +GE +Of +Of +yn +dm +YE +hu +Of +gx +gx +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +bv +bv +rV +"} +(93,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +gu +ha +ha +nH +ha +ha +ha +KP +KP +KP +KP +KP +An +KP +KP +KP +AE +KP +AR +AZ +rb +KP +DB +yy +EB +ha +ha +gx +gx +gx +gx +gx +HZ +PC +PC +PC +Lo +PC +Lo +NJ +bO +Ty +OO +ld +ld +ld +ld +ld +ld +ld +eI +ct +by +YW +YW +YW +YW +YW +YW +YW +Yl +pK +YW +Gt +sP +gk +FS +wx +Xq +EG +EG +LW +ha +bT +gx +Of +tz +Of +Of +xi +xi +xi +xi +gx +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yT +fl +KB +bv +bv +bv +"} +(94,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +KP +av +av +av +yI +fv +KP +Ih +pg +eH +Ob +oO +iy +nJ +KP +DB +yy +EB +ha +ha +ha +gx +gx +gx +gx +vn +iM +pO +pO +iM +iM +iM +iM +iM +iM +ld +ld +sK +Sd +hQ +zm +fC +ld +Ik +mw +Ri +YW +MI +Cs +fC +Ta +pz +YW +YW +YW +YW +uD +RW +gk +EG +EG +EG +EG +ft +NJ +gu +vg +vg +vg +qb +MH +GY +xi +Gl +UL +xi +yy +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yT +hC +SG +lA +hC +DP +hC +"} +(95,1,1) = {" +Vg +pC +pC +ha +ha +gu +gu +ha +ha +gu +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +ZA +mE +xr +xr +qd +CB +dT +dh +Ro +zv +Vu +oO +iy +lU +KP +oX +yy +yy +ha +ha +ha +gx +gx +gx +gx +HE +iM +Fn +Ep +iM +Fr +td +Jg +he +iM +oF +jj +aF +aF +aF +aF +aF +aF +wS +EN +xJ +aF +aF +aF +aF +aF +aF +DA +ty +NF +ty +VE +XH +ty +kf +kj +gk +ft +hH +ha +ha +XZ +IP +GA +cb +kh +li +xi +MF +Pa +cG +ZE +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +zw +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yj +yj +yj +yT +yT +yT +hC +vk +JH +hC +hC +hC +"} +(96,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +KP +qy +uP +hZ +hZ +jY +jY +Qv +Yu +Ro +mm +IT +zh +oN +FZ +oA +Up +yy +EB +ha +ha +ha +gx +ha +gx +gx +UH +Sc +rE +oy +Ni +LM +TA +Hs +jT +Ni +fi +Ad +CW +CW +aj +dV +fe +Tx +PD +mX +ax +jS +vr +dV +dV +dV +dV +lS +rt +jo +Ba +Rc +qC +Li +ut +LO +gk +LW +ha +ha +ha +XZ +kQ +Mr +bl +fx +Xd +xi +XG +AG +xi +vD +ha +nH +ha +ha +ha +ha +ha +zw +zw +zw +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +yj +yj +yj +yT +yT +hC +SG +lA +hC +FH +hC +"} +(97,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +nH +ha +ha +KP +dU +yB +yB +yB +as +Kk +fZ +PQ +Hc +Ff +Mo +oO +Af +KP +KP +gR +yy +yy +ha +ha +ha +gx +ha +gx +gx +UH +wp +mD +oS +LK +Az +tI +pP +uT +oR +IJ +Dw +vN +Nv +Mc +wX +hN +MP +Qa +Ko +JF +eC +HX +Nv +Zn +aq +FO +en +gJ +XW +sm +yg +zf +aR +Nj +tC +gk +LW +ha +ha +ha +vg +xt +WS +nA +fx +zx +xi +uv +nI +xi +vn +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +FA +KB +bv +bv +bv +"} +(98,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +zb +KP +KP +KP +KP +KP +KP +KP +KP +KP +KP +nN +oO +AF +Im +KP +vn +yy +yy +ha +ha +gx +gx +gx +gx +gx +HE +iM +rP +rP +iM +rP +rP +rP +iM +iM +Bf +op +Xs +qV +QU +WH +lr +MN +dG +Cn +YP +Cn +Cn +MN +MN +Kb +Kb +Aa +Aa +TX +Ui +ib +ib +VI +ib +ib +gk +LW +ha +ha +ha +XZ +Su +cp +OJ +Cz +BP +hT +XB +Xp +jg +vn +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +bv +bv +rV +"} +(99,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +oL +Gz +El +Fu +Uu +eX +OQ +au +KP +py +oO +Hv +ub +KP +vn +yy +EB +ha +ha +gx +gx +gx +gx +gx +ra +LQ +LQ +LQ +Lo +LQ +Lo +LQ +ZE +IQ +da +Cm +Oi +MN +MN +MN +MN +MN +jQ +un +Zr +EY +Tr +mT +MU +Kb +OZ +Aa +yA +Pb +xx +ib +TB +xP +ks +ib +ft +NJ +ha +ha +ha +XZ +qM +gC +QG +sp +wq +yc +Uw +mv +vg +vn +ha +bq +ha +ha +ha +ha +ha +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(100,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +ms +cn +ZN +Lt +Uu +uq +tm +QN +KP +iD +oO +uK +MW +KP +pj +ZE +yy +ha +ha +gx +gx +gx +gx +gx +vn +ha +ha +ha +ha +ha +ha +ha +vn +IQ +da +Uj +nk +MN +ej +DD +gs +KK +SB +bf +Iz +NX +jp +GN +id +Kb +Qu +Aa +qo +Fg +LG +ib +cB +rl +gI +ib +vn +ha +ha +ha +ha +vg +vg +vg +vg +jy +YC +QB +vg +vg +vg +vn +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yT +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(101,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +Sb +Sb +nO +Mb +mj +Uu +cr +KU +cr +XQ +XQ +XQ +Lu +SK +XQ +XQ +vn +EB +ha +ft +oE +oE +oE +oE +oE +hH +ha +ha +ha +ha +gu +ha +ha +Bj +IQ +da +yN +YU +Cn +RJ +SB +SB +cW +HW +HW +HW +NU +xO +rq +Hd +Kb +Kb +Aa +Rw +Rh +ex +ib +ib +ib +ib +ib +vn +ha +ha +ha +ha +bT +ha +ha +vg +fP +uw +vg +vg +ft +Lo +NJ +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(102,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +Sb +uQ +iJ +JO +Uu +Ti +ek +PK +eu +Qh +fa +sH +sk +Tw +XQ +pj +Lo +Lo +it +gx +gx +gx +gx +ha +ha +ha +ha +gu +gu +ha +ha +ha +Bj +wG +Df +qi +iw +Cn +qr +SB +EE +Av +ZY +ZY +cl +AI +RJ +ni +Th +Kb +ha +Aa +ys +ta +FF +yJ +ft +LQ +LQ +LQ +yb +JR +PC +LQ +AN +bT +ha +ha +XZ +lN +kR +Jw +jg +vn +ha +ha +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(103,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +Sb +Sb +rM +GT +Uu +sY +Mv +UU +eu +aG +lQ +pT +sd +Yg +XQ +np +np +XQ +GP +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +qB +nQ +IN +jD +SB +rq +Kl +cj +cj +cj +cj +CX +SB +bW +Kb +ha +Aa +Aa +TX +kC +Aa +LW +ha +ha +ha +ha +ha +ha +ha +Ap +bT +ha +ha +XZ +Ij +hA +qO +jg +vn +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(104,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +yQ +Nf +Ov +ol +OR +kM +bE +eu +tV +ph +EO +Yi +Jy +Pc +pp +lt +ju +Ho +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +Xf +ME +oi +qJ +tR +ob +ob +ob +MC +SB +SB +cW +pc +Kb +ha +JP +mc +SC +iQ +yJ +LW +ha +ha +ha +ha +ha +ha +ha +Bj +bT +ha +ha +vg +Ox +aT +vg +vg +vn +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(105,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +yQ +yQ +YJ +JL +kg +bh +zB +Wm +eu +eu +iA +BK +hS +eu +XQ +qx +Wy +IE +Ho +gx +gx +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +vn +wG +TP +Ls +th +Cn +Oh +Gm +ls +RG +rU +Ru +Wj +mM +uA +Fy +Kb +Kb +ha +JP +DU +qZ +df +yJ +LW +ha +ha +ha +ha +ha +ha +ha +pv +Wv +KC +HS +ck +Hb +Hb +ck +Hb +Ub +ha +ha +ha +Ly +ha +ha +ha +ha +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(106,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +Ii +hM +vi +AX +AX +kM +VU +eP +pY +le +rw +zH +Tt +Vk +mI +rA +XQ +Ll +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +Rz +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +Kb +ha +ha +Aa +Aa +So +hl +Aa +vn +ha +ha +ha +ha +ha +ha +ha +vn +bT +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(107,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +rW +hM +vi +AX +AX +sa +yz +KN +Il +Bd +Np +ZT +YZ +Vk +hq +hq +XQ +DB +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +YU +FN +nL +ha +ha +ha +Id +Lo +Lo +Lo +Lo +Lo +Lo +Lo +Lo +Lo +vq +NB +NB +vq +hH +gu +ha +ha +gu +ha +gu +gu +vn +bT +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +Cf +if +Cf +Cf +Cf +zw +tw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(108,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +lj +Ii +hg +iW +Wt +Gr +BD +eY +vp +cv +LI +Rn +aL +Vd +Vk +KS +wc +wc +el +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +IQ +da +Ls +YU +Zz +nL +ha +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gu +ha +ha +ha +ha +ha +ha +Bj +bT +gx +gx +gx +gx +gx +ha +ha +ha +FX +ha +ha +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(109,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +yQ +yQ +ih +IY +qD +xV +qD +sr +SJ +dw +FB +UY +qA +FP +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +wG +tr +Nm +qn +wG +wG +ha +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +fQ +RO +RO +Kw +Kw +RO +RO +RO +fQ +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(110,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +Yc +Yc +sA +QT +hD +Yc +lP +bN +hk +Lb +dt +Vk +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Bj +wG +sh +VQ +sh +wG +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +gx +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +xq +xq +xq +gx +gx +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(111,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +xB +sf +AH +qa +dJ +AK +eO +bN +Tz +nG +Tc +dg +Vk +ZJ +ha +ha +ha +gx +gx +ha +ha +uH +ha +ha +ha +gx +gx +ha +ha +ha +Bj +oM +kO +Hm +Dt +oM +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +gx +gx +gx +gx +gx +gx +AL +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +xq +xq +xq +gx +gx +gx +gx +gx +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(112,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +De +zu +iN +DE +Dq +zu +tT +Vk +sn +RN +aL +rm +cO +ZJ +ha +ha +ha +gx +gx +ha +ha +ha +Gk +ha +gx +gx +ha +ha +ha +ha +Bj +oM +Yt +Hm +EF +oM +ha +ha +ha +ha +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +ha +gx +gx +gx +gx +gx +gx +AL +GE +gx +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +fQ +hG +PW +PW +PW +hG +hG +hG +fQ +zw +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(113,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +im +zu +us +KH +IV +zu +zO +Vk +nm +RN +aL +ww +cO +DB +ha +ha +ha +gx +gx +ha +ha +uH +ha +ha +gx +gx +gx +gx +ha +ha +Bj +ux +RA +Hm +DJ +oM +ha +ha +ha +ha +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +gx +gx +gx +gx +gx +gx +ha +LW +bT +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +ha +ha +ha +Cf +if +if +Cf +Cf +Cf +Cf +zw +zw +zw +zw +zw +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(114,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +FK +Sj +FK +Zg +vz +YI +Sh +gm +Vk +bg +RN +aL +Zk +Vk +ZJ +ha +ha +gx +gx +gx +ha +ha +gx +ha +ha +gx +Oc +Oc +gx +ha +ha +Bj +ux +RA +Hm +Za +Tl +Tl +Tl +Tl +Tl +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +ha +ha +gx +gx +gx +gx +ha +ha +LW +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Cf +zw +zw +zw +tw +zw +zw +zw +zw +zw +zw +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(115,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +FK +tZ +zu +zu +Iy +zu +zu +qv +Vk +kn +hb +ZT +yV +cO +DB +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +gx +ha +ha +Bj +ux +RA +Hm +Ww +Tl +fA +kI +Kf +Tl +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gx +gx +gx +gx +ha +ha +Ap +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(116,1,1) = {" +Vg +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +ag +vA +kS +xD +fS +DK +kS +kU +Vk +dN +Um +Fi +fY +cO +ZJ +ha +ha +gx +gx +ha +gx +gx +gx +gx +ha +gx +Oc +Oc +gx +ha +ha +Bj +oM +iS +zQ +Bb +Pv +AB +Gh +NL +Tl +iq +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +ha +ha +ha +Bj +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +pw +ha +ha +Cf +if +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(117,1,1) = {" +Vg +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +LY +Vo +FK +FK +FK +FK +FK +Vk +Vk +sC +oI +Vk +Vk +Vk +DB +ha +gx +gx +gx +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +Bj +oM +EC +VW +Zf +uF +Gp +dx +Dp +cR +VP +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +gx +ha +ha +Bj +dP +dP +dP +dP +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +yj +yj +bv +bv +bv +rV +"} +(118,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +FK +Ga +fD +FK +yy +Hr +yy +NC +rH +Zj +Bq +ot +cO +KS +wc +el +ha +gx +gx +gx +ha +ha +gu +ha +ha +ha +gx +gx +gx +gx +ha +ha +Bj +ux +Gc +VH +Qz +Tl +Lp +rC +hy +Tl +go +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +nF +dP +ro +hx +dP +ti +ti +nV +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(119,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +rH +UT +tk +gQ +cO +ZJ +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +gu +ha +gx +gx +ha +ha +ha +ha +vn +ux +RA +VW +gz +Tl +Tl +Tl +Tl +Tl +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ha +ha +ha +fo +sS +JT +lG +qN +MM +gl +nV +nV +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +hE +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +yj +bv +bv +rV +"} +(120,1,1) = {" +Vg +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +Vk +Vk +dZ +xk +Vk +DB +ha +ha +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +cZ +ha +gu +ha +vn +ux +RA +VW +vM +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +xK +wr +jz +YH +dP +zP +Jb +qN +gP +br +YM +fg +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +yj +yj +bv +bv +rV +"} +(121,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Ly +ha +ha +ha +ha +wL +XF +wf +wL +yy +yy +yy +yy +yy +vo +YA +YA +CQ +ur +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +gu +Bj +oM +kc +VW +HQ +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +Oc +ab +Oc +gx +gx +gx +gx +gx +wb +nV +ti +ti +dP +PY +Jk +qN +Ms +jL +XJ +mN +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +bv +rV +"} +(122,1,1) = {" +Vg +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +wL +kV +wf +wL +yy +yy +yy +yy +yy +pV +Xe +Xe +Qd +ha +gx +gx +ha +ha +ha +Id +PC +Lo +PC +Lo +Lo +PC +PC +PC +Lo +PC +Lo +PC +NJ +oM +CC +VW +jF +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +gx +gx +gx +Hu +mS +sc +MO +zM +cK +Pd +Le +uS +PF +XJ +Wq +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +rV +"} +(123,1,1) = {" +Ds +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +wL +XF +wf +qU +yy +yy +yy +yy +yy +vP +gx +gx +gx +gx +gx +gx +ha +ha +ha +Bj +FU +eS +eS +eS +FU +FU +oM +oM +xz +xz +xz +oM +oM +oM +rR +Lz +px +oM +oM +xz +xz +xz +xz +oM +jN +jN +OA +OA +OA +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +Hu +Nn +BH +mG +Ie +db +He +XJ +MX +Au +EZ +rZ +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +uE +yj +yj +yj +bv +bv +rV +"} +(124,1,1) = {" +eM +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +wL +XF +wf +wL +yy +yy +yy +yy +pV +Qd +gx +gx +gx +gx +gx +ft +PC +PC +Lo +NJ +FU +Tm +Vb +oe +dv +Gq +eD +Db +TM +pH +NH +Db +ht +RE +ad +fj +GF +zV +HA +Hm +TM +pH +NH +lF +Ir +Oy +bw +hU +ma +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +wb +nV +Ht +Zb +nV +PN +xe +Tq +fO +En +XJ +ON +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(125,1,1) = {" +NR +rY +rY +BN +ky +yO +BQ +hv +hv +hv +BQ +BQ +hv +BQ +hv +hv +BQ +BQ +BQ +hv +BQ +ML +NN +fJ +xF +Xe +Xe +Xe +Xe +Qd +gx +gx +gx +gx +gx +gx +ZF +FU +eS +eS +eS +FU +HR +Qt +Qt +FE +Gq +Hm +Hm +Hm +Hm +Hm +Hm +Hm +Jq +nr +VH +iO +Jq +Hm +Hm +TM +pH +NH +Hm +Ir +UN +GM +GM +GG +jN +OA +OA +OA +jN +kv +ha +ha +gx +gx +gx +gx +Qp +nV +Ed +Ed +nV +pR +He +YG +Ie +oC +vI +rd +pM +ha +ha +ha +nH +ha +ha +Cf +Cf +if +Cf +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +bv +bv +bv +rV +"} +(126,1,1) = {" +Ak +wM +TS +fL +gx +RK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ex +gx +gx +gx +gx +gx +gx +RX +ID +yr +It +nM +TT +mt +UK +UK +mr +ue +qh +LT +vK +vK +vK +vK +OV +ug +Ws +fj +CF +rR +Fo +Hm +Hm +Hm +pb +VV +Kt +jl +rO +rO +XL +Jo +gN +MA +kp +Cb +Sz +gx +gx +gx +gx +gx +gx +MR +wr +KF +Yo +nV +Dk +He +Qq +Ie +mF +xb +nV +nV +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(127,1,1) = {" +Ak +wM +wM +wM +gx +RK +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 +RX +vx +BI +Cd +jx +OI +HO +Qt +DH +xW +FU +xR +dH +VM +VM +VM +VM +dH +FW +VM +sF +wg +FW +dH +VM +VM +VM +dH +sQ +jN +TG +XR +GM +gr +Ra +SW +tp +VC +fT +Sz +gx +gx +gx +gx +gx +ha +ha +ha +ha +rc +nV +Xu +Br +GK +nV +nV +nV +nV +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +yj +bv +bv +rV +"} +(128,1,1) = {" +Ak +wM +yH +fL +gx +RK +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 +RX +ID +yr +It +nM +TT +IH +QM +QM +vV +si +fw +vm +Hm +Hm +Hm +Hm +AC +rR +VJ +VW +ps +ug +eL +vK +vK +vK +hf +ZW +RF +TE +at +at +Mt +Jo +gN +MA +kp +Cb +Sz +gx +gx +gx +gx +gx +gx +ha +ha +ha +Qp +Nn +uf +OW +Oq +pM +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +yj +yj +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(129,1,1) = {" +NR +rY +rY +Fc +bj +aQ +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +NV +FU +BT +BT +BT +FU +zq +Qt +Qt +VB +Gq +Hm +Hm +Hm +Hm +Hm +Hm +Hm +Jq +CU +VH +fk +Jq +Hm +AA +AA +AA +Hm +Hm +Ir +Xa +GM +GM +Gj +jN +xH +xH +xH +jN +kv +ha +ha +gx +gx +gx +gx +ha +jZ +wr +aY +Nn +ow +tD +tl +pM +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +zw +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yj +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +rV +"} +(130,1,1) = {" +eM +pC +Dc +zk +ki +fE +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +FX +ha +ha +gx +gx +gx +gx +gx +ha +ha +OP +ha +gx +gx +gx +ha +ha +Ap +ha +ha +ha +ha +FU +Rx +zX +sM +PT +Gq +BV +xd +TM +pH +NH +ET +Bs +zV +KX +DT +KL +yk +Rj +jR +rG +aw +Gy +Nt +Ir +LD +JG +LJ +BG +jN +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +xK +aY +FR +FR +FR +tj +Wx +WZ +FR +FR +FR +FR +ha +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(131,1,1) = {" +eM +pC +Dc +ZO +eB +Eu +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Xg +HP +HP +HP +nq +ha +ha +ha +ha +gx +gx +gx +ha +ha +Ap +ha +ha +ha +ha +FU +BT +BT +BT +FU +FU +oM +oM +tE +in +tE +oM +oM +oM +rR +Lz +lI +oM +oM +tE +in +tE +tE +oM +jN +jN +xH +xH +xH +jN +ha +ha +ha +ha +ha +OP +ha +gx +gx +gx +gx +Qp +FR +FR +wt +ka +ZZ +jc +oV +tt +nc +NP +FR +FR +ha +ha +ha +nH +ha +ha +Cf +Cf +if +if +if +Cf +zw +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +PU +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +yT +yT +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +"} +(132,1,1) = {" +Vg +pC +Dc +Dc +Dc +Dc +Dc +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +OB +OB +OB +GJ +ha +ha +ha +ha +gx +gx +gx +ha +ha +Bj +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +XD +VW +Yh +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +Qp +WV +se +FC +OL +OL +dS +OL +OL +OL +Lx +lk +ZG +ha +ha +ha +nH +ha +ha +ha +Cf +Cf +if +if +Cf +Cf +zw +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +PU +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +Ey +yT +yT +yT +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Rr +"} +(133,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +pw +ha +ha +ha +ha +ha +GJ +Rp +Be +nl +GJ +ha +ha +ha +VF +HP +HP +hW +LX +Lo +hH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +Yt +VW +Dr +VZ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +Qp +WV +xY +xE +PR +PR +Kg +Cw +Cw +Cw +VN +fs +ZG +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +PU +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +Ey +Ey +Ey +yT +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Rr +"} +(134,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +Be +pJ +Be +GJ +ha +ha +GJ +GJ +Uz +WK +GJ +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +oM +oM +oM +oM +oM +jA +VH +Iw +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Am +SU +SU +SU +SU +aY +FR +se +QR +Pf +Ya +Ya +Ya +Ya +aW +xn +se +FR +ha +ha +ha +nH +ha +ha +ha +ha +Cf +Cf +if +if +Cf +zw +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +PU +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +yT +yT +Ey +Ey +Ey +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +Rr +"} +(135,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +VR +Be +oc +GJ +ha +ha +yM +Yr +pn +Wi +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +Hm +JB +Hm +pb +uk +Hm +VW +Dr +NO +NO +NO +NO +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Ny +gx +gx +gx +gx +FR +FR +Mp +QR +nS +qG +qG +qG +qG +JE +xn +OL +FR +FR +ha +ha +nH +ha +ha +ha +ha +ha +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +PU +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +yT +yT +yT +yT +yT +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +Rr +"} +(136,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +GJ +GJ +Do +GJ +GJ +ha +ha +yM +Hg +pU +js +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +eo +TI +iX +UR +VM +VM +JJ +Dr +NO +CP +Dz +Ss +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +lZ +gx +gx +gx +gx +WV +eq +se +QR +nS +qG +qG +qG +qG +JE +xn +OL +Wk +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +PU +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Rr +"} +(137,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +GJ +EI +OH +GJ +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +Ot +Tf +yK +Di +oM +pu +VW +pX +NO +Xt +Ck +sb +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +dI +gx +gx +gx +gx +WV +se +OL +QR +nS +qG +pk +oY +cT +BU +xn +OL +Wk +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +PU +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Rr +"} +(138,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +sN +aK +yP +Us +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +YL +ox +og +on +uk +Hm +sR +Em +XS +pF +Pm +YK +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +dP +Bk +gx +gx +gx +gx +FR +qH +OL +QR +nS +qG +ZS +Jf +cT +BU +GX +WC +Si +FR +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +bv +bv +bv +"} +(139,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +IK +Hw +Se +Us +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +Hm +BV +Hm +ZB +Hm +Hm +VW +Jz +NO +Zm +xw +ko +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +WV +se +OL +QR +nS +qG +LA +Wp +cT +BU +xn +OL +Wk +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +yj +bv +bv +rV +"} +(140,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +GJ +jw +yY +Lr +Us +pj +PC +PC +Lo +PC +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +oM +oM +oM +oM +oM +Ug +VW +ok +NO +NO +NO +NO +NO +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +WV +eq +se +QR +VK +cT +cT +cT +cT +BU +xn +OL +Wk +ZG +ha +ha +nH +ha +ha +ha +ha +ha +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +bv +bv +bv +rV +"} +(141,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +gj +gj +sw +sw +sw +GJ +Od +bM +PM +GJ +ed +ed +ed +Ip +Ip +pj +ZE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +Jm +lM +ku +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +gx +gx +gx +gx +FR +FR +Ic +QR +VK +cT +cT +cT +cT +BU +xn +OL +FR +FR +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(142,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +gj +gj +de +WA +WA +sx +GJ +GJ +EI +tM +GJ +oo +om +IR +TW +Ip +Ip +pj +AN +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ux +RA +Hm +ok +VZ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +gx +gx +gx +ha +FR +se +QR +Os +Uq +Uq +Uq +Uq +ij +xn +se +FR +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +yj +bv +bv +rV +"} +(143,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +gj +vE +wQ +wQ +wQ +Mm +pN +GC +tx +XU +qT +ZL +qm +qm +qm +RI +Ip +Ip +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +oM +eJ +Hm +oQ +oM +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +gx +gx +gx +ha +WV +RV +AV +PR +PR +qY +Cw +Cw +Cw +vU +bS +ZG +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Ey +bv +bv +rV +"} +(144,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +kK +BR +rz +FM +uN +Jc +pN +Ei +af +ef +qT +bH +NI +NI +NI +tn +mx +Ip +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +EQ +Xo +Ac +Xo +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +gx +gx +gx +gx +ha +WV +VY +gV +OL +OL +UV +OL +OL +OL +HK +se +ZG +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +bv +bv +bv +rV +"} +(145,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +II +Yj +tc +ZR +CG +tg +pd +GC +af +qI +WQ +EX +TR +EK +Ar +Ag +TC +ga +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +EQ +EQ +Aq +Sa +Ye +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +FR +FR +ew +YX +YR +Fp +ke +qj +DM +rN +FR +FR +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +rV +"} +(146,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +Qi +In +YT +Gn +lR +KZ +PZ +iY +yG +jJ +cY +Ur +xA +Js +Nx +iR +KT +ga +vn +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +QJ +Ut +kd +kF +Sp +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +FR +FR +FR +tj +MV +WZ +FR +FR +FR +FR +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Zu +Ao +Ao +Ao +Ao +Zu +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +rV +"} +(147,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +xG +eg +fy +fy +cC +AY +nv +XO +CN +gX +pZ +rI +kN +Vs +uJ +Xr +Oo +KT +ga +LW +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +QJ +ay +kd +TL +Sp +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +iZ +WG +AT +iu +JA +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +zw +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +bv +bv +rV +"} +(148,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +Sq +cX +bs +RD +MB +bX +pd +TZ +Hk +Hi +WQ +vh +lL +Kp +eT +fz +Ev +ga +FY +kP +JW +ha +ha +ha +YO +YO +YO +YO +YO +YO +YO +vb +kd +yE +Sp +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +iZ +dW +wd +IS +JA +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +zw +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Zu +Ao +Ao +Ao +Ao +Zu +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +bv +bv +bv +rV +"} +(149,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +Dj +rv +Xn +gg +zN +Me +pd +Ym +Hk +kE +qT +cU +ah +Kp +KT +No +kx +Hz +Ue +Hz +Hz +YO +YO +YO +YO +Vz +re +KO +re +Uf +Nd +vb +Qb +yE +Ji +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +gu +ha +ha +ha +Ke +Uh +ua +su +Ke +Ke +Ke +Ke +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +XN +XN +XN +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(150,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +gj +TU +KY +ql +Op +Cc +AJ +pd +gS +Hk +kE +qT +hh +ah +wA +KT +pD +kx +Aw +Bc +Zd +kx +Vc +wi +Vc +vb +oh +Hq +Hq +Hq +XA +LZ +vb +MJ +GU +Sp +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ha +Ke +jW +no +Nh +Uh +ji +ji +Ke +Ke +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +fQ +LS +LS +LS +LS +fQ +Ey +Ey +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +XN +XN +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(151,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ku +Ku +QW +QW +QW +Ky +Ky +QW +QW +Ea +kA +qT +uc +hd +US +Rm +RS +kx +VT +md +zd +kx +sj +mu +ce +vc +ns +Pj +kD +ep +az +aJ +vb +Gw +ja +Sp +iV +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +Ke +OC +OC +Ke +SQ +AQ +KR +LF +iC +ZU +Ul +SE +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +xq +xq +xq +xq +xq +xq +gx +gx +gx +GE +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(152,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +Ku +eE +ST +Xl +mO +Rb +Zv +Ky +Hk +gZ +qT +qT +WQ +WQ +WQ +qT +kx +jO +tu +Zo +kx +HH +Zp +HH +vb +os +gp +Fd +gp +es +Ai +fq +sg +nj +Pt +EQ +Mg +Mg +EQ +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +gx +gx +gx +gx +ru +Ke +kZ +Jx +Ke +Mq +bB +SV +LF +BF +qR +qR +SE +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +xq +xq +xq +xq +xq +xq +gx +gx +gx +GE +gx +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(153,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +qQ +Co +mO +uW +PE +Ky +jf +Vf +HG +eQ +sX +Zh +Dd +rk +kx +kx +Mx +LC +kx +vb +dK +vb +vb +vb +vb +vb +vb +qP +vb +vb +QQ +ll +Sp +tO +Vj +UZ +EQ +EQ +CT +CT +oZ +oZ +oZ +CT +oZ +oZ +CT +Gd +gx +gx +gx +gx +gx +gx +gx +gx +gx +pS +iZ +hs +cf +vY +Kz +BA +oH +Pe +uR +aD +aD +Ke +ha +ha +ha +nH +ha +ha +ha +ha +ha +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +fQ +Ha +Ha +Ha +Ha +fQ +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(154,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +EA +Co +mO +Sg +Bg +LV +dr +SX +Ge +JY +zr +Jt +Om +uC +zr +Nk +sE +tW +FQ +am +GQ +ri +PS +bR +HN +BW +sJ +sv +lK +Zx +Jl +ll +BM +Zx +Zx +Zx +Zx +xs +LE +my +Gb +st +IX +wI +jk +Xz +UE +fb +gx +gx +gx +gx +gx +gx +gx +gx +gx +pS +rr +RL +QC +hr +Gf +Ne +xT +BJ +IM +aD +aD +Ke +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +uE +uE +uE +uE +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(155,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +yd +JM +qQ +Co +yl +Ks +qu +Yp +xM +QO +Mf +WJ +AU +Sm +tv +Bo +IC +sq +tB +Sm +jt +MK +cQ +gH +Pu +JC +MK +fF +Iq +WR +MK +MK +MK +jb +pt +MK +UM +MK +nD +ix +dF +hi +Hp +TH +lB +dF +Yv +OD +ZI +fb +gx +gx +gx +gx +gx +gx +gx +gx +gx +BE +Ke +Zq +Zq +ba +LN +CE +LN +Uh +gB +yi +yi +SE +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +gx +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +uE +uE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(156,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +Ku +RH +PJ +uL +ao +ER +OT +wl +Wg +SX +EM +UF +UF +UF +UF +UF +ez +tP +Vv +UF +NA +gO +Tk +wW +Ew +Xc +nt +gO +gO +gO +gO +gO +hJ +wW +kY +nt +sI +wW +na +dM +CT +RQ +hB +UA +jE +CT +HD +DC +CT +Ft +gx +gx +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ba +RB +Bh +LN +jr +gc +jI +tQ +SE +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(157,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +mJ +mJ +mJ +mJ +ap +Tg +Yf +Ky +Ns +SD +mH +Ma +vW +zW +wm +Wh +Ma +HM +Zt +Bl +Bl +Bl +Bl +wh +lq +My +SP +SP +SP +SP +wh +wh +TO +TO +WT +TO +TO +ie +cE +rh +CT +CT +CT +CT +CT +CT +Ki +Ki +CT +ha +ha +ha +ha +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ba +Lm +sL +LN +Kh +kX +Ke +Ke +Ke +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(158,1,1) = {" +Vg +XE +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +pE +pE +wE +mJ +mJ +mJ +mJ +mJ +PG +gZ +kG +Uy +Uy +Uy +Uy +Uy +Uy +wZ +bi +Bl +Rk +oB +Bl +lf +fU +xl +ho +gM +gM +cc +cs +wT +vv +sG +pf +Jn +Wr +OF +Kn +pL +LU +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gx +gx +gx +gx +gx +ha +ha +ha +ha +ha +ha +ba +eR +po +ba +dC +dC +Ke +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(159,1,1) = {" +Vg +XE +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +pE +pE +mq +wV +Fm +zE +Lc +mJ +jf +gZ +mL +Uy +RZ +PX +Kv +Jd +Uy +Fv +nW +eh +aa +UW +Bl +Kx +Re +wk +Hl +wo +IZ +IZ +IZ +IZ +TO +bo +qE +Hy +TO +OF +XK +OF +uX +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +cq +fb +fb +fb +cI +ha +ha +ha +ha +ha +ha +ba +ba +ba +ba +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(160,1,1) = {" +Vg +XE +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +Mz +OU +jV +bn +bn +cL +GZ +kb +cP +cM +LH +Uy +ES +mW +Xw +eG +Uy +Yq +cm +Bl +ve +MG +Bl +CA +Km +QA +fr +qe +Bn +BC +BC +Yd +TO +EW +TO +Nb +TO +mi +SS +wD +wD +wv +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +CT +sD +sD +sD +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(161,1,1) = {" +Vg +XE +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +WM +bK +vZ +xp +JD +Mz +dj +Lh +Ix +qK +KM +Uy +Uy +ii +HB +cu +nC +kW +Xk +do +Bl +Bl +Bl +Bl +zl +Ux +fN +YS +nZ +BC +Sr +BC +Sr +TO +Qo +TO +Cp +TO +Fe +VX +OF +xC +ui +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +CT +eK +eK +wH +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(162,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +AP +Bx +ZD +nx +nx +Qk +qF +mJ +et +KM +Uy +Du +WN +kz +Cg +Uy +Uy +uj +Vf +HG +Ef +wh +vG +ZC +FV +bQ +tJ +kJ +BC +BC +BC +ai +TO +TO +TO +TO +TO +vT +VX +jU +OF +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +eK +RP +eK +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +zC +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +Ey +Ey +Ey +bv +bv +rV +"} +(163,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +mJ +mJ +AO +Pg +Xy +nz +Pg +AO +mJ +dn +SL +Uy +wn +GH +dc +SR +Uy +co +Fa +Bo +gZ +bx +wh +vR +Mj +Mj +Mj +cd +vy +BC +Sy +BC +Sy +qg +ye +OF +sT +OF +nh +gT +vF +vF +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +lV +eK +gn +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +bv +bv +rV +"} +(164,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +mJ +mJ +hI +gb +gb +hI +uh +uh +vl +PL +uh +AW +Nc +rS +AW +Uy +Ma +zi +Wc +Yk +bu +wh +Ln +Mj +Mj +Mj +cd +kk +BC +BC +BC +Sn +qg +sB +OF +YQ +uX +OF +AM +uX +fG +wv +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +CT +CT +Aj +CT +CT +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +fl +KB +bv +bv +bv +"} +(165,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +gb +gb +gb +gb +uh +lh +zF +SN +uh +uu +Eo +tK +tK +dR +Ma +vf +vf +vf +Ma +Wb +vR +Mj +Mj +Mj +cd +Bu +BC +OM +BC +Wa +qg +UO +OF +lx +uX +jn +AM +qt +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +ha +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +hC +SG +lA +hC +DP +hC +"} +(166,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +ha +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +aO +gb +gb +aO +uh +yx +WX +Wo +uh +BB +xI +nw +ze +Er +AW +ha +ha +ha +ha +Wb +mn +Bw +Bw +QX +Rd +hm +BC +BC +BC +Wa +qg +Vh +OF +OF +GV +Uv +La +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +ha +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +hC +vk +jH +hC +hC +hC +"} +(167,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +nH +ha +ha +ha +ha +ha +ha +ha +mJ +mJ +mJ +mJ +mJ +uh +lT +BX +QL +uh +AW +AW +AW +AW +AW +AW +ha +ha +ha +ha +Wb +Wb +Wb +Wb +Wb +Wb +Wb +Fl +Fl +Fl +Fl +ui +ui +ui +ui +ui +ui +ui +ui +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +ha +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +hC +SG +lA +hC +FH +hC +"} +(168,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +nH +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +uh +hw +lp +bb +yu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +FA +KB +bv +bv +bv +"} +(169,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +gu +yp +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +uh +uh +DI +rg +At +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +gu +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +nH +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +Ey +bv +bv +rV +"} +(170,1,1) = {" +Vg +Wn +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +cJ +hV +Oa +Qr +Qr +Qr +Qr +Oa +Oa +xQ +bT +bT +bT +bT +iI +NG +CZ +Zy +uM +bT +wJ +wJ +wJ +NM +Oa +Oa +Oa +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Oa +aE +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +Qr +il +Na +Na +Na +Na +Na +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +HV +HV +HV +HV +WY +WY +HV +HV +HV +HV +yv +yv +yv +yv +GE +GE +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +PU +PU +PU +PU +PU +PU +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +DQ +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +yv +Sk +Sk +rV +"} +(171,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +gu +ha +ha +ha +ha +Io +yF +fH +ig +uM +ha +gu +gu +gu +gu +gu +gu +gu +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +bT +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Cf +Cf +Cf +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(172,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +ha +At +At +DX +RC +At +ha +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Cf +Cf +Cf +fQ +xq +xq +fQ +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(173,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +pC +ha +ha +lY +yy +yy +lY +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +ha +ha +ha +ha +ha +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +jX +xq +xq +VD +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(174,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +ha +ha +ha +ha +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +if +if +jX +xq +xq +cy +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(175,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +ha +ha +zg +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +ha +ha +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Na +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +VL +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +if +if +FD +xq +xq +cy +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(176,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +ha +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +FD +xq +xq +JQ +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(177,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +FD +xq +xq +JQ +if +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(178,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +jX +xq +xq +JQ +if +if +if +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(179,1,1) = {" +Vg +XE +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +pC +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +jX +xq +xq +cy +Cf +Cf +if +if +if +if +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +rV +"} +(180,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ec +xq +xq +cy +Cf +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Cf +Ey +Ey +Ao +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +bv +bv +bv +rV +"} +(181,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +fQ +xq +xq +fQ +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Ey +Ao +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +bv +bv +rV +"} +(182,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +if +Cf +Cf +Cf +Cf +Ao +Ao +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(183,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ao +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(184,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Ao +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(185,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(186,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(187,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(188,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(189,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(190,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +XE +Vg +"} +(191,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(192,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(193,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(194,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(195,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(196,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(197,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +if +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(198,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +hE +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(199,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(200,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(201,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +if +if +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(202,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +vB +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(203,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +if +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(204,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +yT +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +Vg +"} +(205,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +yT +yT +yT +yT +yT +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(206,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +yT +yT +yT +yT +yT +DQ +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +Ey +Ey +yT +yT +ip +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yv +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(207,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +Ey +Ey +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Cf +Cf +Cf +Cf +Cf +yT +yT +Cf +Cf +Cf +Cf +Cf +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(208,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +Ey +Ey +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(209,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(210,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +XE +XE +XE +Vg +"} +(211,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +yT +yT +yT +XE +XE +XE +Vg +"} +(212,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +zg +zg +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Ey +Ey +Ey +Ey +Ey +Ey +Ey +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(213,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +zg +zg +bP +bP +bP +WP +yT +yT +yT +yT +DQ +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +yT +yT +yT +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +DQ +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(214,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(215,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +zg +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(216,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(217,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Cf +Cf +Cf +Cf +Cf +WP +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(218,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +zg +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +xL +tY +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(219,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +gD +Gv +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(220,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +tY +bP +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +PO +WP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(221,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +Mh +tY +bP +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +gD +Gv +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +Mh +tY +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(222,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +Mh +tY +bP +bP +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +Mh +tY +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(223,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +bP +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +pW +Ka +xL +xL +PO +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +Vg +"} +(224,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +bP +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +fp +xL +xL +Mh +hO +tY +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(225,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +bP +WP +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +fp +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +Mh +tY +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(226,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +xh +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +xh +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +ne +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(227,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +to +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +Vg +"} +(228,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +ne +hO +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +Mh +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +Kd +hO +xh +xL +xL +xL +xL +xL +Mh +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(229,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(230,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(231,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +hO +hO +hO +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(232,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(233,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +Vg +"} +(234,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(235,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Gs +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +gD +za +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(236,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Gs +xL +xL +xL +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +gD +Gv +WP +pW +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(237,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +bP +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Gs +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +gD +za +za +Gv +WP +WP +WP +pW +Ka +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(238,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +Kd +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +gD +Gv +WP +WP +WP +WP +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(239,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +yT +WP +WP +yT +yT +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +Vg +"} +(240,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +yT +yT +yT +yT +Ey +yT +yT +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +Vg +"} +(241,1,1) = {" +OK +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +Kd +hO +hO +hO +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +WP +yT +yT +Ey +Ey +Ey +yT +yT +WP +pW +Ka +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Mh +hO +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +Vg +"} +(242,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +Ey +Ey +Ey +yT +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +xL +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +Vg +"} +(243,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Kd +hO +xh +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +PO +WP +WP +yT +Ey +Ey +Ey +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +Vg +"} +(244,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +yT +Ey +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(245,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +PO +WP +WP +WP +yT +yT +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(246,1,1) = {" +Ci +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +SY +Yw +Yw +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +WP +yT +yT +Ey +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(247,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +pW +za +za +Ka +xL +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +tY +WP +yT +yT +yT +yT +yT +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(248,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +PO +WP +WP +yT +yT +yT +WP +WP +fp +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +yT +yT +yT +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(249,1,1) = {" +eM +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +Mh +hO +tY +WP +yT +yT +WP +Kd +xh +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(250,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +fp +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(251,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +Mh +tY +WP +WP +fp +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +WP +WP +WP +WP +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(252,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +bP +bP +Kd +xh +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Mh +hO +hO +xh +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +Mh +tY +WP +WP +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(253,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +bP +bP +pW +Ka +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(254,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +fp +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(255,1,1) = {" +Vg +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +fp +xL +xL +xL +xL +xL +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +cF +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +Ig +xL +xL +xL +xL +PO +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +XE +Vg +"} +(256,1,1) = {" +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +gG +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg +Vg "} diff --git a/maps/southern_cross/southern_cross_areas.dm b/maps/southern_cross/southern_cross_areas.dm index 6d8b69f2da..8e402cb015 100644 --- a/maps/southern_cross/southern_cross_areas.dm +++ b/maps/southern_cross/southern_cross_areas.dm @@ -1010,6 +1010,12 @@ z name = "\improper Game Room" icon_state = "gaming" +//CHOMPstation Edit 8/27/22 - VR Room for station baby~ +/area/crew_quarters/thirddeck/vrroom + name = "\improper Virtual Reality Room" + icon_state = "gaming" + flags = RAD_SHIELDED //Depending on the video game, you might still get figuative cancer + //CHOMPStation Edit End /area/crew_quarters/seconddeck/locker/locker_toilet diff --git a/maps/southern_cross/southern_cross_defines.dm b/maps/southern_cross/southern_cross_defines.dm index 8111c0313a..c4ed1d9530 100644 --- a/maps/southern_cross/southern_cross_defines.dm +++ b/maps/southern_cross/southern_cross_defines.dm @@ -98,7 +98,7 @@ but they don't actually change anything about the load order NETWORK_SUPPLY ) usable_email_tlds = list("freemail.nt") - allowed_spawns = list("Arrivals Shuttle","Gateway", "Cryogenic Storage", "Cyborg Storage", "Station gateway") + allowed_spawns = list("Arrivals Shuttle","Gateway", "Cryogenic Storage", "Cyborg Storage", "Station gateway", "Sif plains") default_skybox = /datum/skybox_settings/southern_cross unit_test_exempt_areas = list(/area/ninja_dojo, /area/shuttle/ninja) unit_test_exempt_from_atmos = list(/area/tcomm/chamber) diff --git a/maps/southern_cross/submaps/_southern_cross_submaps.dm b/maps/southern_cross/submaps/_southern_cross_submaps.dm index 39aa2715b3..ee07a51a86 100644 --- a/maps/southern_cross/submaps/_southern_cross_submaps.dm +++ b/maps/southern_cross/submaps/_southern_cross_submaps.dm @@ -73,6 +73,9 @@ mappath = 'gateway/carpfarm.dmm' associated_map_datum = /datum/map_z_level/sc_lateload/gateway_destination +//VR maps go here, tell me if theres a better way to load this +#include "virtual_reality/constructVR.dm" +#include "virtual_reality/constructVR.dmm" //Space submaps/sectors/POIs/whatever you wanna freaking call it, go here. #include "../../expedition_vr/space/_fueldepot.dm" diff --git a/maps/southern_cross/submaps/virtual_reality/constructVR.dm b/maps/southern_cross/submaps/virtual_reality/constructVR.dm new file mode 100644 index 0000000000..1e3e4bc8a5 --- /dev/null +++ b/maps/southern_cross/submaps/virtual_reality/constructVR.dm @@ -0,0 +1,38 @@ +w// -- Areas -- // + +/area/vr + name = "VR world" + icon_state = "green" + base_turf = /turf/simulated/floor/outdoors/dirt + limit_mob_size = FALSE + + +/area/vr/outdoors + outdoors = OUTDOORS_YES + ambience = AMBIENCE_SIF + +/area/vr/powered + name = "Powered VR World Inside" + icon_state = "away1" + requires_power = 0 + power_equip = 1 + power_environ = 1 + power_light = 1 + +/area/vr/outdoors/powered + name = "Powered VR World Outside" + icon_state = "away" + requires_power = 0 + power_equip = 1 + power_environ = 1 + power_light = 1 + + + +/area/vr/powered/bluebase + name = "Blue Base" + icon_state = "bluenew" + +/area/vr/powered/redbase + name = "Red Base" + icon_state = "red" \ No newline at end of file diff --git a/maps/southern_cross/submaps/virtual_reality/constructVR.dmm b/maps/southern_cross/submaps/virtual_reality/constructVR.dmm new file mode 100644 index 0000000000..893e58b960 --- /dev/null +++ b/maps/southern_cross/submaps/virtual_reality/constructVR.dmm @@ -0,0 +1,2077 @@ +"ab" = (/turf/unsimulated/wall/seperator,/area/space) +"ac" = (/obj/structure/outcrop/diamond,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"ad" = (/obj/item/weapon/coin/gold,/obj/item/toy/plushie/carp/gold,/turf/simulated/floor/flock,/area/vr/powered) +"af" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"ag" = (/obj/structure/salvageable/console_os{name = "Turret control console"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ai" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"aj" = (/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"ak" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"al" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/mecha_part_fabricator{req_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"am" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"an" = (/obj/machinery/porta_turret/stationary/syndie{faction = "hivebot"},/turf/simulated/floor/airless,/area/space) +"ar" = (/turf/simulated/floor/redgrid/off,/area/vr/powered) +"au" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"av" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"aw" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/obj/item/weapon/gun/projectile/serdy_pistols/glock71,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"ax" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/rshull,/area/vr/powered) +"ay" = (/obj/structure/flora/tree/jungle_small,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"az" = (/obj/structure/bed/double/padded,/obj/machinery/light/small{dir = 4},/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/wood,/area/vr/powered) +"aD" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/plating,/area/vr/powered) +"aE" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random{pixel_y = 8},/obj/item/weapon/towel/random{pixel_y = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"aF" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"aH" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/machinery/light{dir = 1},/obj/item/weapon/paper{desc = ""; info = "Due to many exploits we have decided to remove the consoles, I asked for help fixing this but instead I got lousy excuses. So you get no more RD!!"; name = "Angrily Scribbled Note"},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"aI" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"aJ" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/characters,/obj/structure/curtain/open/bed,/turf/simulated/floor/wood,/area/vr/powered) +"aK" = (/obj/structure/table/woodentable,/obj/item/weapon/material/sharpeningkit,/obj/item/weapon/material/knife/tacknife/boot,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered) +"aL" = (/obj/effect/catwalk_plated/dark,/obj/structure/sign/department/cargo_dock{pixel_x = -32},/turf/simulated/floor/airless,/area/space) +"aM" = (/obj/structure/prop/alien/pod/hybrid,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"aN" = (/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"aO" = (/turf/simulated/wall/rshull,/area/vr/powered) +"aP" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"aQ" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/shuttle/plating,/area/vr/powered) +"aR" = (/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"aS" = (/obj/structure/table/darkglass,/obj/item/weapon/dnainjector/insulation,/obj/item/weapon/dnainjector/insulation{pixel_y = -5},/obj/item/weapon/dnainjector/insulation{pixel_y = -3},/obj/item/weapon/dnainjector/telemut{pixel_y = 9},/obj/item/weapon/dnainjector/telemut{pixel_y = 3},/obj/item/weapon/dnainjector/telemut{pixel_y = 6},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"aT" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/plating,/area/vr/powered) +"aU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/shuttle/window,/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/plating,/area/vr/powered) +"aW" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"aX" = (/obj/mecha/combat/fighter/gunpod/loaded{dir = 4},/turf/space,/area/space) +"aY" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"aZ" = (/obj/effect/overlay/palmtree_l,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"ba" = (/turf/simulated/floor,/area/vr/powered) +"bb" = (/obj/item/clothing/ears/earring/stud/gold,/obj/item/clothing/accessory/bracelet/material/gold,/turf/simulated/floor/flock,/area/vr/powered) +"bc" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/cryofeed,/turf/simulated/floor/greengrid/nitrogen,/area/vr/powered) +"bd" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"be" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/hos,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"bg" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"bh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/maintenance/engineering,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"bi" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/vr/powered) +"bk" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"bl" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/structure/table/rack/shelf/steel,/obj/item/clothing/head/cowboy,/obj/item/clothing/glasses/fakesunglasses/aviator,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"bm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/shuttle/plating,/area/vr/powered) +"bn" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"bo" = (/obj/structure/table/bench/wooden,/obj/item/weapon/gun/energy/pulse_rifle,/turf/simulated/floor/plating,/area/vr/powered) +"br" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/ion_engine,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"bs" = (/obj/structure/simple_door/wood,/turf/simulated/floor,/area/vr/powered) +"bt" = (/obj/structure/toilet{pixel_y = 12},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/door/window/survival_pod{dir = 2; req_one_access = null},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"bv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/curtain/black,/turf/simulated/floor/tiled/neutral,/area/vr/powered) +"bz" = (/obj/item/weapon/weldingtool/largetank,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/item/weapon/storage/firstaid/surgery,/obj/structure/table/steel_reinforced,/obj/item/stack/nanopaste/advanced,/obj/item/stack/nanopaste/advanced,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"bA" = (/obj/structure/simple_door/wood,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered) +"bB" = (/obj/machinery/vending/wardrobe/chapdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"bC" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/obj/item/ammo_magazine/m9mml,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"bF" = (/obj/machinery/door/firedoor/glass,/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered) +"bH" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"bI" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"bJ" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/survival_pod{opacity = 1},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"bK" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/unsimulated/wall,/area/vr/powered) +"bL" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"bP" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"bQ" = (/obj/machinery/vending/wardrobe/clowndrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"bR" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"bS" = (/obj/structure/flora/rocks1,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"bT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced,/obj/structure/table/rack/shelf/steel,/obj/item/weapon/rig/industrial/equipped,/obj/item/weapon/rig/industrial/equipped,/obj/item/weapon/rig/industrial/equipped,/obj/item/weapon/rig/industrial/equipped,/obj/item/weapon/rig/industrial/equipped,/obj/item/weapon/rig/industrial/equipped,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"bV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = -24},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"bW" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"bX" = (/obj/machinery/disperser/middle{dir = 1},/turf/space,/area/space) +"bZ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"cb" = (/obj/machinery/light,/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"cc" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"ce" = (/obj/machinery/vending/deathmatch,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"cf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/item/weapon/tank/emergency/oxygen/double{pixel_y = 6},/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"cg" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/computer/operating{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"ch" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/plating,/area/vr/powered) +"ci" = (/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/storage/backpack/cultpack,/obj/item/weapon/storage/backpack/cultpack,/turf/simulated/floor/wood,/area/vr/powered) +"cj" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor/wood,/area/vr/powered) +"ck" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered) +"cl" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif/broken,/area/vr/powered) +"co" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gibbearhead"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"cp" = (/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/tiled/white,/area/vr/powered) +"cq" = (/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ct" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/structure/closet/walllocker/medical/east,/turf/simulated/shuttle/plating,/area/vr/powered) +"cu" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/durand,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"cx" = (/obj/effect/catwalk_plated/dark,/obj/machinery/shipsensors{dir = 8},/obj/structure/sign/science{pixel_x = 32},/turf/space,/area/vr/powered) +"cz" = (/obj/structure/prop/machine/nt_biocan,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"cA" = (/turf/simulated/floor/airless,/area/space) +"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/shield_generator/charged{field_radius = 8; initial_shield_modes = 2153; target_radius = 8},/turf/simulated/shuttle/plating,/area/vr/powered) +"cE" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"cF" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"cG" = (/obj/structure/sign/periodic,/turf/simulated/wall/wood,/area/vr/powered) +"cH" = (/obj/effect/floor_decal/spline/fancy,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered) +"cI" = (/obj/mecha/combat/fighter/allure{dir = 8},/turf/space,/area/space) +"cJ" = (/turf/simulated/floor/carpet,/area/vr/powered) +"cK" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/plating,/area/vr/powered) +"cL" = (/obj/machinery/door/airlock/hatch,/turf/simulated/shuttle/plating,/area/vr/powered) +"cM" = (/obj/machinery/chem_master{pixel_x = -7},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"cN" = (/obj/machinery/smartfridge/survival_pod{desc = "A mysterious machine which can fabricate many tools for acquiring test subjects."; icon = 'icons/obj/abductor_vr.dmi'; icon_base = "dispenser_2way"; icon_state = "dispenser_2way"; name = "Implant-Co"},/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/freedom,/obj/item/weapon/implantcase/health,/obj/item/weapon/implantcase/health,/obj/item/weapon/implantcase/laser,/obj/item/weapon/implantcase/laser,/obj/item/weapon/implantcase/medkit,/obj/item/weapon/implantcase/medkit,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/shades,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/sprinter,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/taser,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/toolkit,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/armblade,/obj/item/weapon/implantcase/restrainingbolt,/obj/item/weapon/implantcase/restrainingbolt,/obj/item/weapon/card/id/casino{access = list(777); desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/card/id/casino{access = list(777); desc = "An alien id card with strange glowing markings."; icon_state = "changeling"; name = "Alien id"},/obj/item/weapon/material/twohanded/sledgehammer/mjollnir,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/miscdisc,/obj/item/weapon/storage/pouch/holding,/obj/item/weapon/storage/backpack/holding,/obj/item/weapon/storage/belt/soulstone/full,/obj/item/clothing/accessory/fluff/zeta_blackwell_1,/turf/simulated/floor/cult,/area/vr/powered) +"cO" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/vr/powered) +"cR" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/gygax/dark/adv,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"cS" = (/obj/structure/cult/forge,/turf/simulated/floor/wood,/area/vr/powered) +"cT" = (/obj/structure/salvageable/computer_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"cU" = (/obj/structure/salvageable/server,/turf/simulated/floor/airless,/area/vr/powered) +"cX" = (/obj/structure/bed/chair/wood,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered) +"dc" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/gorefloor2,/area/vr/outdoors/powered) +"df" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"dg" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"di" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"dk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"dl" = (/obj/structure/bed/chair/office/dark,/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"dm" = (/obj/structure/table/rack/shelf/steel,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"do" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/obj/item/weapon/grenade/explosive,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"dp" = (/obj/machinery/vending/loadout,/turf/simulated/floor/tiled,/area/vr/powered) +"dq" = (/turf/simulated/floor/gorefloor2,/area/vr/outdoors/powered) +"dr" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"ds" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/iandouble,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"dt" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/purple{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"du" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/pickaxe/diamond,/obj/item/weapon/pickaxe/diamond,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"dv" = (/obj/machinery/door/window/brigdoor/eastright{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"dw" = (/obj/structure/table/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"dx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/pizzavoucher,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"dy" = (/obj/machinery/light/floortube,/obj/machinery/recharger/wallcharger{pixel_y = 24},/turf/simulated/floor/cult,/area/vr/powered) +"dz" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"dC" = (/turf/simulated/wall/rdshull,/area/vr/powered) +"dE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"dF" = (/turf/simulated/floor/wood/broken,/area/vr/powered) +"dH" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/table/bench/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"dJ" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"dK" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"dL" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/simulated/floor/plating,/area/vr/powered) +"dP" = (/obj/machinery/vending/magivend,/turf/simulated/floor/tiled,/area/vr/powered) +"dR" = (/obj/machinery/vending/wardrobe/bardrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"dW" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"dX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"dY" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"dZ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"eb" = (/obj/structure/closet/crate/large,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"ed" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small/emergency{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"ee" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"eg" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"ej" = (/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/effect/decal/remains,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"ek" = (/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered) +"em" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"eo" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/purcarpet,/area/vr/powered) +"eq" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "estrella_pump"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "estrella"; pixel_y = 26; tag_airpump = "estrella_pump"; tag_chamber_sensor = "estrella_sensor"; tag_exterior_door = "estrella_outer"; tag_interior_door = "estrella_inner"},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/shuttle/plating,/area/vr/powered) +"er" = (/obj/machinery/door/airlock/glass_centcom{id_tag = "kalipsobolt"; name = "Bridge"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"et" = (/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult,/area/vr/powered) +"ew" = (/obj/effect/zone_divider,/turf/unsimulated/wall/seperator,/area/space) +"ex" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"ey" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"ez" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vr/powered) +"eA" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/storage/firstaid/adv{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/adv,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"eC" = (/obj/structure/sign/warning/vacuum,/turf/simulated/wall/skipjack,/area/vr/powered) +"eD" = (/obj/structure/reagent_dispensers/foam,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"eE" = (/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"eF" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"eG" = (/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"eI" = (/obj/structure/grille/cult,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"eJ" = (/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/wood,/area/vr/powered) +"eK" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/obj/item/device/healthanalyzer/phasic,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"eO" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"eQ" = (/obj/structure/table/rack/shelf/steel,/obj/item/trash/rkibble{pixel_x = 8},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"eR" = (/obj/structure/closet/toolcloset,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/obj/item/weapon/module/power_control,/obj/item/weapon/module/cell_power,/obj/item/weapon/module/card_reader,/obj/item/weapon/module/id_auth,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/plating,/area/vr/powered) +"eS" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"eT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/vr/powered) +"eU" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"eV" = (/turf/simulated/floor/water/beach{dir = 9; temperature = 311; outdoors = 0},/area/vr/powered) +"eW" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"eY" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"eZ" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered) +"fb" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"fe" = (/obj/machinery/vending/wardrobe/secdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"ff" = (/obj/mecha/combat/fighter/gunpod{dir = 8},/turf/space,/area/space) +"fg" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/maintenance/security,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"fh" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/redgrid,/area/vr/powered) +"fi" = (/obj/machinery/door/airlock/glass_centcom{name = "Port Cannons"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"fk" = (/obj/structure/prop/rock/water,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"fl" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/turf/simulated/floor/wood,/area/vr/powered) +"fo" = (/obj/machinery/mech_recharger,/obj/mecha/combat/phazon/old,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"fr" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"fs" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"ft" = (/obj/item/weapon/material/twohanded/baseballbat/gold,/obj/item/stack/material/gold,/obj/item/clothing/gloves/ring/material/gold,/obj/item/clothing/accessory/bracelet/material/gold,/obj/item/weapon/ore/diamond,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered) +"fw" = (/obj/structure/table/standard,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 9},/turf/simulated/floor/wood,/area/vr/powered) +"fy" = (/obj/effect/floor_decal/techfloor/corner,/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"fz" = (/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/turf/simulated/floor,/area/vr/powered) +"fA" = (/obj/item/weapon/rcd/advanced/loaded{pixel_x = -5; pixel_y = 9},/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/structure/table/steel_reinforced,/turf/simulated/floor/plating,/area/vr/powered) +"fB" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"fC" = (/obj/effect/floor_decal/spline/fancy{icon_state = "spline_fancy_full"},/obj/structure/bed/chair/comfy/purp,/turf/simulated/floor/bronze,/area/vr/powered) +"fD" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/hull/lightweight,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot,/obj/item/mecha_parts/mecha_equipment/weapon/phoron_bore,/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser/rigged,/turf/simulated/floor/airless,/area/space) +"fE" = (/obj/structure/flora/rocks2,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"fG" = (/obj/machinery/atmospherics/unary/engine{dir = 4},/turf/space,/area/space) +"fH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/airless,/area/vr/powered) +"fI" = (/obj/structure/cliff/automatic{dir = 6},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"fJ" = (/turf/space,/area/vr/powered) +"fK" = (/obj/item/weapon/reagent_containers/blood,/obj/item/weapon/pack/cardemon,/obj/item/weapon/pack/cardemon,/obj/item/weapon/deck/tarot,/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered) +"fL" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"fM" = (/obj/structure/flora/bboulder1,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"fN" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/vr/powered) +"fO" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"fQ" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"fR" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/handcuffs/legcuffs/fuzzy,/obj/item/weapon/handcuffs/fuzzy,/obj/item/clothing/mask/muzzle/ballgag,/obj/item/clothing/suit/iasexy,/obj/item/clothing/under/sexybunny_white/sexybunny_black,/obj/item/clothing/under/dress/maid/sexy,/obj/item/clothing/head/collectable/rabbitears,/turf/simulated/floor/wood/broken,/area/vr/powered) +"fS" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/outdoors/powered) +"fT" = (/obj/structure/bed/chair/wood/wings{dir = 4},/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult,/area/vr/powered) +"fU" = (/mob/living/simple_mob/humanoid/merc/melee/sword/space,/turf/space,/area/space) +"fV" = (/obj/random/junk,/turf/simulated/floor/plating,/area/vr/powered) +"fX" = (/obj/effect/catwalk_plated/white,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"fY" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"fZ" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light/small{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"ga" = (/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"ge" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/techfloor/orange/corner{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"gg" = (/obj/item/clothing/head/cone,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"gi" = (/turf/simulated/wall/phoron,/area/vr/outdoors/powered) +"gj" = (/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_x = -24; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"gk" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"gl" = (/obj/machinery/fusion_fuel_compressor,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"gn" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"gs" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"gt" = (/obj/machinery/light{dir = 4},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin,/obj/machinery/recharger/wallcharger{pixel_x = 34},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"gu" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"gx" = (/turf/simulated/floor/plating,/area/vr/powered) +"gy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"gz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"gA" = (/obj/machinery/light/small,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"gB" = (/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"gC" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/automatic/pdw,/obj/item/weapon/gun/projectile/automatic/pdw,/obj/item/weapon/gun/projectile/automatic/pdw,/obj/item/weapon/gun/projectile/automatic/pdw,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"gD" = (/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"gE" = (/obj/machinery/vending/wardrobe/atmosdrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"gI" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/blue,/area/vr/powered) +"gJ" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"gK" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"gL" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"gM" = (/obj/screen/alert/highpressure,/turf/simulated/shuttle/wall,/area/vr/powered) +"gN" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"gP" = (/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vr/powered) +"gQ" = (/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/table/rack/shelf/steel,/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"gS" = (/obj/machinery/atmospherics/valve{dir = 8},/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/plating,/area/vr/powered) +"gU" = (/mob/living/simple_mob/animal/passive/crab,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"gY" = (/obj/structure/closet,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"hb" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered) +"hc" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"hd" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"he" = (/obj/structure/cult/pylon,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"hf" = (/turf/simulated/floor/tiled/neutral,/area/vr/powered) +"hg" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"hh" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/food/snacks/devilledegg,/turf/simulated/floor/cult,/area/vr/powered) +"hj" = (/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/turf/simulated/floor/redgrid,/area/vr/powered) +"hk" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"hl" = (/obj/machinery/bodyscanner,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"hm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"hp" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"hq" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"hr" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/poi{dir = 4},/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/shuttle/plating,/area/vr/powered) +"hs" = (/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1},/area/vr/outdoors/powered) +"ht" = (/obj/machinery/light/floortube,/turf/simulated/floor/cult,/area/vr/powered) +"hy" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"hz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"hA" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"hB" = (/turf/space,/area/space) +"hD" = (/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"hF" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"hH" = (/obj/item/weapon/storage/pouch/holding,/turf/simulated/floor/cult,/area/vr/powered) +"hI" = (/turf/simulated/floor/tiled,/area/vr/powered) +"hJ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"hK" = (/obj/structure/bed/double/padded,/obj/structure/curtain/bed,/obj/item/weapon/bedsheet/hosdouble,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_y = 32},/turf/simulated/floor/wood,/area/vr/powered) +"hM" = (/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"hN" = (/obj/structure/flora/rocks2,/mob/living/simple_mob/animal/passive/bird/black_bird,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"hO" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"hP" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/meter,/turf/simulated/floor/airless,/area/vr/powered) +"hQ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 1; frequency = 1331; id_tag = "kalipso_shuttle"; pixel_y = -26},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/plating,/area/vr/powered) +"hR" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/item/toy/AI{desc = "May look like a toy, but to your surprise it seems to be a miniature AI core. There is constant static and a constant buzzing sound that makes your ear rings. . ."; name = "M@13fic3n7"; pixel_y = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"hS" = (/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered) +"hU" = (/obj/structure/table/bench/wooden,/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"hV" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"hY" = (/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/structure/cult/pylon{pixel_y = 4},/turf/simulated/floor/cult,/area/vr/powered) +"hZ" = (/obj/machinery/door/window/survival_pod,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"ia" = (/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ic" = (/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"id" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"ie" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/shuttle/plating,/area/vr/powered) +"if" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/airless,/area/vr/powered) +"ih" = (/mob/living/simple_mob/animal/passive/cat/bones{desc = "A very odd behaved cat, their scratched name tag reads 'Felix'. They look very malnourished."; name = "Felix"},/turf/simulated/floor/wood,/area/vr/powered) +"ij" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"ik" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Scrubber to Waste"},/turf/simulated/floor/airless,/area/vr/powered) +"il" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = null},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"im" = (/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"in" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"io" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/purple{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"iq" = (/obj/structure/flora/tree/jungle,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"is" = (/obj/mecha/combat/fighter/baron{dir = 8},/turf/space,/area/space) +"it" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"iu" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered) +"iv" = (/obj/structure/sign/warning/vacuum,/turf/unsimulated/wall,/area/vr/powered) +"iy" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/plating,/area/vr/powered) +"iz" = (/obj/structure/cliff/automatic{dir = 10},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"iA" = (/obj/machinery/door/airlock/angled_tgmc/wide/command,/turf/simulated/shuttle/plating,/area/vr/powered) +"iC" = (/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"iE" = (/obj/vehicle/boat/dragon/sifwood{dir = 8},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered) +"iG" = (/obj/machinery/recharger/wallcharger{pixel_y = 24},/obj/machinery/vending/deathmatch/red,/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"iH" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"iJ" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"iK" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"iL" = (/obj/machinery/recharge_station,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"iM" = (/obj/effect/catwalk_plated/white,/obj/machinery/light/small{dir = 8},/turf/space,/area/space) +"iN" = (/mob/living/simple_mob/construct/juggernaut/behemoth{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"iO" = (/mob/living/simple_mob/vore/horse/big{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"iP" = (/obj/structure/table/marble,/obj/machinery/light{dir = 1},/obj/machinery/microwave,/turf/simulated/floor/tiled/white,/area/vr/powered) +"iR" = (/obj/structure/table/standard,/obj/item/weapon/gun/projectile/automatic/serdy/memegun,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"iS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/meter,/turf/simulated/floor/airless,/area/vr/powered) +"iT" = (/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered) +"iV" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"iW" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/cans/beercan,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"iX" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/roastbeef,/turf/simulated/floor/cult,/area/vr/powered) +"iY" = (/obj/structure/bed/chair/oldsofa/left{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"ja" = (/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"jb" = (/turf/simulated/floor/outdoors/sidewalk{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"jd" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered) +"jf" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"jg" = (/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/powered) +"jh" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light,/turf/simulated/floor/cult,/area/vr/powered) +"ji" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "estrella_back_hatch"; locked = 1; req_one_access = null},/obj/machinery/button/remote/airlock{desiredstate = 1; id = "estrella_back_hatch"; name = "Rear Hatch Control"; pixel_y = 27; req_access = null; specialfunctions = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/obj/structure/fans/tiny,/turf/simulated/shuttle/plating,/area/vr/powered) +"jj" = (/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/powered) +"jk" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"jl" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"jm" = (/obj/structure/bonfire/permanent,/obj/item/weapon/reagent_containers/food/snacks/cuttlefish,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"jo" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/crunch,/turf/simulated/floor/cult,/area/vr/powered) +"jp" = (/obj/structure/ship_munition/disperser_charge/mining,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"jr" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"js" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic{pixel_x = 6; pixel_y = 0},/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"jt" = (/mob/living/simple_mob/animal/passive/fish/trout,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"ju" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"jv" = (/mob/living/simple_mob/construct/artificer{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"jw" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"jx" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1},/area/vr/outdoors/powered) +"jy" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"jB" = (/obj/structure/flora/ausbushes/fernybush,/obj/structure/flora/rocks1,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"jC" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/green,/turf/simulated/floor/cult,/area/vr/powered) +"jD" = (/obj/item/weapon/fossil/skull/horned,/turf/simulated/floor/cult,/area/vr/powered) +"jI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered) +"jK" = (/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"jL" = (/mob/living/simple_mob/construct/harvester{ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered) +"jN" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"jR" = (/obj/structure/toilet{dir = 8; pixel_x = 9},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"jS" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = null},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/vr/powered) +"jT" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"jV" = (/obj/fiftyspawner/wood,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"jW" = (/obj/item/weapon/coin/gold,/obj/item/clothing/mask/bandana/gold,/obj/fiftyspawner/gold,/obj/item/weapon/coin/diamond,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered) +"jX" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rainbowdouble,/obj/machinery/partyalarm{pixel_y = -18},/turf/simulated/floor/wood/sif,/area/vr/powered) +"jY" = (/obj/structure/table/steel,/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/obj/fiftyspawner/wood,/obj/fiftyspawner/steel,/turf/simulated/floor,/area/vr/powered) +"jZ" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"kb" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"ke" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/outdoors/powered) +"kf" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"kg" = (/turf/simulated/wall/cult,/area/vr/outdoors/powered) +"kh" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/sword/katana,/obj/item/weapon/material/sword/katana,/obj/item/weapon/material/sword,/obj/item/weapon/material/sword,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"kl" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/marauder/mauler,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ko" = (/obj/structure/cryofeed{dir = 1},/turf/simulated/wall/rdshull,/area/vr/powered) +"kp" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/spline/fancy,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/yellow,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered) +"kr" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/cloak,/obj/item/mecha_parts/mecha_equipment/tool/jetpack,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/turf/simulated/floor/airless,/area/vr/powered) +"ks" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"kt" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"ku" = (/turf/simulated/floor/cult,/area/vr/outdoors/powered) +"kw" = (/obj/effect/floor_decal/techfloor{dir = 6},/turf/simulated/floor/cult,/area/vr/powered) +"ky" = (/obj/structure/salvageable/console_os{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"kz" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"kB" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled,/area/vr/powered) +"kC" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/deluxe/full,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"kF" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"kG" = (/turf/simulated/floor/wood/alt/panel/broken{temperature = 311},/area/vr/powered) +"kH" = (/obj/structure/table/fancyblack,/obj/item/weapon/material/knife/ritual,/turf/simulated/floor/cult,/area/vr/powered) +"kI" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"kJ" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"kK" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"kM" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/devilledegg,/turf/simulated/floor/cult,/area/vr/powered) +"kN" = (/obj/structure/cryofeed{dir = 2},/obj/machinery/light/small/emergency,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"kP" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoron,/obj/fiftyspawner/osmium,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"kQ" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered) +"kR" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/bodyscanner,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"kS" = (/turf/unsimulated/wall,/area/vr/powered) +"kT" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"kV" = (/obj/structure/railing,/obj/effect/step_trigger/teleporter/bridge/north_to_south,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"kW" = (/obj/structure/flora/lily1,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"kY" = (/obj/machinery/vending/wardrobe/medidrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"kZ" = (/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"la" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"lb" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"lc" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"ld" = (/obj/structure/cliff/automatic{dir = 9},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"le" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"lf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"lg" = (/obj/effect/catwalk_plated/white,/turf/simulated/floor/wmarble,/area/vr/powered) +"lh" = (/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"li" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/scorpion_cooked,/turf/simulated/floor/cult,/area/vr/powered) +"lk" = (/obj/structure/flora/lily3,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"ll" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/generator/nuclear,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/explosive/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion/rigged,/turf/simulated/floor/airless,/area/vr/powered) +"lm" = (/obj/structure/outcrop/gold,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"ln" = (/obj/machinery/light{dir = 4},/obj/item/weapon/spacecash/ewallet{worth = 69000},/obj/structure/table/steel,/obj/item/weapon/spacecash/ewallet{worth = 69000},/turf/simulated/floor/tiled,/area/vr/powered) +"lo" = (/obj/machinery/atmospherics/unary/engine{dir = 8},/turf/space,/area/vr/powered) +"lp" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/cult,/area/vr/powered) +"lq" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/obj/item/weapon/tool/crowbar/red{force = 15; throwforce = 16; name = "heavy crowbar"; desc = "Used to remove floors and to pry open doors. This one looks like it can pack quite a punch"},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"ls" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/turf/simulated/floor/plating,/area/vr/powered) +"lt" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"lv" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"ly" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"lA" = (/turf/simulated/floor/holofloor/carpet,/area/vr/powered) +"lC" = (/obj/structure/prop/rock/small/alt,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"lD" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"lE" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"lH" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"lJ" = (/obj/structure/prop/rock/small/water,/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/powered) +"lL" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/piratedouble,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"lM" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/vr/powered) +"lN" = (/obj/structure/flora/pottedplant/bamboo{pixel_y = 12},/obj/structure/table/bench/wooden,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered) +"lO" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"lP" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"lQ" = (/obj/structure/table/glass,/obj/item/weapon/towel,/obj/item/weapon/towel{color = "#FFD700"; name = "gold towel"},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered) +"lR" = (/obj/structure/fence,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"lS" = (/obj/structure/table/standard,/obj/random/cigarettes,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"lU" = (/turf/simulated/floor/water/beach/corner{temperature = 311},/area/vr/outdoors/powered) +"lW" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"lZ" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"ma" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"mb" = (/turf/simulated/floor/water/deep{temperature = 293.15},/area/vr/outdoors/powered) +"mc" = (/obj/structure/cryofeed,/turf/simulated/wall/rdshull,/area/vr/powered) +"md" = (/obj/machinery/feeder,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"me" = (/obj/item/ammo_casing/a145,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"mf" = (/obj/machinery/vending/fishing,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"mh" = (/obj/effect/decal/cleanable/blood/gibs,/obj/structure/table/marble,/obj/item/organ/internal/intestine/unathi,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/reagent_containers/food/snacks/bearmeat,/obj/item/weapon/reagent_containers/food/snacks/bearmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat,/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat,/turf/simulated/floor,/area/vr/powered) +"mk" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib2_flesh"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"ml" = (/obj/effect/blocker,/turf/simulated/floor/airless,/area/space) +"mm" = (/obj/structure/table/bench/marble,/obj/structure/flora/pottedplant/bamboo{pixel_y = 7},/obj/structure/window/reinforced/polarized{id = "h-master"},/turf/simulated/floor/wood,/area/vr/powered) +"mo" = (/obj/machinery/recharge_station,/turf/simulated/floor/wood,/area/vr/powered) +"mq" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"mr" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/vr/powered) +"mt" = (/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"mv" = (/turf/simulated/wall/wood,/area/vr/powered) +"mw" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"mz" = (/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"mA" = (/obj/structure/table/survival_pod,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/shuttle/plating,/area/vr/powered) +"mC" = (/obj/machinery/vending/medical{req_access = null; req_log_access = null; dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"mD" = (/obj/machinery/media/jukebox/casinojukebox,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"mE" = (/obj/effect/overlay/palmtree_r,/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"mG" = (/obj/structure/table/glass,/obj/item/weapon/towel{color = "#b5651d"; name = "brown towel"},/obj/item/weapon/towel{color = "#00FFFF"; name = "cyan towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#90ee90"; name = "green towel"},/turf/simulated/floor/wood,/area/vr/powered) +"mH" = (/obj/structure/cliff/automatic{dir = 5},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"mL" = (/turf/simulated/wall/solidrock,/area/vr/powered) +"mM" = (/obj/structure/bed/chair/wood/wings{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult,/area/vr/powered) +"mN" = (/obj/machinery/recharger/wallcharger{pixel_y = 24},/turf/simulated/floor/cult,/area/vr/powered) +"mO" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/sliceable/pizza/pineapple,/turf/simulated/floor/wood,/area/vr/powered) +"mP" = (/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"mR" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/vr/powered) +"mT" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"mU" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"mY" = (/obj/machinery/suit_cycler/refit_only,/turf/simulated/floor/cult,/area/vr/powered) +"mZ" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/jcloset,/obj/item/weapon/mop,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/shuttle/plating,/area/vr/powered) +"nb" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/redgrid,/area/vr/powered) +"nc" = (/obj/structure/salvageable/server,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"nf" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"nh" = (/obj/structure/prop/machine/tgmc_console1/starts_on,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"ni" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/tiled,/area/vr/powered) +"nk" = (/obj/structure/bed/chair/bay/comfy/red{dir = 4},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"nl" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/obj/structure/cult/pylon{pixel_y = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"nm" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 8},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/grey,/turf/simulated/floor/cult,/area/vr/powered) +"nn" = (/obj/machinery/media/jukebox,/turf/simulated/floor/redgrid/off,/area/vr/powered) +"np" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 1},/turf/space,/area/space) +"nr" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/weapon/storage/belt/utility/full/multitool{pixel_y = 6},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"nt" = (/turf/simulated/wall/wood,/area/vr/outdoors/powered) +"nu" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"nA" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"nB" = (/obj/structure/bed/chair/wood/wings{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"nC" = (/turf/space,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"nF" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered) +"nG" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"nH" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/walllocker/emerglocker/north,/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/plating,/area/vr/powered) +"nI" = (/obj/machinery/vending/wardrobe/chefdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"nK" = (/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"nL" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"nN" = (/obj/structure/closet/athletic_mixed,/obj/item/clothing/shoes/sandal,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"nO" = (/obj/structure/fence/corner,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"nP" = (/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"nQ" = (/obj/mecha/working/hoverpod/shuttlecraft{dir = 8},/turf/space,/area/space) +"nR" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/airless,/area/vr/powered) +"nT" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gibdown1_flesh"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"nV" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"nX" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small/emergency{dir = 8},/obj/structure/sign/atmos/air{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered) +"nZ" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered) +"oa" = (/obj/structure/cliff/automatic/corner{dir = 10},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"ob" = (/obj/structure/table/wooden_reinforced,/obj/structure/flora/pottedplant/smallcactus{pixel_y = 13},/turf/simulated/floor/wood,/area/vr/powered) +"od" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"oe" = (/turf/simulated/floor/water/beach/corner{dir = 4; temperature = 311; outdoors = 0},/area/vr/powered) +"of" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"og" = (/obj/structure/curtain/black,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/knife/butch,/turf/simulated/floor,/area/vr/powered) +"oh" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoron,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"oi" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor,/area/vr/powered) +"oj" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"om" = (/obj/machinery/vending/cola,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"oo" = (/obj/machinery/vending/tool{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"op" = (/obj/structure/table/standard,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"oq" = (/obj/structure/window/reinforced,/turf/simulated/floor/wood,/area/vr/powered) +"os" = (/obj/machinery/power/generator{anchored = 1; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"ov" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/space,/area/vr/powered) +"ow" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered) +"oB" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/revolver,/obj/item/weapon/gun/projectile/revolver,/obj/item/weapon/gun/projectile/revolver,/obj/item/weapon/gun/projectile/revolver,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"oD" = (/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"oE" = (/turf/simulated/floor/water/beach{dir = 10; temperature = 311; outdoors = 0},/area/vr/outdoors/powered) +"oF" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"oG" = (/obj/structure/fence{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"oH" = (/obj/machinery/vending/wardrobe/mimedrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"oI" = (/turf/unsimulated/wall/seperator,/area/vr/outdoors/powered) +"oJ" = (/obj/structure/bed/chair/bay/comfy/black{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"oK" = (/obj/item/weapon/telecube/precursor,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered) +"oM" = (/obj/structure/table/bench/marble,/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered) +"oO" = (/obj/structure/salvageable/bliss,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"oQ" = (/obj/machinery/shower,/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/neutral,/area/vr/powered) +"oR" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/floodlight,/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/light/small/emergency{dir = 8},/turf/simulated/floor/plating,/area/vr/powered) +"oS" = (/obj/machinery/vending/phoronresearch,/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"oU" = (/obj/structure/table/marble,/obj/item/weapon/storage/firstaid/bonemed{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/bonemed,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"oV" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"pd" = (/mob/living/simple_mob/construct/harvester{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"pe" = (/obj/machinery/door/window/brigdoor/westright{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"pg" = (/turf/simulated/floor/lava,/area/vr/powered) +"pi" = (/obj/structure/table/steel,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"pj" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"pl" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/melee/energy/sword,/obj/item/weapon/melee/energy/sword,/obj/item/stack/material/durasteel{material = 50},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"pm" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"pn" = (/obj/machinery/sleeper/survival_pod,/turf/simulated/shuttle/plating,/area/vr/powered) +"po" = (/obj/structure/cliff/automatic/corner{dir = 6},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"pr" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"ps" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"pt" = (/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/wood,/area/vr/powered) +"pu" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/structure/table/rack/shelf/steel,/obj/item/clothing/head/cowboy,/obj/item/clothing/glasses/fakesunglasses/aviator,/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"pw" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/obj/item/ammo_magazine/m9mm,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"px" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/marauder/seraph,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"pz" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"pD" = (/obj/machinery/vending/wardrobe/detdrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"pE" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/dip/salsa{pixel_y = 9},/obj/item/weapon/reagent_containers/food/snacks/sharkmeatdip{pixel_y = 0; pixel_x = -3},/turf/simulated/floor/wood,/area/vr/powered) +"pF" = (/obj/structure/railing{dir = 8},/obj/structure/flora/rocks2,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"pH" = (/obj/machinery/light/small,/obj/item/weapon/ore/diamond,/obj/structure/sign/goldenplaque{desc = "Done No Harm."; name = "Best Doctor 2552"; pixel_y = -32},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered) +"pI" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/vr/powered) +"pJ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/structure/closet/walllocker/medical/west,/turf/simulated/shuttle/plating,/area/vr/powered) +"pK" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"pL" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"pM" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light/small/emergency{dir = 4},/obj/structure/sign/department/eng{pixel_x = 32},/turf/simulated/floor/plating,/area/vr/powered) +"pN" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"pO" = (/obj/machinery/door/airlock/glass_centcom{name = "Port Wing Engine"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"pP" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"pQ" = (/obj/machinery/atmospherics/binary/pump,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"pT" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"pU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/airless,/area/vr/powered) +"pV" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"pW" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"pX" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"pY" = (/obj/structure/bed/chair/wood/wings,/turf/simulated/floor/wood,/area/vr/powered) +"qa" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"qb" = (/obj/machinery/door/airlock/angled_tgmc/wide/security,/turf/simulated/shuttle/plating,/area/vr/powered) +"qc" = (/obj/structure/salvageable/implant_container_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"qd" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/toy/plushie/kitten,/obj/item/toy/plushie/grey_cat,/obj/item/toy/plushie/orange_cat,/obj/item/toy/plushie/borgplushie/scrubpuppy,/obj/item/toy/plushie/black_fox,/obj/item/toy/plushie,/obj/item/toy/plushie/corgi,/obj/item/toy/plushie/crimson_fox,/obj/item/clothing/shoes/sandal,/obj/item/clothing/shoes/sandal,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = -32},/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/turcarpet,/area/vr/powered) +"qe" = (/turf/simulated/floor/carpet/blue,/area/vr/powered) +"qf" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/shuttle/plating,/area/vr/powered) +"qh" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"qi" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"qj" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"qk" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/item/weapon/cell/hyper{pixel_y = -2; pixel_x = -4},/obj/item/weapon/cell/hyper{pixel_y = 2},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ql" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/shull,/area/vr/powered) +"qo" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"qp" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult,/area/vr/powered) +"qq" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"qr" = (/obj/machinery/door/window/northright{name = "Server Room"; req_access = null},/obj/machinery/door/window/southleft{name = "Server Room"; req_access = null},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"qs" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"qt" = (/obj/structure/dispenser{phorontanks = 0},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"qu" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/roburgerbig,/turf/simulated/floor/cult,/area/vr/powered) +"qv" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/fossil/skull/horned{anchored = 1; pixel_x = -1},/obj/effect/catwalk_plated/white,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/lava,/area/vr/powered) +"qw" = (/obj/machinery/vending/deluxe_boozeomat,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"qy" = (/obj/structure/table/steel_reinforced,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"qB" = (/mob/living/simple_mob/construct/harvester{dir = 1; ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"qC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/shuttle/wall,/area/vr/powered) +"qD" = (/mob/living/simple_mob/animal/passive/fish/rockfish,/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/powered) +"qE" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"qF" = (/obj/machinery/porta_turret/stationary/syndie{faction = "hivebot"},/turf/simulated/floor/airless,/area/vr/powered) +"qG" = (/turf/simulated/wall/sandstonediamond,/area/vr/powered) +"qH" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered) +"qJ" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic,/turf/simulated/shuttle/plating,/area/vr/powered) +"qL" = (/obj/item/weapon/material/fishing_rod/modern/cheap,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered) +"qN" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"qO" = (/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"qP" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 1},/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/blue,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered) +"qQ" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/glasses/square{pixel_y = -2},/obj/item/weapon/storage/box/glass_extras/sticks{pixel_y = 4},/obj/item/weapon/storage/box/glass_extras/straws{pixel_y = 7},/obj/item/weapon/packageWrap,/obj/structure/curtain/open/bed,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/turf/simulated/floor/tiled/white,/area/vr/powered) +"qR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"qS" = (/obj/machinery/pointdefense,/turf/simulated/floor/airless,/area/space) +"qT" = (/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"qU" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"qV" = (/obj/machinery/atmospherics/unary/cryo_cell,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"qW" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/mech_recharger,/turf/simulated/shuttle/plating,/area/vr/powered) +"qX" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/vr/powered) +"qY" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"qZ" = (/obj/machinery/vending/snack,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"ra" = (/obj/structure/shuttle/engine/router,/turf/simulated/floor/airless,/area/vr/powered) +"rc" = (/obj/machinery/light,/turf/simulated/floor/cult,/area/vr/powered) +"re" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"rf" = (/mob/living/simple_mob/animal/passive/bird/goldcrest,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"rg" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/turf/simulated/floor/tiled,/area/vr/powered) +"rh" = (/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"ri" = (/obj/effect/zone_divider,/turf/unsimulated/wall,/area/vr/powered) +"rj" = (/obj/structure/cult/tome,/turf/simulated/floor/wood,/area/vr/powered) +"rk" = (/obj/item/weapon/material/minihoe,/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"rl" = (/obj/item/weapon/reagent_containers/food/snacks/syndicake,/turf/simulated/floor/airless,/area/space) +"rm" = (/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/item/weapon/digestion_remains/ribcage,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"rn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"ro" = (/obj/machinery/shower{dir = 4},/obj/structure/curtain/open/shower/security,/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"rp" = (/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/plating,/area/vr/powered) +"rq" = (/obj/structure/flora/ausbushes/genericbush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"rr" = (/obj/machinery/vending/robotics{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"rs" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/outdoors/powered) +"rt" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{dir = 4},/turf/simulated/shuttle/plating,/area/vr/powered) +"ru" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"rw" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/table/reinforced,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"rx" = (/obj/structure/closet{name = "physicist's wardrobe"},/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/suit/storage/toggle/labcoat,/obj/item/clothing/glasses/regular,/obj/item/clothing/glasses/regular,/obj/item/clothing/glasses/regular,/obj/item/clothing/glasses/regular,/obj/item/clothing/accessory/tie,/obj/item/clothing/accessory/tie,/obj/item/clothing/accessory/tie,/obj/item/clothing/accessory/tie,/obj/item/clothing/under/sl_suit,/obj/item/clothing/under/sl_suit,/obj/item/clothing/under/sl_suit,/obj/item/clothing/under/sl_suit,/turf/simulated/floor/tiled,/area/vr/powered) +"ry" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"rz" = (/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"rB" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"rC" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"rE" = (/obj/effect/blocker,/turf/unsimulated/wall/seperator,/area/space) +"rF" = (/obj/machinery/gibber/autogibber{emagged = 1},/turf/simulated/floor,/area/vr/powered) +"rH" = (/obj/item/weapon/storage/backpack/dufflebag/emt,/turf/space,/area/space) +"rI" = (/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"rK" = (/obj/structure/bed/double/padded,/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/item/weapon/bedsheet/rainbowdouble,/turf/simulated/floor/carpet/turcarpet,/area/vr/powered) +"rL" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"rN" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sharkmeatcooked,/turf/simulated/floor/cult,/area/vr/powered) +"rQ" = (/obj/item/weapon/flame/candle/everburn,/obj/structure/table/bench/wooden,/turf/simulated/floor/plating,/area/vr/powered) +"rR" = (/obj/machinery/door/blast/regular,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"rS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"rT" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/red{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"rU" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"rV" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib3"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"rW" = (/obj/item/weapon/material/twohanded/baseballbat/gold,/obj/item/clothing/gloves/ring/material/gold,/obj/fiftyspawner/gold,/turf/simulated/floor/flock,/area/vr/powered) +"rY" = (/mob/living/simple_mob/construct/juggernaut/behemoth{dir = 1; ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"rZ" = (/obj/structure/prop/rock/waterflat,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"sa" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"sb" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/chainsaw,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor,/area/vr/powered) +"sc" = (/obj/item/weapon/material/fishing_net,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered) +"se" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "estrella"; name = "interior access button"; pixel_y = 26},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/vr/powered) +"sf" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"sg" = (/obj/structure/lattice,/turf/space,/area/space) +"sj" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"sk" = (/obj/structure/salvageable/data_os{name = "broken money printer"},/obj/item/weapon/spacecash/ewallet{worth = 69000},/turf/simulated/floor/tiled,/area/vr/powered) +"sl" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "estrella_sensor"; pixel_y = -28},/turf/simulated/shuttle/plating,/area/vr/powered) +"sp" = (/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"sq" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"sr" = (/obj/structure/table/steel,/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"ss" = (/obj/item/weapon/reagent_containers/food/snacks/sliceable/monkfishremains,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered) +"sw" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"sx" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"sy" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled,/area/vr/powered) +"sA" = (/obj/structure/prop/rock/small/water,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"sC" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/turf/simulated/floor/wood,/area/vr/powered) +"sG" = (/obj/machinery/vending/wardrobe/hydrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"sI" = (/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"sJ" = (/obj/machinery/body_scanconsole,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"sK" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/airless,/area/vr/powered) +"sL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"sN" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"sP" = (/obj/structure/bed/chair/wood/wings{dir = 4},/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"sR" = (/obj/effect/rune,/obj/effect/step_trigger/message{message = "Place your key here to seal your faith. . ."; once = 0},/turf/simulated/floor/bronze,/area/vr/powered) +"sS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"sT" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/lasercannon,/obj/item/weapon/gun/energy/lasercannon,/obj/item/weapon/gun/energy/lasercannon,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"sU" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"sV" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/airless,/area/vr/powered) +"sW" = (/obj/machinery/vending/medical{req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"sX" = (/obj/structure/cult/pylon{pixel_y = 4},/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"sY" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/floor/cult,/area/vr/powered) +"ta" = (/obj/structure/fans,/turf/simulated/shuttle/plating,/area/vr/powered) +"tb" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 4},/obj/item/device/flash,/turf/simulated/floor/wood,/area/vr/powered) +"tf" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/lobstercooked,/turf/simulated/floor/cult,/area/vr/powered) +"th" = (/turf/simulated/floor/water/beach/corner{dir = 8; temperature = 311},/area/vr/outdoors/powered) +"tj" = (/obj/machinery/gear_dispenser/suit/ert{req_one_access = null},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"tm" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/flora/pottedplant/fern{pixel_y = 12},/obj/structure/table/bench/wooden,/turf/simulated/floor/wood,/area/vr/powered) +"tn" = (/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"to" = (/mob/living/simple_mob/animal/passive/fish/salmon,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"tq" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"tr" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"ts" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/space,/area/space) +"tt" = (/obj/structure/closet/crate/rcd,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd/advanced/loaded,/obj/item/weapon/rcd/advanced/loaded,/obj/item/weapon/rcd/advanced/loaded,/obj/item/weapon/rcd/advanced/loaded,/obj/item/weapon/rcd_ammo/large,/obj/item/weapon/rcd_ammo/large,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"tu" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"tv" = (/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"tw" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"ty" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/vr/powered) +"tz" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"tB" = (/obj/screen/alert/highpressure,/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"tC" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/obj/item/weapon/storage/box/monkeycubes/sobakacubes,/obj/item/weapon/storage/box/monkeycubes/farwacubes,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"tD" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"tE" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"tF" = (/obj/effect/floor_decal/corner/brown/border{dir = 9},/obj/effect/floor_decal/spline/fancy/wood{dir = 9},/turf/simulated/floor/wood,/area/vr/powered) +"tI" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/fireaxecabinet{pixel_x = 32},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"tJ" = (/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"tK" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"tL" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"tM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"tP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/vr/powered) +"tQ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"tS" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"tT" = (/obj/structure/flora/bboulder2,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"tU" = (/obj/machinery/vending/robotics{emagged = 1; req_access = null},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"tV" = (/obj/item/stack/material/gold,/obj/item/clothing/ears/earring/stud/gold,/obj/item/weapon/coin/diamond,/obj/item/stack/material/diamond,/turf/simulated/floor/flock,/area/vr/powered) +"tZ" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table/reinforced,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"ua" = (/obj/structure/cult/pylon,/turf/simulated/floor/wood,/area/vr/powered) +"ub" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"uc" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"ue" = (/obj/machinery/gear_dispenser/suit/standard,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"uf" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/extinguisher{pixel_x = 8; pixel_y = 1},/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/medical/lite,/obj/random/medical/lite,/obj/structure/mopbucket{pixel_x = -8; pixel_y = -4},/obj/item/weapon/mop,/obj/item/device/multitool,/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/obj/random/unidentified_medicine,/obj/random/unidentified_medicine,/obj/random/unidentified_medicine,/turf/simulated/floor/tiled,/area/vr/powered) +"ug" = (/obj/structure/prop/machine/nt_pod,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"uh" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/vr/powered) +"ui" = (/obj/structure/table/marble,/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/spline/fancy/wood/corner,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/red,/turf/simulated/floor/cult,/area/vr/powered) +"uj" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/vr/powered) +"ul" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"um" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"un" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"uo" = (/obj/structure/salvageable/server_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"up" = (/obj/structure/closet/secure_closet/engineering_welding{req_access = null},/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"us" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"uv" = (/mob/living/simple_mob/construct/harvester{dir = 1; ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered) +"uw" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"ux" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"uB" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable/green,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered) +"uD" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"uG" = (/obj/structure/table/steel_reinforced,/obj/fiftyspawner/uranium,/turf/simulated/floor/airless,/area/vr/powered) +"uH" = (/turf/simulated/floor/gorefloor,/area/vr/powered) +"uI" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"uK" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"uM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/engineering,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/item/weapon/tank/phoron,/obj/item/weapon/tank/phoron,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/device/multitool,/obj/item/device/geiger,/obj/item/clothing/glasses/goggles,/obj/item/clothing/glasses/goggles,/obj/item/device/t_scanner,/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/plating,/area/vr/powered) +"uN" = (/obj/structure/coatrack,/obj/machinery/button/windowtint{id = "h-living"; pixel_x = -27},/turf/simulated/floor/wood,/area/vr/powered) +"uO" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"uP" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"uQ" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/cult,/area/vr/powered) +"uR" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/floor/cult,/area/vr/powered) +"uS" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"uT" = (/obj/item/frame/apc,/obj/machinery/light_switch{pixel_x = 11; pixel_y = 22},/obj/random/junk,/turf/simulated/floor,/area/vr/powered) +"uV" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"uY" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/mob/living/simple_mob/animal/passive/dog/corgi/Lisa{name = "Shepiffany"},/obj/structure/dogbed,/obj/machinery/light/poi{dir = 8},/obj/machinery/button/remote/airlock{dir = 4; id = "kalipsobolt"; name = "Bridge Lock Down"; pixel_x = -28; specialfunctions = 4},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"uZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber/huge,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"vb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"vc" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating,/area/vr/powered) +"vd" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/plating,/area/vr/powered) +"ve" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"vg" = (/obj/item/device/kit/paint/gygax/darkgygax,/obj/item/device/kit/paint/gygax/recitence,/obj/item/device/kit/paint/durand,/obj/item/device/kit/paint/durand/phazon,/obj/item/device/kit/paint/durand/seraph,/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"vi" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"vk" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"vl" = (/turf/simulated/floor/flock{color = "grey"},/area/vr/powered) +"vo" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/poi,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"vr" = (/obj/structure/table/marble,/obj/item/weapon/material/sharpeningkit,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/white,/area/vr/powered) +"vt" = (/obj/structure/flora/tree/jungle,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"vu" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/sol,/turf/simulated/floor/tiled,/area/vr/powered) +"vv" = (/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/powered) +"vx" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"vz" = (/obj/item/weapon/reagent_containers/glass/rag,/obj/item/clothing/gloves/ring/engagement,/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered) +"vA" = (/obj/structure/prop/fake_ai{name = "k@1iPs0"},/obj/structure/sign/department/commander{pixel_y = -32},/turf/simulated/floor/greengrid/nitrogen,/area/vr/powered) +"vH" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/plating,/area/vr/powered) +"vI" = (/obj/machinery/chemical_dispenser/ert/specialops,/obj/structure/table/marble{color = "grey"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"vJ" = (/turf/unsimulated/wall,/area/space) +"vN" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/plating,/area/vr/powered) +"vO" = (/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"vP" = (/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"vQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/weapon/stool/padded,/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"vR" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"vS" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"vT" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating,/area/vr/powered) +"vU" = (/obj/structure/bed/chair/wood{dir = 1},/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered) +"vW" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "mfloor2"},/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "metroid_gib1"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"vX" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"vZ" = (/obj/structure/table,/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered) +"wa" = (/obj/machinery/light/floortube/flicker{pixel_y = -2},/turf/simulated/floor/cult,/area/vr/powered) +"wc" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/purple{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"wd" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"we" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"wf" = (/mob/living/simple_mob/animal/passive/raccoon_ch,/turf/simulated/floor/tiled/white,/area/vr/powered) +"wg" = (/turf/simulated/wall/shull,/area/vr/powered) +"wh" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"wj" = (/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"wk" = (/obj/structure/shuttle/engine/heater,/turf/simulated/wall/shull,/area/vr/powered) +"wl" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"wm" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/phazon,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"wn" = (/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/modular/carbine,/obj/item/weapon/gun/energy/pummeler,/obj/item/weapon/gun/energy/taser,/obj/machinery/light,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"wo" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/gear_dispenser/suit/ert{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"wp" = (/obj/machinery/vending/loadout/clothing,/turf/simulated/floor/tiled,/area/vr/powered) +"wr" = (/turf/simulated/floor/flock,/area/vr/powered) +"ww" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"wx" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"wy" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"wA" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/redgrid/off,/area/vr/powered) +"wC" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"wD" = (/obj/structure/simple_door/wood,/obj/structure/fans/tiny,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"wE" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"wF" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/redgrid,/area/vr/powered) +"wH" = (/obj/structure/window/reinforced/survival_pod,/turf/simulated/floor/redgrid,/area/vr/powered) +"wJ" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/turf/simulated/floor/plating,/area/vr/powered) +"wK" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"wL" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/tiled,/area/vr/powered) +"wM" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/obj/item/weapon/storage/box/monkeycubes/stokcubes,/obj/item/weapon/storage/box/monkeycubes/sparracubes,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"wN" = (/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"wO" = (/turf/simulated/floor/water/beach/corner{temperature = 293.15},/area/vr/outdoors/powered) +"wP" = (/obj/machinery/light{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/secure/briefcase/nerd_pack_med,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"wQ" = (/mob/living/simple_mob/humanoid/merc/melee/sword/space,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"wS" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"wT" = (/obj/machinery/door/airlock/maintenance/common,/obj/item/tape/engineering,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"wU" = (/obj/structure/railing,/obj/effect/decal/remains,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"wV" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/curtain/open/shower/engineering,/obj/machinery/shower{dir = 8; pixel_x = -5},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"wW" = (/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/random/trash,/obj/effect/decal/remains/deer,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"wY" = (/mob/living/simple_mob/animal/passive/pillbug,/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"wZ" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"xa" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"xc" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/mineral/sif,/area/vr/powered) +"xe" = (/obj/random/maintenance/engineering,/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"xh" = (/turf/unsimulated/wall/seperator,/area/vr/powered) +"xi" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/plasteel,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"xj" = (/obj/structure/sign/science{pixel_y = 32},/turf/space,/area/space) +"xk" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"xl" = (/obj/structure/table/bench/wooden,/obj/structure/flora/pottedplant/shoot{pixel_y = 9},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"xn" = (/obj/structure/cryofeed,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"xo" = (/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"xp" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"xq" = (/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"xr" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/cult,/area/vr/powered) +"xs" = (/mob/living/simple_mob/animal/passive/fish/measelshark,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"xt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"xu" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/implanter/sizecontrol,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/phoron,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/marble,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/rutile,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/toy/character/wizard,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker/unidentified,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/mindbreaker/unidentified,/obj/item/weapon/fluff/squeezetoy,/obj/item/weapon/fluff/zekewatch,/obj/item/weapon/fluff/fidgetspinner/red,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/wood,/area/vr/powered) +"xw" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/weapon/gun/projectile/shotgun/pump/slug,/obj/item/weapon/gun/projectile/shotgun/pump/slug,/obj/item/weapon/gun/projectile/shotgun/pump/slug,/obj/item/weapon/gun/projectile/shotgun/pump/slug,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"xx" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"xy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/vr/powered) +"xz" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"xA" = (/obj/structure/flora/tree/jungle,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"xB" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/vr/powered) +"xC" = (/obj/machinery/door/airlock/multi_tile/metal/mait{icon_state = "door_locked"; id_tag = "kalipso_hatch"; locked = 1; name = "Cargo Hold"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/obj/structure/fans/tiny,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"xD" = (/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/vr/powered) +"xE" = (/obj/item/weapon/material/knife/machete,/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/knife/machete,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"xH" = (/obj/item/weapon/coin/gold,/obj/item/weapon/ore/diamond,/obj/item/stack/material/diamond,/turf/simulated/floor/flock,/area/vr/powered) +"xI" = (/mob/living/simple_mob/animal/passive/lizard,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"xK" = (/obj/machinery/vending/snlvend,/turf/simulated/floor/tiled,/area/vr/powered) +"xL" = (/obj/machinery/door/window/brigdoor/eastleft{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"xM" = (/obj/item/seeds/random,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/wooden_reinforced,/obj/item/weapon/pen,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/vr/powered) +"xN" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"xO" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/red{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"xP" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/monkeysdelight,/turf/simulated/floor/cult,/area/vr/powered) +"xQ" = (/turf/simulated/shuttle/wall,/area/vr/powered) +"xS" = (/obj/effect/catwalk_plated/dark,/obj/effect/catwalk_plated/dark,/turf/space,/area/vr/powered) +"xT" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"xW" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/hectate,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/obj/item/weapon/gun/projectile/automatic/serdy/awp,/obj/machinery/light{dir = 4},/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"xX" = (/obj/effect/floor_decal/plaque{pixel_y = -32},/obj/effect/step_trigger/message{message = "Example text"; once = 0},/turf/simulated/floor/bronze,/area/vr/powered) +"xY" = (/obj/structure/fuel_port{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"xZ" = (/obj/structure/flora/ausbushes/ppflowers,/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"ya" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/vr/powered) +"yb" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/salvageable/console_broken_os,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"yc" = (/mob/living/simple_mob/animal/passive/raccoon_ch,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"yf" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"yg" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"yk" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"yl" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ym" = (/obj/machinery/vending/wardrobe/lawdrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"yo" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/plating,/area/vr/powered) +"yp" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ys" = (/obj/structure/table/rack/shelf/steel,/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/obj/item/ammo_magazine/ammo_box/b12g/pellet,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"yt" = (/obj/structure/window/phoronreinforced,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"yu" = (/mob/living/simple_mob/animal/passive/fish/koi,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"yv" = (/obj/item/weapon/phone,/obj/structure/table/bench/wooden,/obj/machinery/button/windowtint{id = "h-master"; pixel_y = -29},/turf/simulated/floor/wood,/area/vr/powered) +"yx" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"yz" = (/turf/simulated/floor/water/beach{temperature = 311; outdoors = 0},/area/vr/outdoors/powered) +"yC" = (/turf/simulated/wall/r_wall,/area/vr/powered/redbase) +"yD" = (/obj/machinery/chem_master,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"yF" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered) +"yG" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"yH" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled/neutral,/area/vr/powered) +"yI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vr/powered) +"yK" = (/mob/living/simple_mob/construct/wraith{ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered) +"yL" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"yM" = (/obj/item/weapon/miscdisc,/turf/simulated/floor/cult,/area/vr/powered) +"yO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/pirate,/turf/simulated/floor/wood,/area/vr/powered) +"yP" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"yQ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"yR" = (/obj/structure/salvageable/server,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"yS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered) +"yT" = (/turf/simulated/wall/r_wall,/area/vr/outdoors/powered) +"yU" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/vr/powered) +"yV" = (/obj/structure/table/steel_reinforced,/obj/item/device/mmi/inert/ai_remote,/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"yW" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"yX" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = 24; pixel_y = 32},/obj/machinery/button/remote/blast_door{dir = 8; id = "kalipsoshutters"; name = "Emergency Lockdown"; pixel_x = 28},/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"yY" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"yZ" = (/obj/item/weapon/storage/box/wormcan/sickly,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered) +"za" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange,/obj/effect/floor_decal/techfloor/corner{dir = 5},/obj/structure/sign/electricshock{pixel_y = 32},/turf/simulated/floor/plating,/area/vr/powered) +"zc" = (/obj/machinery/power/shield_generator/charged,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"zd" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/reagent_containers/food/snacks/sliceable/chocolatecake,/turf/simulated/floor/cult,/area/vr/powered) +"ze" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/turf/simulated/shuttle/plating,/area/vr/powered) +"zf" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/closet/walllocker/emerglocker/east,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"zh" = (/obj/structure/prop/machine/tgmc_console4/starts_on,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"zi" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"zm" = (/obj/random/toolbox,/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate,/obj/machinery/light/poi,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"zn" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/bmarble,/area/vr/powered) +"zo" = (/obj/item/weapon/gun/projectile/heavysniper,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"zq" = (/obj/structure/bed/chair/comfy/red{pixel_y = 0; dir = 4},/obj/structure/plushie/ian{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"zr" = (/obj/structure/table/steel_reinforced,/obj/fiftyspawner/phoronglass,/turf/simulated/floor/airless,/area/vr/powered) +"zt" = (/obj/item/weapon/airlock_electronics,/obj/item/weapon/airlock_electronics,/obj/item/weapon/cell/high,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"zv" = (/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/space,/area/space) +"zy" = (/obj/structure/table/marble,/obj/structure/window/phoronreinforced,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/purple,/turf/simulated/floor/cult,/area/vr/powered) +"zA" = (/obj/mecha/combat/fighter/gunpod/recon{dir = 4},/turf/space,/area/space) +"zC" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"zD" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"zE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"zF" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/floor/plating,/area/vr/powered) +"zG" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/powered) +"zH" = (/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult,/area/vr/powered) +"zI" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/vr/powered) +"zJ" = (/obj/structure/closet/cabinet,/obj/item/weapon/storage/wallet/random,/obj/item/weapon/towel/random,/obj/item/weapon/melee/umbrella/random,/obj/random/ammo,/obj/random/cigarettes,/obj/random/contraband,/obj/random/junk,/obj/random/maintenance/security,/turf/simulated/floor/wood,/area/vr/powered) +"zL" = (/obj/machinery/vending/donksoft{req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"zM" = (/obj/machinery/chem_master,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"zN" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/white,/area/vr/powered) +"zO" = (/obj/structure/salvageable/computer,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"zP" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/vr/powered) +"zQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/acid{pixel_y = 30},/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"zS" = (/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"zT" = (/turf/simulated/floor/flock{temperature = 311},/area/vr/powered) +"zU" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/airless,/area/vr/powered) +"zV" = (/obj/fiftyspawner/rods,/turf/simulated/floor/tiled,/area/vr/powered) +"zX" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/airless,/area/vr/powered) +"zY" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Aa" = (/obj/structure/railing/grey{dir = 1},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"Ab" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/airless,/area/vr/powered) +"Ac" = (/obj/structure/sign/science{pixel_y = -32},/turf/space,/area/space) +"Ae" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Af" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ak" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced{dir = 1},/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/brown,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered) +"Al" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/toolbox/syndicate/powertools,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Am" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/plating,/area/vr/powered) +"An" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/plasteel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ao" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Ap" = (/obj/structure/railing{dir = 4},/obj/structure/flora/lily3,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"Aq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Ar" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"As" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/phoron,/obj/fiftyspawner/osmium,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"At" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Au" = (/obj/machinery/door/airlock/maintenance/int,/obj/structure/fans/hardlight,/turf/simulated/floor/airless,/area/vr/powered) +"Aw" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ax" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered) +"Ay" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/salvageable/computer_os,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"AA" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"AB" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/greengrid/nitrogen,/area/vr/powered) +"AC" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/turf/simulated/floor/water/beach{dir = 4; temperature = 311},/area/vr/outdoors/powered) +"AD" = (/obj/effect/catwalk_plated/dark,/obj/machinery/shipsensors,/turf/simulated/floor/airless,/area/vr/powered) +"AF" = (/obj/machinery/door/airlock/glass_centcom{name = "RnD and Fabrication"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"AH" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"AI" = (/obj/item/device/kit/paint/ripley/death,/obj/item/device/kit/paint/ripley/flames_blue,/obj/item/device/kit/paint/ripley/flames_red,/obj/item/device/kit/paint/ripley,/obj/structure/table/rack/shelf/steel,/obj/machinery/button/remote/airlock{desiredstate = 1; dir = 1; id = "kalipso_hatch"; name = "Rear Hatch Control"; pixel_y = -29; specialfunctions = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"AL" = (/obj/structure/table/bench/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"AN" = (/obj/structure/bed/chair/wood/wings{dir = 1},/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/cult,/area/vr/powered) +"AO" = (/obj/structure/prop/machine/tgmc_console3/starts_on,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"AP" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/obj/structure/sink{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"AQ" = (/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/shuttle/window,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"AR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"AS" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"AU" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/iron,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"AW" = (/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered) +"AX" = (/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"Ba" = (/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Bd" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Be" = (/obj/structure/sign/deck1,/turf/simulated/wall/skipjack,/area/vr/powered) +"Bh" = (/obj/effect/zone_divider,/obj/effect/zone_divider,/turf/unsimulated/wall/seperator,/area/vr/powered) +"Bi" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/stack/material/gold,/obj/item/clothing/gloves/ring/material/gold,/obj/item/clothing/ears/earring/stud/diamond,/obj/item/weapon/pickaxe/gold,/turf/simulated/floor/flock,/area/vr/powered) +"Bj" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/shuttle/plating,/area/vr/powered) +"Bl" = (/mob/living/simple_mob/construct/wraith{dir = 1; ai_holder_type = null},/turf/simulated/floor/cult,/area/vr/powered) +"Bn" = (/obj/item/weapon/pack/cardemon,/turf/simulated/floor/wood,/area/vr/powered) +"Bo" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/tiled,/area/vr/powered) +"Bp" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"Bq" = (/obj/item/weapon/material/twohanded/sledgehammer/mjollnir,/turf/simulated/floor/cult,/area/vr/powered) +"Br" = (/obj/machinery/disperser/middle{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/effect/catwalk_plated/dark,/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/airless,/area/vr/powered) +"Bt" = (/obj/item/clothing/mask/muzzle,/turf/simulated/floor,/area/vr/powered) +"Bu" = (/obj/structure/cliff/automatic/corner,/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"Bv" = (/obj/structure/prop/statue/lion,/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/powered) +"Bw" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/landmark/loot_spawn,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Bx" = (/obj/structure/table/steel_reinforced,/obj/item/ammo_magazine/rpd,/obj/item/ammo_magazine/rpd,/obj/item/ammo_magazine/rpd,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered) +"By" = (/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Bz" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"BB" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"BD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/hosdouble,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"BE" = (/obj/structure/table/rack/shelf/steel,/obj/item/stolenpackage,/obj/random/contraband/nofail,/obj/random/contraband/nofail,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"BF" = (/obj/structure/bed/chair/oldsofa/right{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor/wood,/area/vr/powered) +"BH" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sausage/battered,/turf/simulated/floor/cult,/area/vr/powered) +"BJ" = (/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 25},/obj/structure/table/reinforced,/obj/item/weapon/storage/quickdraw/syringe_case,/obj/item/weapon/storage/quickdraw/syringe_case,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"BK" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"BL" = (/obj/structure/prop/rock/small,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"BO" = (/obj/effect/catwalk_plated/white,/turf/space,/area/space) +"BP" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"BQ" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/cans/root_beer,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"BR" = (/obj/structure/flora/smallbould,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"BS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"BT" = (/obj/structure/salvageable/console_broken_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"BU" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"BV" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/vr/powered) +"BW" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"BX" = (/obj/structure/prop/rock/round,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"BY" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"BZ" = (/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"Cb" = (/obj/machinery/door/airlock/angled_tgmc/wide/security{dir = 4},/obj/structure/fans/hardlight/colorable{color = "red"},/turf/simulated/shuttle/plating,/area/vr/powered) +"Cf" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/shuttle/plating,/area/vr/powered) +"Ch" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/vr/powered) +"Cj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/machinery/meter,/turf/simulated/floor/airless,/area/vr/powered) +"Ck" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "estrella_pump"},/turf/simulated/shuttle/plating,/area/vr/powered) +"Cl" = (/obj/machinery/access_button{master_tag = null; pixel_y = 27; req_one_access = null},/obj/effect/map_helper/airlock/door/ext_door,/obj/effect/map_helper/airlock/button/ext_button,/obj/machinery/door/airlock/hatch,/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Cn" = (/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Co" = (/turf/simulated/floor/water/beach{dir = 4; temperature = 293.15},/area/vr/outdoors/powered) +"Cp" = (/obj/structure/table/glass,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/obj/item/weapon/storage/backpack/dufflebag/syndie,/turf/simulated/floor/tiled,/area/vr/powered) +"Cq" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Cr" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Ct" = (/obj/machinery/holoplant,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Cv" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"Cw" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/optable,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Cy" = (/obj/machinery/atmospherics/pipe/tank/phoron/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/atmos/phoron{pixel_x = 32},/turf/simulated/floor/plating,/area/vr/powered) +"Cz" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/clothing/mask/bandana/gold,/obj/item/weapon/coin/diamond,/turf/simulated/floor/flock,/area/vr/powered) +"CA" = (/obj/structure/bed/chair/oldsofa/right,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"CC" = (/obj/item/weapon/pack/cardemon,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"CE" = (/obj/structure/prop/rock/small/wateralt,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"CF" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"CH" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/bonemed{pixel_y = 1},/obj/item/weapon/storage/firstaid/clotting{pixel_y = -3},/obj/machinery/recharger/wallcharger{pixel_x = 34},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"CI" = (/obj/structure/cult/pylon,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"CJ" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/airless,/area/vr/powered) +"CK" = (/turf/simulated/shuttle/floor/black,/area/vr/powered) +"CL" = (/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Scrubber to Waste"},/turf/simulated/floor/airless,/area/vr/powered) +"CM" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"CN" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/cult,/area/vr/powered) +"CP" = (/obj/structure/bed/chair/oldsofa,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"CQ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"CR" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"CS" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"CT" = (/obj/structure/closet/walllocker_double/hydrant/north,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"CX" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"CZ" = (/turf/simulated/wall/sandstone,/area/vr/powered) +"Da" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Db" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/spellburger,/turf/simulated/floor/cult,/area/vr/powered) +"De" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Dg" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Dh" = (/obj/structure/table/marble,/obj/item/weapon/material/knife/plastic,/turf/simulated/floor,/area/vr/powered) +"Dk" = (/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/obj/item/toy/plushie/susred,/turf/simulated/floor/wood,/area/vr/powered) +"Dm" = (/mob/living/simple_mob/animal/passive/bird/parrot/kea,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Dn" = (/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/cult,/area/vr/powered) +"Do" = (/obj/structure/salvageable/machine{name = "Life Support Console"},/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Dr" = (/obj/structure/table/fancyblack,/obj/item/trash/plate,/obj/item/organ/internal/heart,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/wood,/area/vr/powered) +"Dt" = (/obj/structure/bed/chair/oldsofa/left,/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"Du" = (/obj/machinery/chemical_dispenser/ert/specialops{pixel_y = 7},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Dv" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"Dw" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Dx" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/outdoors/powered) +"Dy" = (/obj/structure/table/marble,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"DA" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"DB" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered) +"DC" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"DD" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"DJ" = (/obj/machinery/gear_dispenser/suit/commonwealth,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"DN" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"DP" = (/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"DR" = (/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"DS" = (/obj/structure/cult/talisman,/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"DT" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/airless,/area/vr/powered) +"DV" = (/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"DY" = (/turf/simulated/shuttle/wall/no_join{base_state = "orange"; icon = 'icons/turf/shuttle_orange.dmi'; icon_state = "orange"},/area/vr/powered) +"Eb" = (/obj/machinery/door/blast/multi_tile/four_tile_hor_sec,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Ec" = (/obj/machinery/vending/snix,/turf/simulated/floor/tiled,/area/vr/powered) +"Ed" = (/obj/effect/overlay/palmtree_r,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Ee" = (/mob/living/simple_mob/construct/juggernaut/behemoth{ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"Ef" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Eg" = (/obj/structure/railing,/obj/effect/step_trigger/teleporter/bridge/north_to_south,/turf/simulated/floor/water/beach{dir = 4; temperature = 311},/area/vr/outdoors/powered) +"Eh" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/obj/structure/sign/department/shield{pixel_x = 32},/turf/simulated/floor/plating,/area/vr/powered) +"Ei" = (/obj/structure/railing{dir = 1},/obj/effect/decal/remains,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"Ek" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/secure/briefcase/nerd_pack_med,/obj/item/weapon/storage/secure/briefcase/nerd_pack_med,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Em" = (/obj/effect/catwalk_plated/dark,/obj/effect/catwalk_plated/dark,/turf/space,/area/space) +"Eo" = (/turf/simulated/floor/carpet/purcarpet,/area/vr/powered) +"Ep" = (/obj/structure/closet,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"Eq" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"Er" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Et" = (/obj/structure/curtain/open,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Eu" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Ew" = (/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"EA" = (/obj/machinery/vending/engineering{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"EB" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/sign/department/drones{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"EC" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ED" = (/obj/effect/floor_decal/corner/brown/border{dir = 5},/obj/effect/floor_decal/spline/fancy/wood{dir = 5},/turf/simulated/floor/wood,/area/vr/powered) +"EE" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Scrubber to Waste"},/turf/simulated/floor/airless,/area/vr/powered) +"EG" = (/obj/item/weapon/material/fishing_net,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered) +"EH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband/nofail,/obj/fiftyspawner/steel,/obj/fiftyspawner/phoronrglass,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"EI" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/shoes/magboots/adv,/obj/item/clothing/shoes/magboots/adv,/obj/item/clothing/shoes/magboots/adv,/obj/item/clothing/shoes/magboots/adv,/turf/simulated/floor/cult,/area/vr/powered) +"EJ" = (/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"EN" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"EO" = (/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"EQ" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/syndicate/powertools,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"EU" = (/obj/machinery/light{dir = 8},/obj/structure/table/glass,/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = -3; pixel_y = -1},/obj/item/weapon/storage/box/syndie_kit/chameleon{pixel_x = 2; pixel_y = 6},/turf/simulated/floor/tiled,/area/vr/powered) +"EV" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"EY" = (/obj/machinery/shuttle_sensor,/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered) +"EZ" = (/obj/structure/showcase/sign{name = "WARNING: OSHA VIOLATIONS"; desc = "Don't Fall."},/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"Fb" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered) +"Fc" = (/obj/structure/sign/science{pixel_x = 32},/turf/space,/area/space) +"Fd" = (/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"Ff" = (/turf/simulated/floor/water/beach{temperature = 293.15},/area/vr/outdoors/powered) +"Fh" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gib3"},/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "remainsposi"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"Fj" = (/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/plastic,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Fm" = (/obj/structure/fence/door/opened,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Fp" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/cargo,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Fq" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Fr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/bench/standard,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Ft" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"Fu" = (/obj/machinery/airlock_sensor{dir = 1; id_tag = null; pixel_y = -27},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/plating,/area/vr/powered) +"Fv" = (/obj/machinery/door/blast/multi_tile/four_tile_ver_sec,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Fw" = (/obj/structure/fans/hardlight/colorable{color = "red"},/turf/simulated/shuttle/plating,/area/vr/powered) +"Fx" = (/obj/effect/gateway,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"Fz" = (/obj/effect/map_helper/no_tele,/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered) +"FD" = (/obj/effect/floor_decal/spline/fancy{dir = 6},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"FE" = (/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel,/turf/simulated/shuttle/plating,/area/vr/powered) +"FG" = (/obj/machinery/gear_dispenser/suit/autolok,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"FH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"FI" = (/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"FJ" = (/obj/structure/flora/tree/jungle,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"FK" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/obj/item/weapon/storage/belt/utility/full/multitool,/turf/simulated/floor/cult,/area/vr/powered) +"FM" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"FN" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"FO" = (/obj/structure/closet/cabinet,/obj/random/multiple,/obj/random/multiple,/obj/random/multiple,/obj/random/multiple,/obj/random/multiple,/obj/random/toy,/obj/random/toy,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/wood,/area/vr/powered) +"FQ" = (/obj/structure/table/marble{color = "grey"},/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"FR" = (/obj/random/maintenance/security,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"FT" = (/obj/effect/floor_decal/techfloor/corner,/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/cult,/area/vr/powered) +"FV" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"FX" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/gun/launcher/crossbow,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/hyper,/obj/item/weapon/cell/hyper,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"FZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/item/ammo_magazine/m762,/obj/structure/table/rack/shelf/steel,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Gb" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"Gd" = (/obj/machinery/vending/deluxe_dinner,/obj/machinery/light/small,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Gf" = (/obj/structure/shuttle/engine/router,/turf/simulated/shuttle/wall,/area/vr/powered) +"Gg" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/shuttle/engine/heater{dir = 8},/turf/simulated/floor/airless,/area/vr/powered) +"Gh" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "estrella_side_hatch"; locked = 1; req_access = null; req_one_access = null},/obj/machinery/button/remote/airlock{dir = 8; id = "estrella_side_hatch"; name = "Side Hatch Control"; pixel_x = -27; specialfunctions = 4},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/obj/structure/fans/tiny,/turf/simulated/shuttle/plating,/area/vr/powered) +"Gi" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/combat_shield,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/tool/sleeper,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,/obj/item/mecha_parts/mecha_equipment/weapon/energy/flamer/rigged,/turf/simulated/floor/airless,/area/space) +"Gk" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Gl" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/techfloor/orange/corner{dir = 8},/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/floor/plating,/area/vr/powered) +"Gn" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/blue,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"Go" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/ribplate,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Gp" = (/obj/structure/railing,/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered) +"Gr" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Gs" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/vr/powered) +"Gu" = (/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"Gv" = (/obj/machinery/door/window/brigdoor/westleft{req_access = null},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Gw" = (/obj/structure/flora/ausbushes/sunnybush,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"Gx" = (/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"Gz" = (/obj/structure/table/marble,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/vr/powered) +"GA" = (/turf/simulated/wall/cult,/area/vr/powered) +"GB" = (/obj/item/device/tape,/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered) +"GD" = (/obj/structure/table/darkglass,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"GF" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"GG" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light,/turf/simulated/floor/cult,/area/vr/powered) +"GI" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"GK" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"GN" = (/obj/structure/sign/ironhammer,/turf/simulated/wall/skipjack,/area/vr/powered) +"GO" = (/turf/simulated/wall/skipjack,/area/vr/powered) +"GP" = (/turf/simulated/mineral/sif,/area/vr/powered) +"GQ" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -34},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"GR" = (/obj/structure/table/marble,/obj/structure/window/phoronreinforced{dir = 4},/obj/effect/floor_decal/spline/fancy{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/generic,/turf/simulated/floor/cult,/area/vr/powered) +"GS" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"GU" = (/obj/machinery/smartfridge/survival_pod{name = "food storage"},/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_spicy,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_vegan,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_mystery,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_hell,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/burrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/slice/bigbeanburrito/filled,/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/cheesenachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/chipplate/nachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/cubannachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/nachos,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/obj/item/weapon/reagent_containers/food/snacks/tocino,/obj/item/weapon/reagent_containers/food/snacks/tocino,/obj/item/weapon/reagent_containers/food/snacks/tocino,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"GV" = (/obj/structure/flora/lily2,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"GY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"GZ" = (/obj/effect/decal/remains,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"Hb" = (/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/structure/table/rack/shelf/steel,/obj/item/trash/rkibble{pixel_x = 8},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7; pixel_y = 14},/obj/item/trash/rkibble{pixel_x = -7},/obj/item/trash/rkibble{pixel_x = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Hd" = (/obj/structure/closet/walllocker_double/hydrant/east,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/techfloor/orange/corner{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"He" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"Hf" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/wood,/area/vr/powered) +"Hg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Hh" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/paper{desc = ""; info = "Due to breaking the space time continuum we have despawned the pods for performance reasons."; name = "Changelog"},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Hi" = (/obj/structure/table/bench/glass,/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered) +"Hj" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/rofflewaffles,/turf/simulated/floor/cult,/area/vr/powered) +"Hk" = (/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/outdoors/powered) +"Hl" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 5},/obj/item/device/soulstone{pixel_y = 9; pixel_x = 5},/obj/item/device/soulstone{pixel_y = 9; pixel_x = -2},/obj/item/device/soulstone{pixel_y = 3; pixel_x = 5},/obj/item/device/soulstone{pixel_y = 4; pixel_x = -2},/obj/item/device/soulstone{pixel_y = -3; pixel_x = 5},/obj/item/device/soulstone{pixel_y = -3; pixel_x = -3},/turf/simulated/floor/cult,/area/vr/powered) +"Hm" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -30},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Hn" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ho" = (/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/space) +"Hs" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full{pixel_y = 5},/obj/item/device/radio/intercom{desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; pixel_y = -21; wires = 7},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Hv" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/plating,/area/vr/powered) +"Hw" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/gun/projectile/automatic/serdy/rpd,/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered) +"Hx" = (/obj/machinery/vending/wardrobe/janidrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Hz" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"HD" = (/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/cult,/area/vr/powered) +"HE" = (/obj/structure/table/rack,/obj/item/weapon/makeover,/obj/structure/curtain/open/bed,/obj/item/clothing/under/swimsuit/fluff/penelope,/turf/simulated/floor/wood,/area/vr/powered) +"HF" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"HI" = (/obj/structure/closet/secure_closet/engineering_welding{req_access = null},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"HJ" = (/turf/simulated/floor/wood,/area/vr/powered) +"HN" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"HO" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/vr/powered) +"HP" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/obj/item/clothing/head/helmet/combat/USDF,/obj/item/clothing/head/helmet/combat/USDF,/obj/item/clothing/suit/armor/combat/USDF,/obj/item/clothing/suit/armor/combat/USDF,/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"HQ" = (/obj/machinery/bodyscanner,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"HT" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"HU" = (/obj/structure/outcrop/uranium,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"HW" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = 6},/obj/item/weapon/reagent_containers/glass/beaker/noreact{pixel_x = -6},/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"HX" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"HY" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/glass,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"HZ" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/vr/powered) +"Ie" = (/obj/structure/bed/chair/oldsofa/corner{dir = 4},/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered) +"If" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/turf/simulated/floor/plating,/area/vr/powered) +"Ih" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ij" = (/turf/simulated/floor/gorefloor,/area/vr/outdoors/powered) +"In" = (/obj/machinery/vending/giftvendor,/turf/simulated/floor/tiled,/area/vr/powered) +"Ip" = (/obj/vehicle/boat{dir = 8},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"Iq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/obj/item/weapon/gun/energy/locked/frontier/unlocked,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Ir" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Is" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/cult,/area/vr/powered) +"Iu" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"Iw" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Iy" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Iz" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"IA" = (/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"IC" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/machinery/shower{pixel_y = 20},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"IE" = (/obj/structure/bed/chair/oldsofa/left,/turf/simulated/floor/wood,/area/vr/powered) +"II" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled,/area/vr/powered) +"IJ" = (/obj/structure/salvageable/console_os,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"IK" = (/obj/structure/prop/rock/flat,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"IL" = (/obj/structure/table/rack/shelf/steel,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/awp,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/obj/item/ammo_magazine/hectate,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"IM" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"IN" = (/obj/structure/sink,/turf/simulated/floor/wood,/area/vr/powered) +"IO" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/gygax/old,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"IP" = (/turf/simulated/wall/sandstonediamond,/area/vr/outdoors/powered) +"IR" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/smallbould,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"IS" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/plating,/area/vr/powered) +"IU" = (/obj/structure/table/marble{color = "grey"},/obj/item/weapon/storage/firstaid/combat{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/combat,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"IV" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_inner"; locked = 1; name = "Internal Access"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/vr/powered) +"IX" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"IZ" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes/sarucubes,/obj/item/weapon/storage/box/monkeycubes/neaeracubes,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Ja" = (/obj/structure/sign/kiddieplaque{name = "Kalipso: Modular fabrication shuttle"; pixel_x = 32},/turf/space,/area/space) +"Jb" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Jc" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Jd" = (/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"Jf" = (/obj/machinery/floorlayer,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Jh" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Jj" = (/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/outdoors/powered) +"Jl" = (/obj/machinery/light{dir = 8},/obj/structure/table/rack/shelf/steel,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/item/ammo_magazine/s357,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Jm" = (/obj/effect/landmark/virtual_reality{name = "Beach"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Jp" = (/turf/simulated/floor/water/beach{dir = 5; temperature = 311},/area/vr/outdoors/powered) +"Jq" = (/obj/machinery/vending/loadout/accessory,/turf/simulated/floor/tiled,/area/vr/powered) +"Jr" = (/obj/structure/cryofeed{dir = 4},/turf/simulated/wall/rdshull,/area/vr/powered) +"Js" = (/obj/effect/landmark/virtual_reality{name = "Construction Site"},/turf/simulated/floor/tiled,/area/vr/powered) +"Jx" = (/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered) +"Jy" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/clusterbang,/turf/simulated/floor/airless,/area/vr/powered) +"Jz" = (/obj/structure/flora/tree/jungle,/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"JC" = (/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"JD" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"JE" = (/obj/machinery/gear_dispenser/suit/aether,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"JF" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/phoron{amount = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"JH" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"JI" = (/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/obj/structure/fans/tiny,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"JJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"JL" = (/obj/structure/shuttle/window,/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/plating,/area/vr/powered) +"JM" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain,/obj/item/weapon/pen/chameleon,/obj/item/device/gps/advanced/science,/obj/machinery/button/remote/blast_door{id = "estrella_blast"; name = "remote blast shielding control"; pixel_x = -1; pixel_y = -26},/turf/simulated/floor/wood,/area/vr/powered) +"JN" = (/turf/simulated/wall/r_wall,/area/vr/powered) +"JQ" = (/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"JR" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 10},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"JS" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/armor/alien,/obj/item/mecha_parts/mecha_equipment/crisis_drone/rad,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/lmg/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy/rigged,/obj/item/mecha_parts/mecha_equipment/weapon/energy/medigun,/turf/simulated/floor/airless,/area/space) +"JU" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/plating,/area/vr/powered) +"JV" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"JX" = (/obj/structure/toilet{dir = 4},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"JY" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/phoron/cold,/obj/effect/floor_decal/techfloor/orange/corner,/turf/simulated/floor/plating,/area/vr/powered) +"JZ" = (/obj/structure/lattice,/obj/effect/blocker,/turf/space,/area/space) +"Ka" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Kb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Kc" = (/obj/structure/plushie/ian{dir = 4},/turf/simulated/floor/gorefloor2,/area/vr/outdoors/powered) +"Kd" = (/obj/structure/simple_door/flock,/turf/simulated/floor/flock,/area/vr/powered) +"Ke" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/floor/airless,/area/vr/powered) +"Kh" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"Ki" = (/obj/structure/prop/rock/watersharp,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"Kk" = (/obj/effect/floor_decal/techfloor{dir = 8},/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Kl" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/vr/powered) +"Km" = (/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"Kn" = (/obj/structure/table/reinforced,/obj/item/device/gps/advanced/science,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"Ko" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"Kp" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/vr/powered) +"Kq" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/shuttle/plating,/area/vr/powered) +"Kr" = (/obj/structure/prop/rock/sharp,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"Ks" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/sunnybush,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"Ku" = (/obj/structure/table/fancyblack,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/turf/simulated/floor/wood,/area/vr/powered) +"Ky" = (/obj/machinery/door/blast/multi_tile/four_tile_hor_sec{icon_state = "open"; opacity = 0; autoclose = 0; density = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Kz" = (/obj/structure/flora/bboulder1,/obj/structure/flora/bboulder1,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"KA" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/armor/military,/obj/item/mecha_parts/component/gas/reinforced,/obj/item/mecha_parts/mecha_equipment/omni_shield,/obj/item/mecha_parts/mecha_equipment/tool/jetpack,/obj/item/mecha_parts/mecha_equipment/tool/passenger,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/turf/simulated/floor/airless,/area/space) +"KD" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/durasteel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"KE" = (/obj/machinery/sleeper{dir = 4; emagged = 1; initial_bin_rating = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"KF" = (/obj/structure/cliff/automatic,/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"KG" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"KI" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/vr/powered) +"KJ" = (/obj/structure/flora/log1,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"KK" = (/obj/machinery/vending/fishing,/turf/simulated/floor/tiled,/area/vr/powered) +"KL" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/purple{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"KM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"KN" = (/obj/machinery/computer/operating{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"KO" = (/obj/structure/closet/walllocker_double/hydrant/east,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"KP" = (/obj/machinery/power/thermoregulator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"KR" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"KS" = (/obj/structure/window/reinforced/survival_pod,/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"KT" = (/obj/item/seeds/random,/obj/item/seeds/random,/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/vr/powered) +"KU" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/fiftyspawner/plasteel,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"KV" = (/obj/machinery/vending/weeb,/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"KW" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"KX" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"KY" = (/obj/item/clothing/head/helmet/bulletproof,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"KZ" = (/obj/structure/bed/chair/bay/comfy/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"La" = (/obj/structure/flora/tree/bigtree,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"Lb" = (/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Lc" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/ship_munition/disperser_charge/fire,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ld" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/closet/walllocker/emerglocker/west,/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"Li" = (/mob/living/simple_mob/construct/wraith{dir = 1; ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"Lj" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"Lk" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ll" = (/obj/effect/catwalk_plated/white,/obj/machinery/light/small{dir = 1},/turf/space,/area/space) +"Lm" = (/obj/machinery/atmospherics/binary/circulator,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/vr/powered) +"Ln" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Lo" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/obj/machinery/computer/rdconsole/core{dir = 4; req_access = null},/turf/simulated/shuttle/plating,/area/vr/powered) +"Lp" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Lq" = (/obj/machinery/access_button{master_tag = null; pixel_y = 27; req_one_access = null},/obj/effect/map_helper/airlock/door/int_door,/obj/effect/map_helper/airlock/button/int_button,/obj/machinery/door/airlock/hatch,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Ls" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/fiftyspawner/plasteel,/obj/structure/closet/alien{color = "grey"; desc = "Eldritch carved locker."; name = "rockformed locker"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Lt" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 8; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/vr/powered) +"Lu" = (/obj/structure/bed/chair/wood/wings,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Lv" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/floortube/flicker{pixel_y = -2},/turf/simulated/floor/cult,/area/vr/powered) +"Lw" = (/mob/living/simple_mob/construct/wraith{dir = 8; ai_holder_type = null},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"Lx" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Ly" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/obj/structure/fuel_port{pixel_x = 30},/obj/machinery/light/small/emergency{dir = 4},/turf/simulated/floor/plating,/area/vr/powered) +"LF" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"LH" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/machinery/reagentgrinder,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"LJ" = (/obj/effect/catwalk_plated/dark,/turf/space,/area/space) +"LK" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/airless,/area/vr/powered) +"LL" = (/obj/machinery/artifact_scanpad,/obj/effect/simple_portal/linked,/obj/effect/map_effect/interval/effect_emitter/sparks,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"LM" = (/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"LN" = (/obj/item/pizzavoucher,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"LO" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/vr/powered) +"LQ" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"LR" = (/obj/machinery/atmospherics/pipe/manifold4w/visible,/obj/machinery/meter,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/plating,/area/vr/powered) +"LT" = (/obj/machinery/door/airlock/maintenance/medical{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"LY" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Ma" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/wood,/area/vr/powered) +"Mb" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/airless,/area/space) +"Mc" = (/obj/structure/flora/tree/jungle_small,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Md" = (/obj/machinery/light{dir = 8},/obj/item/weapon/paper_bin,/obj/structure/table/wooden_reinforced,/obj/item/weapon/pen/fountain,/turf/simulated/floor/wood,/area/vr/powered) +"Me" = (/obj/structure/table/marble{color = "grey"},/obj/structure/window/phoronreinforced,/obj/effect/floor_decal/spline/fancy,/obj/item/weapon/reagent_containers/food/condiment/small/packet/crayon/orange,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/cult,/area/vr/powered) +"Mf" = (/obj/item/weapon/storage/backpack/holding,/turf/simulated/floor/cult,/area/vr/powered) +"Mg" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/vr/powered) +"Mo" = (/obj/structure/table/marble,/obj/item/weapon/flame/candle/candelabra/everburn,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Mq" = (/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/vr/powered) +"Mr" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Ms" = (/obj/structure/salvageable/computer,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Mt" = (/obj/fiftyspawner/uranium,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/machinery/power/port_gen/pacman/super,/turf/simulated/floor/tiled,/area/vr/powered) +"Mu" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Mv" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Mx" = (/obj/structure/cryofeed{dir = 2},/turf/simulated/wall/rdshull,/area/vr/powered) +"My" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Mz" = (/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/plasteel{amount = 30},/obj/item/stack/material/plasteel{amount = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"MB" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/powered) +"MF" = (/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"MG" = (/obj/item/weapon/spacecash/ewallet{worth = 69000},/obj/structure/table/steel,/obj/item/weapon/spacecash/ewallet{worth = 69000},/turf/simulated/floor/tiled,/area/vr/powered) +"MI" = (/turf/unsimulated/wall,/area/vr/outdoors/powered) +"MJ" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"ML" = (/obj/structure/cult/talisman,/obj/effect/floor_decal/spline/fancy{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"MO" = (/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/prop/statue/phoron{pixel_y = 0; pixel_x = 16},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"MP" = (/obj/item/toy/plushie/susred,/turf/simulated/floor/cult,/area/vr/powered) +"MR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/fiftyspawner/plasteel,/turf/simulated/floor,/area/vr/powered) +"MU" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"MV" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"MW" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"MX" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"MY" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/airless,/area/vr/powered) +"MZ" = (/obj/item/weapon/photo,/obj/item/weapon/photo{pixel_x = 4},/obj/structure/table/bench/wooden,/turf/simulated/floor/wood,/area/vr/powered) +"Na" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/flora/pottedplant/unusual,/obj/structure/table/bench/marble,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Nb" = (/obj/structure/flora/ausbushes/palebush,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Nc" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Ne" = (/obj/structure/bed/alien,/obj/structure/curtain/open/privacy,/obj/item/weapon/bedsheet/medical,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Nf" = (/obj/structure/table/marble,/obj/item/weapon/material/knife/hook,/turf/simulated/floor,/area/vr/powered) +"Ng" = (/turf/simulated/mineral/alt{temperature = 293.15},/area/vr/powered) +"Ni" = (/obj/machinery/vending/engivend{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"Nj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Nk" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 31},/turf/simulated/floor/plating,/area/vr/powered) +"Nl" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Nm" = (/obj/structure/flora/tree/jungle_small,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"Nn" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"No" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/vr/powered) +"Np" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Nq" = (/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/outdoors/powered) +"Ns" = (/obj/machinery/vending/wardrobe/robodrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Nt" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/odysseus/murdysseus,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Nu" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/closet/walllocker_double/hydrant/east,/obj/structure/closet/walllocker/emerglocker/south,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/vr/powered) +"Ny" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered) +"Nz" = (/obj/machinery/disperser/front{dir = 1},/turf/simulated/floor/airless,/area/vr/powered) +"NB" = (/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/spline/fancy/wood{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"ND" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/pandenata,/turf/simulated/floor/cult,/area/vr/powered) +"NE" = (/obj/structure/table/fancyblack,/obj/item/weapon/bikehorn/tinytether{pixel_y = 5; pixel_x = 2},/obj/item/weapon/bikehorn/tinytether{pixel_y = 11; pixel_x = 8},/obj/item/weapon/paperplane{dir = 4; pixel_y = 2; pixel_x = -9},/turf/simulated/floor/wood,/area/vr/powered) +"NF" = (/obj/structure/salvageable/machine,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"NG" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"NJ" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"NN" = (/obj/structure/flora/smallbould,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"NO" = (/obj/structure/cult/pylon,/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"NQ" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "gibup1_flesh"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"NS" = (/mob/living/simple_mob/construct/juggernaut/behemoth{ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"NT" = (/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"NU" = (/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"NV" = (/obj/machinery/door/airlock/angled_tgmc/wide/medical,/turf/simulated/shuttle/plating,/area/vr/powered) +"NW" = (/obj/structure/salvageable/server,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Oa" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/random/junk,/turf/simulated/floor/airless,/area/vr/powered) +"Ob" = (/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Oc" = (/obj/random/mob/fish,/turf/simulated/floor/water/deep{outdoors = 0; temperature = 311},/area/vr/powered) +"Od" = (/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"Oe" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "estrella"; name = "exterior access button"; pixel_y = 26},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/vr/powered) +"Of" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/door/window/northright{dir = 4; name = "Medical booth"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Og" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"Oh" = (/turf/simulated/mineral/sif,/area/vr/outdoors/powered) +"Oi" = (/obj/effect/fake_sun{possible_light_setups = list(list("brightness"=6,"color"="#abfff7"),list("brightness"=4,"color"="#F4EA55"),list("brightness"=2.5,"color"="#EE9AC6"),list("brightness"=1.5,"color"="#F07AD8"),list("brightness"=1.5,"color"="#61AEF3"))},/turf/simulated/floor/outdoors/newdirt_nograss{temperature = 293.15},/area/vr/outdoors/powered) +"Oj" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/turf/simulated/floor/cult,/area/vr/powered) +"Ok" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/maintenance/research,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Ol" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Om" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/light/poi{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"On" = (/mob/living/simple_mob/construct/harvester{ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"Op" = (/obj/item/weapon/coin/gold,/obj/item/stack/material/gold,/turf/simulated/floor/flock,/area/vr/powered) +"Or" = (/turf/simulated/wall/r_wall,/area/vr/powered/bluebase) +"Os" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Ot" = (/obj/random/soap,/obj/random/soap,/obj/random/soap,/obj/structure/table/marble,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Ou" = (/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"Ow" = (/turf/simulated/floor/wood/alt/panel{temperature = 311},/area/vr/powered) +"Oy" = (/turf/simulated/floor/airless,/area/vr/powered) +"Oz" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/emp,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"OB" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"OC" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/diamond,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered) +"OE" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult,/area/vr/powered) +"OF" = (/obj/structure/closet/cabinet{pixel_y = 20},/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/gold,/obj/item/weapon/ore/osmium,/obj/item/weapon/ore/silver,/obj/item/weapon/ore/uranium,/obj/item/weapon/ore/bluespace_crystal,/obj/item/clothing/head/sombrero,/obj/item/clothing/head/sombrero,/obj/item/clothing/suit/poncho,/obj/item/clothing/accessory/poncho/thermal/red,/obj/item/clothing/accessory/poncho/thermal/security,/obj/item/clothing/accessory/poncho/thermal/green,/obj/item/clothing/accessory/poncho/red,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/toy/bosunwhistle/fluff/strix,/obj/item/weapon/blobcore_chunk,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/vr/powered) +"OG" = (/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"OH" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/uranium,/obj/item/stack/material/phoron{amount = 5; pixel_x = -1; pixel_y = -3},/obj/item/stack/material/gold{amount = 5},/obj/item/stack/material/diamond,/obj/item/stack/material/silver{amount = 5; pixel_x = 2; pixel_y = 4},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"OI" = (/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"OK" = (/mob/living/simple_mob/construct/wraith{ai_holder_type = null},/turf/simulated/floor/redgrid/animated,/area/vr/powered) +"OL" = (/obj/item/weapon/storage/belt/soulstone/full,/turf/simulated/floor/cult,/area/vr/powered) +"OP" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/shuttle/plating,/area/vr/powered) +"OQ" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"OR" = (/obj/fiftyspawner/gold,/obj/item/weapon/coin/diamond,/obj/item/instrument/violin/golden,/turf/simulated/floor/flock,/area/vr/powered) +"OT" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "mgibbl1"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"OU" = (/obj/item/weapon/bedsheet/piratedouble,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/vr/powered) +"OV" = (/obj/machinery/vending/wardrobe/scidrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"OW" = (/obj/vehicle/boat/dragon/sifwood{dir = 8},/obj/structure/lattice,/turf/space,/area/space) +"OX" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"OY" = (/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Pa" = (/obj/machinery/autolathe{hacked = 1; name = "military autolathe"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Pb" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Pc" = (/obj/effect/simple_portal/linked,/obj/effect/floor_decal/spline/fancy{icon_state = "spline_fancy_full"},/turf/simulated/floor/lava/harmless,/area/vr/powered) +"Pd" = (/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Pf" = (/obj/machinery/porta_turret/alien{faction = "neutral"},/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/floor/cult,/area/vr/powered) +"Ph" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Pk" = (/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"Pl" = (/obj/machinery/vending/security{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Pm" = (/obj/machinery/chemical_analyzer,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Pn" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"Po" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/vr/powered) +"Pq" = (/obj/machinery/door/airlock/angled_tgmc/wide/dropship2,/turf/simulated/shuttle/plating,/area/vr/powered) +"Ps" = (/obj/machinery/disperser/front{dir = 1},/turf/space,/area/space) +"Pt" = (/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"Py" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Pz" = (/obj/structure/closet/wardrobe/grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/under/teshari/undercoat/standard/black_grey,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/black,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/shoes/footwraps,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/color/grey,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/obj/item/clothing/under/permit,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"PD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"PG" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"PH" = (/obj/structure/table/fancyblack,/obj/effect/floor_decal/spline/fancy{dir = 9},/obj/item/weapon/book/tome/imbued{pixel_y = 9},/obj/item/weapon/book/tome/imbued{pixel_y = 6},/obj/item/weapon/book/tome/imbued{pixel_y = 3},/obj/item/weapon/book/tome/imbued{pixel_y = 0},/obj/item/weapon/book/tome/imbued{pixel_y = 0},/turf/simulated/floor/cult,/area/vr/powered) +"PJ" = (/obj/item/clothing/accessory/fluff/zeta_blackwell_1,/turf/simulated/floor/cult,/area/vr/powered) +"PK" = (/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/airless,/area/vr/powered) +"PN" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"PO" = (/obj/structure/bed/chair/oldsofa{dir = 1},/obj/structure/window/phoronreinforced,/turf/simulated/floor/wood,/area/vr/powered) +"PP" = (/obj/effect/landmark/virtual_reality{name = "Abandoned Mech Factory"},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"PR" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"PS" = (/obj/structure/closet/emcloset,/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"PT" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"PU" = (/obj/structure/sign/department/rnd{pixel_y = 32},/obj/structure/table/steel_reinforced,/obj/item/weapon/paper{desc = ""; info = "Due to many exploits we have decided to remove the consoles, I asked for help fixing this but instead I got lousy excuses. So you get no more RD!!"; name = "Angrily Scribbled Note"},/turf/simulated/shuttle/floor/yellow,/area/vr/powered) +"PV" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"PX" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/beaker/bluespace,/obj/item/weapon/reagent_containers/glass/beaker/bluespace{pixel_x = -7},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"PZ" = (/obj/structure/flora/ausbushes/fullgrass,/turf/simulated/mineral/sif,/area/vr/outdoors/powered) +"Qa" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Qc" = (/obj/effect/overlay/palmtree_l,/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Qd" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/airless,/area/vr/powered) +"Qe" = (/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Qg" = (/obj/machinery/atmospherics/valve,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Qi" = (/obj/machinery/light{dir = 1; layer = 3},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Qj" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"Qk" = (/obj/structure/closet,/turf/simulated/floor/carpet/blucarpet,/area/vr/powered) +"Qm" = (/turf/simulated/floor/water{temperature = 293.15},/area/vr/outdoors/powered) +"Qn" = (/obj/structure/table/darkglass,/obj/item/device/defib_kit/loaded,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"Qp" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Qq" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/vr/powered) +"Qs" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/redgrid/off,/area/vr/powered) +"Qv" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/cult,/area/vr/powered) +"Qw" = (/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Qy" = (/obj/vehicle/boat{dir = 8},/obj/structure/lattice,/turf/space,/area/space) +"Qz" = (/obj/structure/flora/bboulder2,/turf/simulated/floor/grass2{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"QA" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/mining,/obj/structure/sign/department/shield{pixel_x = -32},/turf/simulated/floor/plating,/area/vr/powered) +"QB" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"QC" = (/obj/structure/table/bench/marble,/obj/structure/flora/pottedplant/dead{pixel_y = 7},/obj/structure/window/reinforced/polarized{id = "h-master"},/turf/simulated/floor/wood,/area/vr/powered) +"QG" = (/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"QJ" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/item/clothing/under/pants/track,/obj/item/clothing/head/ushanka,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"QL" = (/obj/structure/cliff/automatic{dir = 4},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"QM" = (/turf/simulated/shuttle/wall/flock,/area/vr/powered) +"QO" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/twohanded/fireaxe,/obj/item/weapon/material/twohanded/fireaxe,/turf/simulated/shuttle/floor/black,/area/vr/powered) +"QP" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"QQ" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/manned{faction = "syndicate"},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"QT" = (/obj/effect/decal/cleanable/blood/gibs{color = "red"; icon_state = "mfloor6"},/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"QU" = (/obj/structure/bed/chair/oldsofa{dir = 4},/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered) +"QV" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"QW" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"QX" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"QY" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"QZ" = (/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Ra" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"Rc" = (/obj/machinery/light/small{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/cosmos,/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,/turf/simulated/floor/wood,/area/vr/powered) +"Re" = (/obj/mecha/combat/fighter/gunpod/loaded{dir = 8},/turf/space,/area/space) +"Rf" = (/obj/item/weapon/storage/box/wormcan,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"Rh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/huge,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Rk" = (/turf/simulated/floor/tiled/white,/area/vr/powered) +"Rm" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"Ro" = (/obj/effect/decal/remains/ribcage,/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"Rp" = (/obj/structure/table/glass,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Rq" = (/obj/machinery/meter,/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Rs" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"Ru" = (/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/vr/powered) +"Rv" = (/obj/mecha/combat/fighter/pinnace{dir = 8},/turf/space,/area/space) +"Rw" = (/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -30},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"Ry" = (/turf/simulated/shuttle/plating,/area/vr/powered) +"Rz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"RC" = (/obj/structure/cult/talisman,/turf/simulated/floor/wood,/area/vr/powered) +"RD" = (/obj/item/weapon/stool/padded,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"RE" = (/obj/structure/table/marble,/obj/item/clothing/suit/storage/apron/white,/turf/simulated/floor/tiled/white,/area/vr/powered) +"RF" = (/obj/effect/blocker,/turf/space,/area/space) +"RH" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/engivend{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"RJ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"RK" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/floor/redgrid,/area/vr/powered) +"RM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"RN" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"RQ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband/nofail,/turf/simulated/floor,/area/vr/powered) +"RR" = (/obj/structure/closet/walllocker_double/hydrant/east,/obj/random/contraband/nofail,/obj/random/contraband/nofail,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"RS" = (/obj/effect/floor_decal/techfloor/corner{dir = 4},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"RU" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"RV" = (/obj/structure/window/phoronreinforced{dir = 1},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"RW" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"RZ" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/component/gas/reinforced,/obj/item/mecha_parts/mecha_equipment/hardpoint_actuator,/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/cannon,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/missile_rack/grenade/rigged,/obj/item/mecha_parts/mecha_equipment/wormhole_generator,/turf/simulated/floor/airless,/area/vr/powered) +"Sb" = (/obj/structure/table/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"Sc" = (/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Sf" = (/obj/machinery/vending/wardrobe/genedrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Sh" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/vr/powered) +"Sj" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/vr/powered) +"Sk" = (/obj/machinery/vending/wardrobe/cargodrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Sl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/department/robo{pixel_y = 32},/obj/machinery/mecha_part_fabricator/pros{req_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"So" = (/obj/machinery/pointdefense,/turf/simulated/floor/airless,/area/vr/powered) +"Sp" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = null},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"Sq" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"Sr" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/vr/powered) +"Ss" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"St" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"Su" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"Sv" = (/obj/structure/sign/warning/fire,/turf/simulated/wall/cult,/area/vr/powered) +"Sw" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"Sx" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Sz" = (/obj/machinery/gear_dispenser/suit/autolok,/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"SA" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/item/device/defib_kit/loaded,/turf/simulated/shuttle/floor/white,/area/vr/powered) +"SB" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/material/knife/machete,/obj/item/weapon/material/knife/machete,/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"SD" = (/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/vr/powered) +"SE" = (/obj/structure/closet/alien{name = "container"},/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"SF" = (/obj/random/maintenance,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"SG" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/vr/powered) +"SH" = (/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/floor/redgrid,/area/vr/powered) +"SJ" = (/obj/structure/flora/bboulder1,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"SK" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/floor/airless,/area/vr/powered) +"SL" = (/obj/structure/table/glass,/obj/item/weapon/storage/fancy/candle_box,/obj/random/cigarettes,/turf/simulated/floor/carpet/bcarpet,/area/vr/powered) +"SM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/meter,/turf/simulated/floor/airless,/area/vr/powered) +"SN" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"SO" = (/obj/structure/table/fancyblack,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/turf/simulated/floor/wood,/area/vr/powered) +"SP" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/stack/material/durasteel{material = 50},/obj/item/stack/material/durasteel{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/phoron{material = 50},/obj/item/stack/material/diamond{material = 15},/obj/item/stack/material/gold{material = 25},/obj/item/stack/material/lead{material = 25},/obj/item/stack/material/plastic{material = 50},/obj/item/stack/material/plastic{material = 50},/obj/item/stack/material/platinum{matter = 25},/obj/item/stack/material/silver{material = 25},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/uranium{material = 25},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/clothing/head/welding/demon,/obj/item/clothing/head/welding/knight,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/obj/item/weapon/cell/super,/obj/item/weapon/cell/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass/reinforced{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"SS" = (/obj/machinery/door/airlock/hatch{req_one_access = null},/obj/effect/zone_divider,/obj/structure/fans/tiny,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"ST" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/reishicup,/turf/simulated/floor/cult,/area/vr/powered) +"SV" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"SW" = (/obj/item/weapon/fossil/skull,/turf/simulated/floor/cult,/area/vr/powered) +"SX" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"SY" = (/obj/structure/prop/machine/green_egg,/turf/simulated/floor/flock,/area/vr/powered) +"SZ" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_outer"; locked = 1; name = "External Access"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/blast/regular/open{dir = 4; id = "estrella_blast"; layer = 2; name = "window blast shield"; open_layer = 2},/turf/simulated/shuttle/plating,/area/vr/powered) +"Ta" = (/obj/effect/landmark/virtual_reality{name = "Sci Ship"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Tc" = (/obj/structure/bed/chair/wood/wings{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"Td" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/simulated/floor/wood,/area/vr/powered) +"Tf" = (/obj/structure/toilet{pixel_y = 12},/turf/simulated/floor/tiled/freezer,/area/vr/powered) +"Th" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/purp{dir = 8},/turf/simulated/floor/carpet/gaycarpet,/area/vr/powered) +"Ti" = (/obj/machinery/flasher{id = "procroom2"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Tj" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/turf/simulated/floor/plating,/area/vr/powered) +"Tk" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Tm" = (/obj/structure/fans/hardlight/colorable{color = "red"},/turf/space,/area/space) +"Tp" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chipplate{pixel_y = -7},/obj/item/weapon/reagent_containers/food/snacks/donerkebab{pixel_y = 4},/turf/simulated/floor/wood,/area/vr/powered) +"Tq" = (/obj/screen/alert/highpressure,/turf/space,/area/space) +"Tv" = (/obj/effect/catwalk_plated/dark,/turf/space,/area/vr/powered) +"Tw" = (/obj/structure/bed/double/padded,/turf/simulated/floor/wood/sif/broken,/area/vr/powered) +"Tx" = (/obj/effect/decal/remains/unathi,/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"Ty" = (/obj/structure/table/fancyblack,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/obj/random/cigarettes,/turf/simulated/floor/wood,/area/vr/powered) +"TA" = (/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1},/area/vr/outdoors/powered) +"TB" = (/obj/structure/salvageable/console_os,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"TC" = (/turf/simulated/mineral/alt{temperature = 293.15},/area/vr/outdoors/powered) +"TD" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"TE" = (/obj/structure/outcrop/phoron,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"TG" = (/obj/structure/closet/walllocker_double/kitchen/east{name = "Ration Cabinet"},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"TH" = (/obj/item/weapon/coin/gold,/obj/item/clothing/ears/earring/dangle/gold,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced,/turf/simulated/floor/flock,/area/vr/powered) +"TI" = (/obj/machinery/mech_recharger,/obj/mecha/combat/gygax/old,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"TJ" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/machinery/light/floortube/flicker{pixel_y = 5},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"TK" = (/obj/structure/closet/cabinet,/obj/item/weapon/storage/wallet/random,/obj/item/weapon/towel/random,/obj/item/weapon/melee/umbrella/random,/obj/random/carp_plushie,/obj/random/curseditem,/obj/random/junk,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vr/powered) +"TM" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/cult,/area/vr/powered) +"TO" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/shuttle/plating,/area/vr/powered) +"TP" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/snackplanet/moon,/turf/simulated/floor/cult,/area/vr/powered) +"TQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/holofloor/carpet,/area/vr/powered) +"TT" = (/obj/structure/prop/rock/small/wateralt,/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/outdoors/powered) +"TW" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/jcloset,/obj/item/weapon/mop,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"TZ" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Ue" = (/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Uh" = (/obj/structure/table/reinforced,/obj/item/weapon/stock_parts/scanning_module/adv{pixel_x = 5; pixel_y = 6},/obj/item/weapon/stock_parts/scanning_module/adv{pixel_x = 5; pixel_y = 6},/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/matter_bin/adv,/obj/item/weapon/stock_parts/matter_bin/adv,/obj/item/weapon/stock_parts/manipulator/hyper,/obj/item/weapon/stock_parts/manipulator/hyper,/obj/item/weapon/stock_parts/capacitor/adv,/obj/item/weapon/stock_parts/capacitor/adv,/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"Uj" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/condimentbottles,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/structure/curtain/open/bed,/obj/structure/window/reinforced/polarized{dir = 4; id = "h-kitchen"},/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/tiled/white,/area/vr/powered) +"Uk" = (/obj/machinery/telecomms/allinone,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Ul" = (/obj/effect/zone_divider,/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1},/area/vr/outdoors/powered) +"Um" = (/obj/effect/floor_decal/spline/fancy{dir = 9},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"Uo" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Up" = (/obj/machinery/door/airlock/glass_centcom{name = "Starboard Cannon"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Ur" = (/obj/structure/window/phoronreinforced{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Ut" = (/obj/structure/table/marble,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/wood{temperature = 311},/area/vr/powered) +"Uu" = (/mob/living/simple_mob/vore/bigdragon,/obj/item/ammo_casing/a145,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"Uv" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"Ux" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/poi{dir = 8},/obj/structure/closet/walllocker/emerglocker/west,/turf/simulated/shuttle/plating,/area/vr/powered) +"Uy" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"Uz" = (/obj/machinery/light/floortube/flicker{pixel_y = 13},/turf/simulated/floor/cult,/area/vr/powered) +"UA" = (/turf/simulated/floor/outdoors/newdirt{temperature = 293.15},/area/vr/outdoors/powered) +"UB" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/durand/old,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"UC" = (/obj/effect/landmark/virtual_reality{name = "White Ship"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"UD" = (/obj/machinery/vending/tool{emagged = 1},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"UF" = (/turf/simulated/floor/outdoors/dirt{temperature = 311},/area/vr/outdoors/powered) +"UG" = (/obj/machinery/power/smes/buildable/hybrid,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/vr/powered) +"UI" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/shuttle/plating,/area/vr/powered) +"UJ" = (/obj/effect/floor_decal/spline/fancy{dir = 5},/turf/simulated/floor/cult{icon_state = "cult-narsie"},/area/vr/powered) +"UL" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/coin/diamond,/obj/machinery/light{layer = 3},/turf/simulated/floor/wood,/area/vr/powered) +"UO" = (/obj/effect/floor_decal/spline/fancy{dir = 1},/obj/effect/floor_decal/spline/fancy,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"UQ" = (/obj/structure/fence/corner{dir = 8},/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"UR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"US" = (/obj/structure/table/glass,/obj/item/weapon/soap/deluxe,/obj/item/weapon/towel/random,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"UX" = (/obj/structure/closet/cabinet,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/tech_supply/component,/obj/random/toolbox,/obj/random/toolbox,/turf/simulated/floor/wood,/area/vr/powered) +"UZ" = (/turf/simulated/floor/wood{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Va" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/floor/plating,/area/vr/powered) +"Vb" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/window/reinforced/survival_pod,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Vc" = (/obj/effect/floor_decal/plaque{pixel_y = 32},/obj/effect/step_trigger/message{message = "Example text"; once = 0},/turf/simulated/floor/bronze,/area/vr/powered) +"Vg" = (/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/effect/floor_decal/spline/fancy/wood{dir = 1},/turf/simulated/floor/wood,/area/vr/powered) +"Vi" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/vr/powered) +"Vj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/machinery/gear_dispenser/suit/autolok,/turf/simulated/floor/plating,/area/vr/powered) +"Vk" = (/mob/living/simple_mob/construct/juggernaut/behemoth{dir = 1; ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"Vl" = (/obj/effect/floor_decal/industrial/loading,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Vm" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/recharge_station,/turf/simulated/shuttle/plating,/area/vr/powered) +"Vn" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/cryofeed{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Vo" = (/obj/structure/table/marble,/obj/item/weapon/fossil/skull{anchored = 1; pixel_y = -2},/obj/effect/catwalk_plated/dark,/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/lava,/area/vr/powered) +"Vp" = (/obj/machinery/recharge_station,/obj/machinery/door/window/survival_pod{opacity = 1},/turf/simulated/shuttle/floor/black,/area/vr/powered) +"Vs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/suspension_gen,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Vt" = (/obj/structure/table/marble,/turf/simulated/floor/redgrid/off,/area/vr/powered) +"Vu" = (/obj/machinery/vending/food,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"Vv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/alien,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband/nofail,/obj/fiftyspawner/plasteel,/turf/simulated/floor,/area/vr/powered) +"Vw" = (/obj/machinery/disperser/middle{dir = 1},/turf/simulated/wall/rdshull,/area/vr/powered) +"Vx" = (/obj/structure/flora/lily2,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"Vy" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"Vz" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/obj/machinery/recharger/wallcharger{pixel_x = 34},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"VA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"VD" = (/obj/structure/table/rack,/obj/item/weapon/material/knife/ritual,/obj/structure/curtain/open/bed,/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/under/suit_jacket/navy,/obj/item/clothing/head/soft/solgov/veteranhat,/turf/simulated/floor/wood,/area/vr/powered) +"VF" = (/obj/screen/alert/highpressure,/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered) +"VH" = (/obj/machinery/door/airlock/glass_centcom{name = "Starboard Wing Atmos"},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"VI" = (/obj/structure/railing,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"VL" = (/obj/mecha/combat/fighter/gunpod/recon{dir = 8},/turf/space,/area/space) +"VO" = (/obj/structure/kitchenspike,/turf/simulated/floor,/area/vr/powered) +"VP" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"VQ" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/syndicate/powertools{pixel_y = 9},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"VR" = (/obj/structure/bed/chair/oldsofa/corner{dir = 1},/obj/structure/window/reinforced/polarized{dir = 8; id = "h-living"},/turf/simulated/floor/wood,/area/vr/powered) +"VS" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"VT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"VU" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = -24},/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"VW" = (/obj/machinery/door/airlock/maintenance/int,/obj/structure/fans/hardlight,/turf/simulated/floor/plating,/area/vr/powered) +"VX" = (/turf/simulated/wall,/area/vr/powered) +"Wa" = (/obj/structure/flora/tree/jungle,/obj/structure/flora/ausbushes/fullgrass,/turf/unsimulated/wall,/area/vr/outdoors/powered) +"Wb" = (/turf/simulated/floor/beach/sand/desert{outdoors = 1},/area/vr/outdoors/powered) +"Wc" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/foodcart,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Wd" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"We" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"Wf" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/semki,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Wg" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/angled_tgmc/wide/security{dir = 4},/turf/simulated/shuttle/plating,/area/vr/powered) +"Wh" = (/obj/effect/catwalk_plated/dark,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Wi" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/modular_computer/laptop/preset/custom_loadout/rugged,/obj/item/weapon/storage/box/survival/comp{starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi)},/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/extinguisher/mini,/obj/item/device/radio{icon_state = "walkietalkiebay"; name = "emergency radio"},/obj/item/weapon/towel{color = "#800080"},/obj/item/weapon/towel{color = "#800080"},/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/reagent_containers/food/snacks/candy,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/obj/item/weapon/reagent_containers/food/snacks/no_raisin,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers,/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/syndicake,/obj/item/weapon/reagent_containers/food/snacks/unajerky,/obj/item/weapon/storage/box/mixedglasses,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/tomatojuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/lemonjuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/applejuice,/obj/item/weapon/reagent_containers/food/drinks/bottle/milk,/obj/item/weapon/reagent_containers/food/drinks/bottle/cream,/obj/item/weapon/reagent_containers/food/drinks/bottle/cola,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_up,/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice,/obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice,/obj/item/weapon/reagent_containers/food/drinks/cans/sodawater,/obj/item/weapon/reagent_containers/food/drinks/cans/sodawater,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/gingerale,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/ice,/obj/item/weapon/reagent_containers/food/drinks/ice,/obj/item/weapon/reagent_containers/food/drinks/tea,/obj/item/weapon/reagent_containers/food/drinks/tea,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate,/obj/item/toy/plushie/kitten,/obj/item/pizzabox/meat,/obj/item/pizzabox/meat,/obj/item/pizzabox/mushroom,/obj/item/pizzabox/mushroom,/obj/item/pizzabox/vegetable,/obj/item/pizzabox/vegetable,/obj/item/device/survivalcapsule/luxurybar,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/weapon/soap/deluxe,/obj/item/weapon/soap/deluxe,/obj/item/weapon/storage/firstaid/combat{pixel_x = 5; pixel_y = 5},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#3fc0ea"; name = "light blue towel"; pixel_x = 2; pixel_y = 4},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/item/weapon/towel{color = "#ff0000"; name = "red towel"},/obj/machinery/light/poi{dir = 1},/turf/simulated/shuttle/plating,/area/vr/powered) +"Wk" = (/turf/simulated/floor/water{temperature = 311; outdoors = 0},/area/vr/outdoors/powered) +"Wm" = (/mob/living/simple_mob/mechanical/mecha/combat/marauder{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Wq" = (/turf/simulated/floor/water/beach{dir = 4; temperature = 311},/area/vr/outdoors/powered) +"Wu" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/vr/powered) +"Ww" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4; pixel_x = -3},/turf/space,/area/space) +"Wy" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/risotto,/turf/simulated/floor/cult,/area/vr/powered) +"Wz" = (/obj/machinery/light{layer = 3},/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"WA" = (/obj/machinery/disperser/front{dir = 1},/turf/space,/area/vr/powered) +"WB" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"WC" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"WD" = (/obj/structure/table/fancyblack,/obj/item/weapon/material/knife/ritual,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/cult,/area/vr/powered) +"WE" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/structure/window/reinforced{dir = 1},/obj/item/seeds/bluespacetomatoseed,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"WF" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 8},/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/shuttle/wall,/area/vr/powered) +"WG" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"WH" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"WJ" = (/obj/structure/railing,/obj/effect/step_trigger/teleporter/bridge/north_to_south,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"WK" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"WP" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6},/turf/simulated/shuttle/wall/hard_corner,/area/vr/powered) +"WQ" = (/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"WS" = (/obj/structure/closet/walllocker/emerglocker/south,/obj/structure/table/rack/shelf/steel,/obj/structure/ship_munition/disperser_charge/mining,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"WT" = (/obj/machinery/vending/engivend{emagged = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"WX" = (/obj/item/toy/AI{desc = "May look like a toy, but to your surprise it seems to be a miniature AI core. There is constant static and a constant buzzing sound that makes your ear rings. . ."; name = "M@13fic3n7"; pixel_y = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"WY" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered) +"WZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Xa" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_y = -32},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Xb" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/vr/powered) +"Xc" = (/obj/mecha/combat/fighter/allure{dir = 4},/turf/space,/area/space) +"Xd" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -34},/obj/machinery/vending/deathmatch,/turf/simulated/floor/reinforced,/area/vr/powered/bluebase) +"Xe" = (/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"Xf" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"Xg" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/telecomms/relay/preset/ruskie,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"Xh" = (/obj/machinery/autolathe{hacked = 1; name = "hacked autolathe"},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"Xi" = (/obj/machinery/light/small,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/vr/powered) +"Xk" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Xl" = (/obj/structure/flora/log2,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"Xm" = (/obj/structure/cliff/automatic/corner{dir = 9},/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"Xn" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Xo" = (/turf/simulated/floor/water/beach{dir = 6; temperature = 311},/area/vr/outdoors/powered) +"Xp" = (/obj/machinery/vending/wardrobe/engidrobe{req_access = null},/turf/simulated/floor/tiled,/area/vr/powered) +"Xr" = (/obj/structure/bed/chair/wood/wings{dir = 8},/obj/effect/floor_decal/spline/fancy{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"Xt" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/item/seeds/bluespacetomatoseed,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Xu" = (/obj/machinery/vending/wardrobe/virodrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Xw" = (/obj/structure/window/reinforced/tinted/frosted{dir = 8},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/wood,/area/vr/powered) +"Xz" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"XA" = (/obj/effect/catwalk_plated/dark,/obj/structure/sign/department/cargo_dock{pixel_x = 32},/turf/simulated/floor/airless,/area/space) +"XD" = (/obj/effect/floor_decal/spline/fancy{icon_state = "spline_fancy_full"},/turf/simulated/floor/lava/harmless,/area/vr/powered) +"XE" = (/mob/living/simple_mob/animal/passive/dog/corgi/narsian{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"XG" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/vr/powered) +"XH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/vr/powered) +"XI" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/redgrid,/area/vr/powered) +"XK" = (/obj/structure/table/darkglass,/obj/item/weapon/dnainjector/xraymut{pixel_y = 1},/obj/item/weapon/dnainjector/xraymut{pixel_y = -5},/obj/item/weapon/dnainjector/xraymut{pixel_y = -2},/obj/item/weapon/dnainjector/regenerate{pixel_y = 10},/obj/item/weapon/dnainjector/regenerate{pixel_y = 4},/obj/item/weapon/dnainjector/regenerate{pixel_y = 7},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"XL" = (/mob/living/simple_mob/construct/shade{ai_holder_type = null},/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"XM" = (/obj/machinery/porta_turret/alien{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/vr/powered) +"XN" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/carpet,/area/vr/powered) +"XQ" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/plating,/area/vr/powered) +"XR" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/sliceable/excitingsuppermatter,/turf/simulated/floor/cult,/area/vr/powered) +"XT" = (/obj/random/mob/fish,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"XU" = (/obj/item/device/flashlight/slime,/turf/simulated/floor/cult,/area/vr/powered) +"XV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"XW" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/vr/powered) +"XZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Ya" = (/obj/effect/floor_decal/spline/fancy,/obj/effect/floor_decal/spline/fancy{dir = 1},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Yb" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Yd" = (/obj/structure/railing,/turf/simulated/floor/outdoors/rocks{temperature = 293.15},/area/vr/outdoors/powered) +"Yh" = (/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/shuttle/floor/white,/area/vr/powered) +"Yi" = (/obj/machinery/gear_dispenser/randomvoidsuit,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Yl" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Ym" = (/obj/item/weapon/weldingtool/largetank,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/screwdriver,/obj/item/weapon/storage/firstaid/surgery,/obj/structure/table/darkglass,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Yn" = (/obj/structure/prop/rock,/turf/simulated/floor/outdoors/dirt{temperature = 311; outdoors = 0},/area/vr/powered) +"Yo" = (/obj/effect/overlay/coconut,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Yp" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/cult,/area/vr/powered) +"Yr" = (/obj/structure/grille/cult,/obj/structure/window/phoronreinforced/full,/obj/structure/window/reinforced/survival_pod,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"Ys" = (/obj/vehicle/train/engine/quadbike/random,/turf/simulated/floor/cult,/area/vr/powered) +"Yt" = (/obj/effect/floor_decal/techfloor,/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/vr/powered) +"Yu" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/manned{faction = "syndicate"},/turf/simulated/floor/airless,/area/vr/outdoors/powered) +"Yw" = (/obj/machinery/vending/wardrobe/chemdrobe{req_access = null},/turf/simulated/floor/tiled{outdoors = 1},/area/vr/powered) +"Yx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"Yy" = (/obj/structure/table/bench/marble,/turf/simulated/floor/outdoors/grass/heavy{can_atmos_pass = 0; temperature = 311},/area/vr/outdoors/powered) +"Yz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/airless,/area/vr/powered) +"YC" = (/obj/structure/showcase/sign{name = "UNDER CONSTRUCTION"; desc = "This sign appears to be telling you that there are more maps under construction."},/turf/simulated/floor/outdoors/grass{temperature = 293.15},/area/vr/outdoors/powered) +"YE" = (/obj/structure/bed/chair/bay/comfy/red{dir = 8},/obj/structure/closet/walllocker/emerglocker{pixel_x = -25; pixel_y = 32},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"YF" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/bed/chair/bay/comfy/red{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/laser,/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"YH" = (/obj/structure/table/fancyblack,/obj/item/weapon/reagent_containers/food/snacks/ribplate,/turf/simulated/floor/cult,/area/vr/powered) +"YI" = (/turf/simulated/floor/lava,/area/vr/outdoors/powered) +"YK" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/cult,/area/vr/powered) +"YL" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/phoron,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/vr/powered) +"YM" = (/obj/random/trash,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; nitrogen = 0; outdoors = 0; oxygen = 0; temperature = 311},/area/vr/powered) +"YN" = (/obj/machinery/vending/sovietsoda,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/wood{temperature = 311},/area/vr/outdoors/powered) +"YO" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/window/phoronreinforced{dir = 4},/turf/simulated/floor/cult,/area/vr/powered) +"YP" = (/obj/mecha/working/hoverpod/combatpod{dir = 8},/turf/space,/area/space) +"YQ" = (/obj/machinery/vending/deathmatch/red,/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"YR" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled/steel_dirty{color = "grey"},/area/vr/powered) +"YS" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled/neutral,/area/vr/powered) +"YT" = (/obj/structure/table/bench/marble,/obj/structure/flora/pottedplant/overgrown{pixel_y = 7},/obj/structure/window/reinforced/polarized{id = "h-master"},/turf/simulated/floor/wood,/area/vr/powered) +"YU" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/table/rack/shelf/steel,/obj/fiftyspawner/durasteel,/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"YV" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"YW" = (/obj/item/stolenpackage,/obj/item/stolenpackage,/obj/structure/table/rack/shelf/steel,/obj/random/contraband/nofail,/turf/simulated/floor/airless,/area/vr/powered) +"YX" = (/obj/structure/showcase/sign{name = "WARNING: OSHA VIOLATIONS"; desc = "Don't Fall."},/turf/simulated/floor/tiled/asteroid_steel{outdoors = 1},/area/vr/outdoors/powered) +"YZ" = (/obj/structure/salvageable/console_os{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Zb" = (/turf/simulated/floor/carpet/sblucarpet,/area/vr/powered) +"Zd" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/excavation,/obj/item/stack/flag/yellow,/obj/item/device/measuring_tape,/obj/item/weapon/pickaxe/drill,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"Ze" = (/obj/item/weapon/gun/projectile/deagle/gold,/obj/item/weapon/ore/diamond,/obj/fiftyspawner/diamond,/obj/item/weapon/reagent_containers/food/snacks/sliceable/supremoburrito,/turf/simulated/floor/flock,/area/vr/powered) +"Zf" = (/turf/simulated/floor/cult,/area/vr/powered) +"Zg" = (/obj/structure/railing,/turf/simulated/floor/wood{outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Zh" = (/obj/effect/landmark/virtual_reality{name = "Cultist Base"},/turf/simulated/floor/cult,/area/vr/powered) +"Zm" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/turf/simulated/shuttle/floor/darkred,/area/vr/powered) +"Zn" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/turf/simulated/floor/water/deep{temperature = 311},/area/vr/outdoors/powered) +"Zo" = (/obj/structure/table/standard,/obj/item/ammo_magazine/akm,/obj/item/ammo_magazine/akm,/turf/simulated/floor/beach/sand/desert{can_atmos_pass = 0; outdoors = 1; temperature = 311},/area/vr/outdoors/powered) +"Zq" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "fridge_sci"; icon_contents = "chem"; icon_state = "fridge_sci"; name = "Advanced storage"; pixel_y = 0},/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/micro_laser/ultra,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/matter_bin/super,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/manipulator/pico,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/capacitor/super,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/motor,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/scanning_module/phasic,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/spring,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/sub_filter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/device/bodysnatcher,/obj/item/weapon/card/emag,/obj/item/weapon/card/emag,/obj/item/weapon/cell/super,/obj/item/weapon/cell/super,/obj/item/weapon/cell/device/super,/obj/item/weapon/cell/device/super,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/light/poi{dir = 8},/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Zr" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/turf/simulated/floor/tiled/white,/area/vr/powered) +"Zs" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/button/windowtint{id = "h-kitchen"; pixel_y = -29},/turf/simulated/floor/wood,/area/vr/powered) +"Zt" = (/mob/living/simple_mob/mechanical/mecha/combat/gygax/manned{faction = "syndicate"},/turf/simulated/shuttle/floor/voidcraft,/area/vr/powered) +"Zv" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"Zw" = (/obj/item/weapon/gun/projectile/colt,/obj/item/weapon/gun/projectile/garand,/obj/item/weapon/gun/projectile/revolvingrifle,/obj/item/weapon/gun/projectile/shotgun/pump,/obj/item/ammo_magazine/ammo_box/b12g,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/structure/closet/secure_closet/guncabinet{req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/vr/powered) +"Zx" = (/obj/machinery/vending/engivend{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"Zy" = (/obj/structure/table/standard,/obj/item/weapon/storage/laundry_basket,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/box/matches,/turf/simulated/floor/wood,/area/vr/powered) +"Zz" = (/obj/effect/catwalk_plated/dark,/obj/item/weapon/banner/blue,/turf/simulated/floor/airless,/area/vr/powered) +"ZA" = (/turf/simulated/floor/water/beach{dir = 8; temperature = 311; outdoors = 0},/area/vr/powered) +"ZB" = (/obj/structure/cryofeed{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/vr/powered) +"ZC" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/floor/tiled/white,/area/vr/powered) +"ZD" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"ZE" = (/turf/simulated/wall/phoron,/area/vr/powered) +"ZF" = (/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/turf/simulated/floor/wood,/area/vr/powered) +"ZH" = (/obj/machinery/autolathe{hacked = 1},/turf/simulated/shuttle/floor/purple,/area/vr/powered) +"ZI" = (/obj/machinery/exonet_node/map,/turf/simulated/floor/tiled/asteroid_steel,/area/vr/powered) +"ZJ" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"ZK" = (/obj/structure/closet,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"ZL" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/storage/belt/utility/full/multitool{pixel_y = 6},/turf/simulated/floor/outdoors/sidewalk/slab{temperature = 293.15; movement_cost = 0},/area/vr/outdoors/powered) +"ZN" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/fans/hardlight,/turf/simulated/shuttle/plating,/area/vr/powered) +"ZO" = (/obj/structure/table/marble,/obj/item/weapon/storage/firstaid/clotting{pixel_x = 5; pixel_y = 5},/obj/item/weapon/storage/firstaid/clotting,/turf/simulated/shuttle/floor/voidcraft/light,/area/vr/powered) +"ZQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/carpet/oracarpet,/area/vr/powered) +"ZR" = (/turf/simulated/floor/water/beach/corner{dir = 1; temperature = 311; outdoors = 0},/area/vr/outdoors/powered) +"ZT" = (/obj/effect/step_trigger/teleporter/bridge/south_to_north,/turf/simulated/floor/water{temperature = 311},/area/vr/outdoors/powered) +"ZV" = (/obj/machinery/vending/tool{emagged = 1; req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techmaint,/area/vr/powered) +"ZW" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/secure/briefcase/nerd_pack_med,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/item/ammo_casing/microbattery/medical/omni3,/obj/machinery/light{dir = 4; light_color = "#DDFFD3"},/turf/simulated/floor/reinforced,/area/vr/powered/redbase) +"ZX" = (/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/steel_dirty,/area/vr/powered) +"ZZ" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel_reinforced,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/vr/powered) + +(1,1,1) = {" +abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab +abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab +abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBab +abhBhBhBRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOuDaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaObXuDMsNFncuDbXaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaxaOVbLYNnaOaxaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBhBhBhBhBhBhBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOKZOQWQjykJaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOuDaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCShpNpNpNpNpNKRdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBuDMFOQBEBwMFuDhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaObXuDMsNFncuDbXaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAdCzhAOhdzONFyRhdAOnhdCnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgOBwgwgwgKOwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaxaOVbLYNnaOaxaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAhdOGGShdFVlDkbhdGShdhdAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbwgTvDTMFwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOKZOQWQjykJaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPshBnVPhSxPbhdFVspkbhdPbnkYZnVhBPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUwgTvwgzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBuDMFOQBEBwMFuDhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCVwdCdCdCdCdCdCdCcLdCdCdCdCdCdCdCVwdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwkovTvxSTvovwkwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgOBwgwgwgKOwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuSMFqOdCPdWmOQMFspMFjyWmPddCqOMFuSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzvhBhBhBhBhBzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbwgTvDTMFwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfrMFqOdCPdPdOQMFWQMFjyPdPddCqOMFqidChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUwgTvwgzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAOzMFqOdCPdtuOQMFspMFjytuPddCqOMFHnnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwkzvLJEmLJzvwkwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAOzMFMFdCPdTiOQMFspMFjyTiPddCMFMFHnAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzvhBhBhBhBhBzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVtzMFMFcLPdPdOQMFWQMFjyPdPdcLMFMFtQnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCtzAnusdCSEPdOQMFspMFjyPdSEdCusAntQdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspQQjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCdCdCdCdCdCdCdCcLdCdCdCdCdCdCdCdCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCSEPdPdPdPdPdPdPdRyOQMFspMFjyRyPdPdPdPdPdPdPdSEdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCPdTiPdPdPdPdPdPdFEOQMFspMFjyFEPdPdPdPdPdPdTiPddChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPshBdCPdPddCdCdCdCdCdCdCdCMFWQMFdCdCdCdCdCdCdCdCPdPddChBPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCVwdCdCrtRydCvkugvkvkugvkdCMFaYMFdCvkugvkvkugvkdCrtRydCdCVwdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgLJLJwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBdCuSKDdCPdPddCvkvkDNvkvkvknAMFspMFnAvkvkvkDNvkvkdCPdPddCKDuSdChBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuDdCfrObdCPdPddCvkvkvkvkvkvknVMFWQMFnVvkvkvkvkvkvkdCPdPddCObqidCuDdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCbHspfrObdCPdPddCvkugvkvkugvkdCMFspMFdCvkuggnvkugvkdCPdPddCObqispsfdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVYFWQWQQanVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCDaspfrObdCPdPddCvkvkvkvkvkvkdCMFspMFdCvkvkvkvkvkvkdCPdPddCObqispZZdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCDaspfrQWdCPdPddCvkvkvkvkvkvkRyMFWQMFRyvkvkvkvkvkvkdCPdPddCDgqispZZdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCmTeSfrQWdCPdPddCvkugvkvkugvkqJMFspMFqJvkugvkvkugvkdCPdPddCDgqieSLkdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCpsspfrQWdCPdPddCvkvkDNvkvkvkdCMFspMFdCvkvkvkDNvkvkdCPdPddCDgqispRNdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspspjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnApsspfrQWdCPdPddCvkvkvkvkvkvkdCMFWQMFdCvkvkvkvkvkvkdCPdPddCDgqispRNnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAApsspfrQWdCPdPddCvkugvkvkugvknAMFspMFnAvkugvkvkugvkdCPdPddCDgqispRNAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtLaYfrMFdCPdPddCvkvkvkvkvkvknVMFspMFnVvkvkvkvkvkvkdCPdPddCMFqiaYAwAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtLspfrMFRyPdPddCvkvkgnvkvkvkdCMFWQMFdCvkvkvkvkvkvkdCPdPdRyMFqispAwAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVtLspfrMFqbPdPddCdCdCdCdCdCdCdCMFaYMFdCdCdCdCdCdCdCdCPdPdqbMFqispAwnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgLJLJwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChFJHyLOBdCPdPddCEfKEhdHQgahddCMFspMFdCPdPXvIDygJwKdCPdPddCOBhJJHBPdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCdCPdPddChdhdhdhdhdhdRyMFWQMFRyPdyDPNvkOXFQdCPdPddCdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfJfJfJdCdCPdPddCEfKEhdPbhdhdNVMFspMFiAPdPmvkhdvkZOdCPdPddCdChBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCrtRydChdhdhdhdhdhddCMFspMFdCPdvkhdeAoUIUdCrtRydChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBdCPdPddCEfKEhdHQgahddCMFWQMFdCPdPdPdPdPdPddCPdPddChBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBbIpKpKdCdCdCdCdCdCdCdCMFspMFdCdCdCdCdCdCdCdCpKpKbIhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAMFMFMFMFMFMFMFMFMFMFMFspMFMFMFMFMFMFMFMFMFMFMFAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVspspQespspaYspQespeSspWQspeSspQespaYspspQespspnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSLYCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCMFMFMFMFMFMFMFMFMFMFMFspMFMFMFMFMFMFMFMFMFMFMFdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChprCdCxNxNdCdCdCdCdCdCdCdCPqRyRydCdCdCdCdCdCdCdCxNxNdCrCYUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspKkRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCfrMFdCrtRydCugvkugvkvkvkvkvkvkvkvkvkvkvkugvkugdCrtRydCMFqidCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCPsdCLccqfrMFdCPdPddCvkvkvkvkXMvkvkvkWXvkvkvkXMvkvkvkvkdCPdPddCMFqicqfBdCWAdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBwgzvLJLJLJzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCVwdCLccqfrQWdCPdPddCvkvkvkvkvkczdCkodCkodCczvkvkvkvkvkdCPdPddCDgqicqfBdCVwdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzhguDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCuSMFLccqfrQWdCPdPddCugvkugvkvkdCnbRKRKRKfhdCSwvkugvkugdCPdPddCDgqicqfBMFuSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCtzMFqispfrQWdCPdPddCvkvkvkvkegmcXIaMoDaMhjJrvkvkvkvkvkdCPdPddCDgqispfrMFtQdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAtzMFqiaYfrMFdCPdPddCvkvkvkvkvkrRXIxnhRtJhjrRvkvkvkvkvkdCPdPddCMFqiaYfrMFtQnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSowgShpNKRwgSohBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpZtwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzhguDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAtzMFqispfrMFdCPdPddCugvkugvkvkmcXIaMkNaMhjJrvkvkugvkugdCPdPddCMFqispfrMFtQAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVfrMFqieSfrMFRyPdPddCvkvkvkvkvkdCSHwHwHwHwFdCvkvkvkvkvkdCPdPdRyMFqieSfrMFqinVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfrMFqispfrMFqbPdPddCvkvkvkvkvkugdCMxdCMxdCugvkvkvkvkvkdCPdPdqbMFqispfrMFqidChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBqSwgShpNKRwgqShBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpZtwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdWsNmqJHyLOBdCPdPddCugvkugvkXMvkvkvkvkvkvkvkXMvkugvkugdCPdPddCOBhJJHdWAfPydChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgtqNFqYwgwghBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBanwgHXPdOQspjyfgTkwganhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCzUzUdCPdPddCvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkvkdCPdPddCzUzUdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumZtPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAhdioWQwchdnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdChBhBhBdChBhBdCPdPddCdCdCdCdCdCdCdCPqRyRydCdCdCdCdCdCdCdCPdPddChBhBdChBhBhBdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVPhdtspKLYZnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBdCPdTiPdPdPdPdPdPdRyOQMFspMFjyRyPdPdPdPdPdPdTiPddCtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgRywgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBdCSEPdPdPdPdPdPdPdFEOQMFWQMFjyFEPdPdPdPdPdPdPdSEdChBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgAbAbYWYWsKWQQdLmQqSrPKwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOywgspjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumZtPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCWgFwdCdCdCdCdCdCdCMFspMFdCdCdCdCdCdCdCWgFwdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBieOyOyieWQjyOkPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCPtPtPtQGAsxiAUohQGdCMFspMFdCuxkPxiAUohlbPtPtPtdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgzUzUzUwgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgspjyFpPdwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCPtPtPtPtPtPtPtPtPtdCMFWQMFdCPtPtPtPtPtPtPtPtPtdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgOyOyOywgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBqFwgHXPdOQspjyfgTkwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBanwgAbAbYWYWsKWQQdLmQqSrPKwganhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtnAMFspMFnAPtPtsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVumPdPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBSonphBhBMbMbOyOyOyMbMbnphBhBSohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBwgwgPdPdOQspjyPdPdwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBSqPtAAMFspMFAAPtSqhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBnAktPdPdOQWQjyPdPdktnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgzUzUzUwgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBRehBhBRehBhBRehBPtPtnVMFWQMFnVPtPtaXhBhBaXhBhBaXhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBAAvSPdPdOQspjyPdPdvSAAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgHoHoHowgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgwQYudCMFspMFdCPtwQsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgAbAbYWYWsKWQQdLmQqSrPKwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBnVumPdPdOQspjyPdPdumnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqSnphBhBMbMbcAcAcAMbMbnphBhBqShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBPtPtdCMFspMFdCPtPthBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBwgwgwgwgwgwgcLwgwgwgwgwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBcIhBhBcIhBhBcIhBPtPtdCMFWQMFdCKhPtXchBhBXchBhBXchBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgzUzUzUwgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBwgOyOyOyOysKspQdOyOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtdCMFspMFdCPtPtsgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgOyOyOysVwgOyOyOywgsVOyOyOywghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBanwgAbAbYWYWsKWQQdLmQqSrPKwganhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBwQPtnAMFspMFnAPtwQhBhBhBhBhBhBhBhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqSnphBhBsVsVOyOyOysVsVnphBhBqShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBwgwgzUzUwgwgArspPKwgwgzUzUwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBVLhBhBVLhBhBVLhBPtPtAAMFWQMFAAPtPtzAhBhBzAhBhBzAhBhBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgzUzUzUwgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBTmhBsgsgsgsgsgsgsgsgPtPtnVMFspMFnVPtYusgsgsgsgsgsgsgsghBTmhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBwgcAcAcAMbwgcAcAcAwgMbcAcAcAwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCPtPtPtPtPtPtPtSqPtdCMFspMFdCPtSqPtPtPtPtPtPtPtdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBqSnphBhBMbMbcAcAcAMbMbnphBhBqShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCPtPtPtPtPtPtPtPtPtdCMFWQMFdCPtPtPtPtPtPtPtPtPtdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCdCdCdCdCCbFwdCMFspMFdCCbFwdCdCdCdCdCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCgxyodCSEPdPdPdPdPdOQMFspMFjyPdPdPdPdPdSEdCyogxdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBiegxgxiePdPdPdPdPdPdOQMFWQMFjyPdPdPdPdPdPdiegxgxiehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBiegxgxiePdPdPdPdtuPdOQMFspMFjyPdtuPdPdPdPdiegxgxiehBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCKMgxdCSEPdPdPdPdPdOQMFspMFjyPdPdPdPdPdSEdCgxKMdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCdCdCdCrtRydCdCdCdCdCdCdCdCdCdCdCrtRydCdCdCdCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfGGgOyMROyOynRmrzXnRXbspSGzXnRmrzXOyOyVvOySKlohBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCdCdCOyVvOyOynRmrzXnRXbspSGzXnRmrzXOyOyMROydCdCdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAOyRQOyOynRmrzXnRXbWQSGzXnRmrzXOyOyRQOynAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVOyOyOyOyOyfHYzYzWYsphbYzYzpUOyOyOyOyOynVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCKePKOyOyOyhPYzikWYsphbEEqHSMOyOyOyPKKedChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUdCOyLmQqSrOyOysKWQQdOyOyLmQqSrOydCzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCovdCOyCjYzYzYzCLWYsphbEEYzYzYziSOydCovdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUdCzGuGzrzGsKspQdMBuGzrMBdCzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCovdCOyOyhPCLWYWQhbEESMOyOydCovdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCLmQqSrOysKspQdOyLmQqSrdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCCjYzYzCLifspMYEEYzYziSdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCzUzUzUdCzUzUzUdCzUzUzUdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBdCfJfJfJdCfJfJfJdCfJfJfJdChBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBnphBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOhBhBaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOaOShKRaOaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnAlWNFNWpTnAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVlcWQWQJhnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaOjTylaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXaOxOspsprTaObXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBaOuDaOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlaOxOWQWQrTaOqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBPsaOaONFaOaOPshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBqFwgwgPdOQspbRjyPdwgwgqFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgbXuDwSXzCMuDbXwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnACTMFwgwgLKwgMFrInAhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgqlwgMuWQTGwgqlwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnVMFMFwgOyOywgMFMFnVhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgwgAbOQspjyRRwgwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgAbCJwgOyOywgYWPKwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUwgDTwgzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwgzUzUwgwgDTwgzUzUwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBfUwgzvLJLJLJzvwgfUhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBwghBhBwgTvTvwghBhBwghBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBtshBhBhBhBhBtshBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +abhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +ababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababrEabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPxcPZaWaWFIFIFIFIFIFIFIFIaWaWaWFIaWFIFIhVaWFIbPFIFIaWFIFIaWFIFIiqFIaWiJLbLbLbGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAcxQxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIvtGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPMcFIFIFIaWaWFIFIaWFIFIFIMcFIFIFIFIaWFIFJaWaWFIaWFIFIMcaWFIaWLbaWLbfMxALbnKnKnKGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQDYhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPQMQMQMQMQMQMQMGPGPGPKrBZBZYnGPGPGPGPFIFIFIFIFIFIFIbPaWaWFJaWFIFIaWFIFJhVaWFIaWFIaWFIFJFIaWFIFIiJbPiJLbLbLbnKnKnKnKnKnKnKGPGPGPGPGPnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgjgjgjgjjjjjjZAvOvOQTNQvOvOvOGPGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAchBhBhBhBxQhSIwHIVQWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPQMZebbCztVrWQMGPBLBZBZBZBZBZBZGPGPGPFIFIaWiqFIFIaWFIFIFIaWFIFIFIaWFIaWaWbPaWFIFIaWFIFIaWFIMcaWiJaWFIfMLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgOcjgjgjgjgjgjjjjjjeVoevOvOvOFhOTacvOvOacGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQprprxQDYxQxQhyxQxQUIrLMFdXWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPQMBixHOROpadQMBZBZBZBZBZBLBZBZGPGPGPbPFIaWFIFIbPFJFIbPFIFIaWFIFIiqaWMcFIFIaWaWFJaWMcaWFIFIaWLbiqLbLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgGPGPGPjjjjjjjjZAvOvOIpvOvWcovOvOvOlmvOTEGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSTBTBICbtxuOFHJhKxQBjURsqqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuGPGPQMjWTHftOCoKQMBZBZBZBZGPBZBZlCGPGPGPGPFIaWFIFIFIaWFIFIFIFIiqaWFIaWaWFIFIaWaWFIaWaWFIFIFJFIaWaWiJfMLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjwjrZwjwjwjwjGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOrVvOvOvOacvOvOvOlmGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAQEVYEPdltcJcJcJcJtbxQTOURMFiVWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPQMSYwrwrwrSYQMBZBZBXGPGPGPBZBZGPGPGPGPFIFIFIFIFIFIFIFISJFIFISJSJFISJSJSJFItTFIFIFIFIFISJFISJSJFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdwjfkwjGPwjsAGPGPwjGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPvOnTmkvOvOvOHUacvOacGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSkykyuhJMyQcOHJobxQTOURMFMzWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuGPGPQMQMKdKdKdQMQMBLBZGPGPGPlCBZBZGPGPGPCZARnulONJNJCZccqRIuaFaFCZpXHYThmwmwCZwhrnbZPnPnCZFINNFINNLbBRLbBRLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjWkWkWkWkTTGPGPGPGPGPGPGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPacvOmemeUuvOvOvOvOacvOGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQxQxQxQhSilrpxQxQhSxYRUqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPIKQMzTzTzTQMBZBZBZGPGPGPBZBZBZGPGPGPCZDRDRDRDRBDCZwNwNwNwNdsCZEwEwEwEwlLCZaRaRaRaRZQCZMcFIyxFILbNNLbLbnKnKnKnKnKaZnKnKYonKnKnKnKnKnKnKaZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPjgjgjgjgjgjgjgGPGPGPGPGPGPGPvOmememezolmvOlmvOTEacGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcxDYoddYwyxQZvXZGkXZNTpQrSJFWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPBZBvBZBZBZBvBZBZGPGPGPBZBZBZBZGPGPGPCZDRDRDRDRDRCZwNwNwNwNwNCZEwEwEwEwEwCZaRaRaRaRaRCZFIyxFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqNqqDjgjgjgqDjgjgjgjgGPGPGPGPGPGPGPGPjgjgjgjgjgjgGPGPGPGPGPGPvOlmmememevOvOHUvOvOGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSFrdfMvxQdzxQxQxQhSxtlPlfWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIGPGPBZBZBZBZBLBZBZBZGPGPBZBZBZBZYnGPGPGPCZSLDRCZCZCZCZjkwNCZCZCZCZksEwCZCZCZCZviaRCZCZCZCZFIFIFIMcFIFILbLbnKnKnKEdnKnKnKnKnKnKnKnKEdnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdNqNqNqNqNqjgjgjgjgjgjgjgjgjgjgGPGPGPGPGPGPGPGPGPGPjgjgjgjgGPGPGPGPTEvOvOmelmmevOvOvOacvOGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBAQHsYbOYeOOfFqxQqdrKxQXGSuhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuGPGPGPGPBXBZBZBZBLGPGPGPBZBZlCGPGPGPGPGPCZuwDRqGJXPVCZDvwNqGJXPVCZSVEwqGJXPVCZUSaRqGJXPVCZUFFIyxFILbFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdNqNqNqNqNqjgjgjgjgjgjgjgjgjgjgjgGPGPGPjgjgjgjgGPGPGPjgjgjgjgGPGPGPGPvOacvOHUvOvOvOKYvOvOGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQprxQhScMOYBJhSgKqhexHJxQAVVTGUxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIvtFIGPGPGPGPGPGPGPGPGPGPKrBZBZGPGPGPGPGPUFCZgYDRyazSwVCZQkwNyazSwVCZEpEwyazSwVCZZKaRyazSwVCZUFFJFIyxFILbLbLbnKnKnKnKnKnKnKnKQcnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdwjwjWkWkWkWkWklJjgjgjgjgjgjgjgjgjgjgGPGPGPjgjgjgjgGPGPGPGPjgjgjgGPGPGPGPGPvOvOvOlmvOlmvOvOTEGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBTqAQaHZHOHxQSAOYidLTsSxQKlHJxQpPFHwoWPfZhShShBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuaWGPGPGPGPGPGPGPGPGPGPBZBZBZGPGPGPGPFIUFCZqGyaqGCZCZCZqGyaqGCZCZCZqGyaqGCZCZCZqGyaqGCZCZCZyxFIFIFILbLbLbLbnKnKnKQcnKnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKEdnKnKnKnKnKnKnKnKnKgUnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdKiOdwjGPwjwjCEGPGPwjmLmLmLmLmLjgjgjgjgqDjgjgjgGPGPGPjgqDjgjgjgGPGPGPjgjgjgGPGPGPGPGPacvOKYvOvOimvOacGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBgMVFrUmtdlxQIXQpLHhSFqbFULHJxQUGVSjuseCkeqOeBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIayFIFIFIGPGPGPGPGPGPFIGPvvvvGPGPGPFIFIyxFIFIhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMhMUFFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjwjrZwjwjmLmLmLmLjgjgjgjgjgjgGPGPjgjgjgjgjgjgjgGPGPjgjgjgGPGPGPGPGPGPvOvOacvOvOvOvOGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBAQtBAXmtGnhSxQxQxQxQtIxQNGjRxQtyvbjuIVLRaDSZBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuFIFISJNNGPGPGPGPFIyxyxUFUFUFFIFIFIFIbSfEFIbSFIFIyxyxFIfEbSFIyxFIfEFIFIaWJQFIFIFIFIFIFIFIFIFIyxyxFIFIFILbLbnKnKnKnKnKYonKnKnKnKnKnKEdnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjwjmLmLjgjgjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPjgjgjgGPGPGPGPGPGPTETEimvOvOvOGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBAQtBmtmthziCXZXaXZXZQPxQxQxQxQqWMFjfhSzeslEYiMhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOubPFIFIFIFIFIFIFIxIFIFIUFUFgNFIUFUFFIUFUFUFFIUFFIFIUFUFFIFIUFUFUFFIyxFIbSbSFIaWFIbSFIFIFIFIFIFIFIFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKthJpwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLjgjgjgjgjgGPjgjgqDjgGPjgjgjgjgGPjgjgjgGPGPGPGPGPGPGPGPGPacvOTEGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBAQtBmtmtrwhSxQxQxQxQFqxQfRTjxQVmMFxkhSxQxQhSBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIFIFIFIFIFIFIJQFIFIFIFIFIUFUFUFFIFIgNFIfEFIFIbSFIFIjBFIFIFIFIUFFIFIFIUFUFulFIFIFIFIfEFIMcFIFIFIFIfEFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKaZnKnKnKYonKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgqDGPjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBgMVFRwjwtZxQECBzdkhSZvwTtPdFxQcCKbMrnLENHgjiBOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIaWFIFIFIFIJQFIFIFIFIbSFIUFFIFIFIbSFIyxyxFIFIFIFIFIFIFIFIfEFIUFMcFIYlJQfEFIFIlHFIUFUFFIbSFIFIbSFIUFFILbLbLbLbnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgGPjgjgjgjgGPGPjgjgjgGPjgqDjgGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBTqAQcbKnUhxQRqOlgyPDsSxQdFSDxQgkRUMFMFSshSxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIFIFItTFJFIFIFIaWFIycFIFIFIFIyxFIFIFIFIFIFIFIFIFIFIMcFIaWFIUFUZFIFIFIFIFIFIWBFIFIFIFIFIUFFIFIFIFIyxFILbLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgjgjgOcjgjgGPGPjgjgjgGPjgjgjgGPGPGPwWrmGPGPGPGPGPGPGPGPGPvOvOGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBTqgMxQprxQhSaUqrJLhSwlbFvZgxxQAVVTuMSshSxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIvtaWSJFINNFIulFIFIFIyxbSUFbSFIFIMcFIaWFIFIFIFJFIFIFIFIFINbFIUFUFFIzYFIFIgNFIFIFIFIFIFIFIbSFIfEFIyxFIbSFILbLbLbnKnKYonKnKnKnKnKaZnKnKnKnKYonKnKaZnKnKnKpzuIoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLjgjgjgjgjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPejYMGPGPGPGPGPGPGPvOvOGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBTqTqhBxQxQlexxUvxQFqxQvHjRxQXGSuhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIFISJtTFIFIFIFIlHFIfEUFFIFIgNFIFIFINbFIrqyxFIYlFIFIaWFIFIFIUZUZFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdXTOdOdOdOdOdOdmLmLmLmLjgjgqDjgjgjgGPGPjgjgjgGPjgjgjgGPGPGPGPvOvOvOvOvOvOvOvOvOvOvOGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSfsXiXgxQdzxQxQxQhSjrlPRMWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIMcFIFIFIFINbFIFIbSFIFIbSFIFIFIFIFIFIFIFIgNlHFIYyYygNFIlHFIUFUZFIFIYyYyFIFIFIUFFIlHFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopuIpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLjgjgjgjgjgGPGPjgjgqDjgjgjgjgGPGPGPGPGPvOvOvOmvmvmvmvmvvOvOGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQxQxQxQfLeFgBXZRzIyrSGYWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIhVFIFIaWFIFIlHlHNbUFFIFIFIFIFIFIFIFIFIFIFIFIFIlkwjwjbSFIJzUZUZpFwjkWlkwjFIFIFIFIFIFIFIFINbFIFIFIFIFIFIFILbLbnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLjgjgjgGPGPGPjgjgjgjgjgGPGPGPGPGPGPvOvOvOmvOwOwySmvvOGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQhSGhhSxQxQhSIhJJqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIayFIFIFINbFIgNFIFIFIFIbSFIFIFIFIFIlHFIFIFIFIFIbSwjkWwjwjwjApUZUZHzwjOdOdwjFIFIFIFIMcFIaWFIFIlHFIFIFIFIFILbLbLbnCnKnKnKnCnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLmLjgjgGPGPGPGPjgjgjgGPGPGPGPGPGPGPvOvOvOmvOwaKjdmvvOGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBLlBOhShSmZyWQgMFZdWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIaWSJFIFIFIFIWBaWUFFIFIFIFIFIFIFIFIFIFIFINbFIFIwjwjOdKJOduVUZUZijOdOdOdwjFJFIFIFIFIFINbFIgNFIFIFIFIFIFILbLbLbnKnKnKQcnKnKnKnKnKnKnKnKnKYonKEdnKnKnKEdnKnKnKnKnKnKnKnKnKnKgUnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLmLmLGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOvOvOsckGOwkGssvOGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBFcDYbmIygzMFVsWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuFJSJFIlHFIFIFIbSUFFIFIFIFIFIFIFIMcFIaWFIFIlHlHNbwjyuOdyuOdOdOdOdyuGVwjwjFIYlUFFIaWFIFIFIFIWBFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdmLmLmLGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOvOvOvOOwkGOwvOvOGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQKqgjUCMFqCGfxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIMcSJNNFIFJFIFIFIFIbSFIFIFJFIFIFIFIFINbFIgNFIFIfEwjGVOdOdOdOdOdOdOdOdwjgNlHFIFIFIgNFIlHFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKgUnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPGPvOqqjmqqvOvOvOvOGPGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSGQMFMFAqWFhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuaWSJFIWBFIFIFIlHUFFIrqFIFIYlFIFIaWFIFIFIFIWBaWFIwjOdOdyuXlOdOdyuOdVxwjbSFIFIaWJQFIFIFIFJFIFIFIFIFIFIFILbLbLbnKnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPGPGPGPGPJjEGvOvOvORfvOvOvOvOGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQhSwnZwHPWFWwhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuaWSJFIFIFIFIFIhNFIbSFIgNlHFIFIFIgNFIlHFIFIFIFIFIwjOdOdOdOdOdOdOdXlkWwjFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPGPGPGPyzyzZRJjqLyZyZJjJjJjGPGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxQxQDYhSxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIayFIFIFINNFIFIFIFIFIFIFIFIFIFIaWJQFIFIFIFJFIFIFIFIwjlkwjwjkWwjwjwjwjwjwjFIUFFIFINbFIFIFIycFIFIFIFIFIFIFIFIFILbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKaZnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdCEGPGPGPGPWkWkoEyzZRJjJjJjJjJjJjGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBxjxQxQxQxQhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIFIFIFIFIFIyxFIyxUFFIFIFIyxFIFIFIaWFIWBFIFIFIlHFJFIrqwjwjwjYyYyYylkwjwjFIFIaWFIFIlHlHNbFIFIFIFIFIFIFIFIFILbLbnCnKnKnKnCnKnKnKaZnKnKnKnKEdnKnKnKpzopuIpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKlUXowjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdwjwjGPGPWkWkWkWkWkoEyzyzZRJjiEJjGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIiqFINNFIFIJQFIbSFIFIFIaWFIFIFIFIFIFIFIFIFIFIFIFIFIFIgNlHfEFIFIJQFIFIFIFIFINbFIgNFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKnKYonKnKnKnKnKnKnKEdpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPGPWkWkWkWkWkWkWkWkoEyzyzyzGPGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIaWSJFIFIFIFIFIfEUFfEFIFIaWFIFIFIFIFIFIFIFIJQFIFIFIFIFIFIFIaWJQFIFIFIFJFIFIFIFIFIWBaWFIFIFIFIFIFIFIFIFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjsAGPWkWkWkWkWkWkWkWkWkWkWkWkWkGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIDDFISJFIFIFIFIFIFIUFfEFIFIJQFIFIJQFIFJzYFIFIxIFIFIFIFIFIyxFIFIFIFIaWFIFIUFFIlHFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKEdnKQJsxlEpWnKnKnKnKnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjWkWkWkTTWkWkWkWkWkWkWkWkWkGPGPkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIGbaWSJtTFIFIFIFIntUFntFIFIFIFIFIaWFIFIFIJQFIFIaWFIFIFIFIFIFIFIulFIFIFIFIFIFIFIFJFIFIFIFIFIFIFIFJFIFIFIFIFILbLbLbLbnKnKnKnKnKnKnKnKnKnKnKnKnKEdnKnKnKnKnKnKnKnKnKpzWflSpWnKnKgUnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPwjwjwjwjwjwjwjwjwjwjwjwjwjGPsAkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIMIFIFItTFIFIFJmvmvyamvmvvvvvvvmvmvmvmvmvmvFIFIFIFIFIMcFIYlJQFIFIFIlHFIFIFIFIWBFIFIFIlHFIFIrqFIFIYlFIFIFIFILbLbLbLbnKnKnKnKnKYonKnKnKnKnKnKnKnKnKnKnKnKnKaZnKnKnKpziRoppWnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjCEwjwjwjOdOdOdOdxsOdOdwjwjwjGPwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBGOhBhBhBhBhBGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsghBhBsgsgsgsgsgsgsghBhBhBhBhBcAcAcAhBhBhBsgcAcAcAsgJZsgsgsgsgab +oIMIFJFIFIFIMcmvmvuNdFWumvmvmvmvmvZrzNiPZCmvmvmvFIFIFIFIFIFIFIFIFIWBFIFIUFFIFIFIFIFIFIFIFIFIFIgNlHFIFIFIFIFIFILbLbLbnKnKnKnKnKnKnKnKnKnKnKASnKnKnKnKYonKnKnKnKnKnKpzuIZopWnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjGPwjwjOdOdOdOdOdOdOdOdOdwjwjwjwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBNzhBhBGOKIqXqXqXMgGOhBhBNzhBhBhBhBhBhBhBhBhBhBhBhBhBhBGOGOGOGOGOGOGOGOGOGOGOGOGOhBhBcAhBhBhBsghBhBcAcAcAhBmlcAcAhBhBab +oIMIFISJNNFIFIkeoMHJHJdFHJGBmvufmvRkRkwfRkqQUjDxMcFIFIFIzYFIFIgNFIFIFIFIFIFIFIFIFIFIFIiOFIFIFIFIFIFIaWJQFIFILbLbLbLbnKnKnKnKnKnKnKnKnKpzlSoppWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdwjwjwjOdOdOdOdOdOdOdOdOdOdOdwjwjwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBGOBrKIMgGOqcBTIJcTuoGOKIMgBrGOhBhBhBhBhBhBhBhBhBhBhBhBhBQycAcAcAcAcAcAcAJSGiKAfDGOGOuOGOGOGOqUtKZNGOGOGOGOGOGOGOGOhBsgab +oIayFISJFIFIFIkeIeIERudFdFHJmvyamvGzREvrRkRkcpDxFIaWFIFIFIFIFIFIFIFIUFFIFIFIFIFIFIFIFIFIFIFIFIFIyxFIFIFIFIFILbLbLbLbnKaZnKnKnKnKnKnKnKpzopBQpWnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdtoOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdwjfkOdOdOdOdOdOdOdOdOdOdOdsAGPwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBGOGOQAybagGOuYGKEOGKyXGODoAyEhGOGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAcAcAcAcAGOcugxwmgxGOvTXQNocKGOupmPXkPTVnGOcAsgab +oIMIrBSJFIIRJQkeQUHiZbZbZbHJyaHJyaHJHJHJHJKlcXDxFIFIzYFIFIFIFIFIyxFIUFFIFIFIFIFIFIFIFIFIFIFIDmFIFIFIFIulFILbLbFILbLbnKnKnKnKnKnKnKnKnKpzopoppWnKnKEdnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjOdOdOdOdOdOdOdOdOdOdOdOdwjwjwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBzPjpoJhderEOgDgDgDEOerhdoJiazPhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnQhBcAGOGOGOGOGOIOgxUBCvGOvTgxyIfOGOHOmPKaLLSNGOcAsgab +oIMIaWFIFIFIFIkeQUHiZbZbZbGsmvHJmvwEHJHJHJsCKuDxaWFIFIMcFIyxFIyxFIUFFIyxFIFIFIMcFIFIFIFIFIFIFIFIFIFIFIFIFILbLbLbLbLbnKnKnKnKnKnKnKnKaZpziWoppWnKnKnKUZnKnKpzopoppWnKnKnKnKnKnKnKnKnKnKgUnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdwjCEwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBLojphdWSGOZmbcvAABxTGOgQhdiamRhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOmzwwmzGOcRgxNtgPGOeTLtgSVjGOhAmPvXKSbrGOhBsgab +oIMIaWFIFIFIFIkeVRiYRuHJHJHJlNHJtmHJHJHJHJSOTyDxFIFIFIFIFIFIUFFIFIFIFIFIFIyxFIFIFIFIFIFIFIFIFIFIFIaWFIFIFIFILbLbLbLbnKnKnKnKYonKEdnKnKnKnKnKnKnKnKnKnKnKnKpzopoppWnKnKnKEdnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdKiOdOdOdOdOdOdOdOdOdOdOdOdOdwjwjkSabhBhBhBhBhBhBhBhBhBhBhBhBhBGOGOGOfiGOGOGOGOGOGOGOGOGOUpGOGOGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAAumzmzCqVWGxGxOsGrGOvcaPfYnGGOOsfVgxGxiHGOsgsgab +oIvtaWFIFIFIFImvmvmvmvmvmvmvmvHJmvHJHJHJHJZsvUDxFIFIJQFIFIFIFIFIFIFIFIFIFIyxFIFIFIFIFIFIFIyxyxFIFIFIFIFIFIFILbFILbnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKUZnKpzopoppWnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdXTOdjtOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdrZOdkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBADGOLdxoyVPUjstUalSlzQOYzfGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRvhBcAGOGOKGGOGOTZEQdxykWZOareykdEowLnGxGxmdXfGOcAsgab +oIOuFISJtTNNFJmvmvHEVDXwHJHJyaHJmvKTxMpHvzmvmvmvFJFIFIFIUFFIaWFIFIFIFIFIFIFIFIFIFIFIFIrfFIFIFIFIFIFIFIFILbLbLbLbLbnKnKYonKpzopoppWnKYoEdnKnKnKYonKnKUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBpjIMxoxovQakPdQwOYRDOYSPpjhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOZIoOUkGOGOaPnGGOGOGOGOGOdZGOGOKGGOGOGOGOcAsgab +oIMIbPSJFIFIFImvTKHJZbeZZbHJmvqNmvmvmvmvmvmvVOmvmvFIaWFIUFFIFIFIFIFIFIFIFIFIFIFIFIyxyxFIFIFIFIFIFIFIFIFIFIFILbLbLbnKEdnKmEpzopoppWnKnKnKnKnKnKaZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKthJpwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdwjOdkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBGOZqxoxoxoakPdQwOYOYWHOmGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcAaiZDmPPzKGCQnfSFqEDwMVebGObLGOmPmPBKicJfGOcAhBab +oINmFISJFIFIaWmvMdHJZbZbZbMZmvHJmvaJbkRcFOmvbarFmvFIFIFIFIFIJQFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFIFILbLbLbLbLbnKnKnKnKpzopoppWnKnKnKnKnKnKnKnKnKJmUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBpjxaxoxoxoakPdQwOYOYRDbzpjhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBffhBcATDJVxefVLOmPgxgPicGrYxreViEqKGveGxXkPTZBGOsghBab +oIMIFISJFIFIFImvzJihZbZbZbazmvHJyaHJDRCCfKmvbamhmvaWFIFIUFJQFIFIFIFJFIFIFIFIFIFIFIFIFIFIFIFIycFIFIyxFIFIFILbLbLbLbnKnKnKnKpzuIoppWnKnKnKnKnKnKnKnKUZUZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBhBGOGOGOGOGOqkCSxoxoakvoQwOYOYHmqyGOGOGOGOGOhBhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcATDcUPPmPKGgxswswswswGxmPGOdZGOWGgxKaLLSNGOsghBab +oIMIFIFINNFIFImvcGWuHJHJHJyvmvHJmvWuBnyOUXmvBtDhmvFIFIJQFIFIFIaWFIFIFIFIFIxIFIFIFIFIFINbFIFIFIFIFIFIyxFILbLbLbLbLbnKnKnKnKnKnKnKnKnKnKEdnKnKaZnKUZUZUZUZUZnKEdCZCZCZCZCZCZCZCZCZCZCZnKnKnKgUnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBGOGOedeCPSGOGOGOAFGOGOGOGOGOAFGOGOGOtaWiAmGOGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBcATDFMZXCtGOxDGOclGOxDGOOUGOzCowmaswvXKSbrGOhBsgab +oIMIFJSJFIJQFIFImvmvYTmmQCmvmvHJmvmvmvmvmvmvMqNfmvFIFIFIUFulFIUFUFUFUFFIFIFIFIFIFIaWFIUFlHlHNbFIFIFIyxFIFILbLbLbLbnKnKnKnKnKnKYonKnKnKnKnKnKUZUZUZUZUZUZUZUZUZCZBaCZBaCZBaCZBaCZBaCZnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBGObisUGOPdHbGOpJRytSEBLxEBypRyctGOTfpnPdPdbeGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBishBcABpFRGreYGOTwGOjXGOTwGOTwGOdZGOLNmPubmPglGOcAsgab +oIOuaWSJFIrqFIFImvWEXtWEWEXtmvyamvoiuTjYsbmvbababsUFFIUFFIFIFIlHFIFIFIUFUFFIFIFIFINbUFgNFIUFFIFIFIFIFIulLbFILbLbnKnKnKnKnKnKnKnKnKnKnKnKnKIPhkqZYNVuomhMhMHNHNCZEtqGEtqGEtqGEtqGEtqGnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdWJWJWJWJOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdjtXTOdOdOdOdOdOdOdtoOdOdOdOdOdOdOdOdOdOdOdXTOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBClFuhQLqPdeQGOUxRyRyRyRyRyRyRyhrGOromAPdTawCpjhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOBBGxDCGOGOGOGOGOGOGOGOGOhmGOGOKGGOGOGOGOcAsgab +oIMIFISJNNFIMcFIlRYlyxYlziyxrkYlbsbabafzlMmvogmvmvFIFIFIFIFIWBFIFIFIFIFIFIUFFIUFFIFIFIFIWBaWFIUFUFUFFIUFUFLbUFLbnKnKnKnKnKnKnKnKnKnKnKnKIPwYhMhMhMhMhMhMhMhMhMqGBanNBanNBanNBanNBanNhMVIVIVIVIEgkVkVkVkVkVkVkVkVkVkVkVkVkVkVkVkVWJWJWJWJWJUZUZUZUZOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBGOGOGOGOGOpKYVpOCfchchchchchchchqfVHaQchYVPdDAGOGOhBhBhBhBhBhBrHhBhBhBhBhBhBhBhBcAGOGOKGGOGOWTUDcfXHFtykFtykEuowtMmPAHmPAHGOcAsgab +oIvtaWSJyxFIFIFIlRxZyxYlYlziziYlmvmvmvmvmvmvmvmvFIFIFIFIFIFImvmvmvmveyeymvyamvmvmvmvmvmvmvFIFIFIFIyxFIUFLbLbyYLbnKmEnKnKnKnKUZUZnKnKUZUZhMhMhMhMhMhMhMhMhMhMhMBaBaBaBaBaBaBaBaBaBaBahMUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZUZOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBGOGOJYnHzasLGlGOfoZJZJWcAIvgVlVlTIGOiyafujYLCyGOGOhBhBhBhBhBhBhBhBhBhBhBhBhBcIhBcAAumzmzmzAuGxGxNjmPGOaPfYnGekGONjhDmPsICvGOhBsgab +oIOuaWFIFIFIFIaWlRziyxyxziYlziziziziYlYlyxziyxlRFIFIYlFIFIFImveJmGlQHJHJHJHJZyfNmvoQoQoQmvFIFIFIFIyxFIFILbUFUFLbnKnKnKnKUZnKnKnKnKUZnKUZhMhMhMhMhMhMhMhMhMhMhMBaBaBaBaBaBaBaBaBaBaBahMZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgZgUZUZUZUZOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBGOoRyPosUopMGOGOxCJIBeGOBexCJIGOGOnXxyIflsLyGOhBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsgcAGOmzXVmzGOklgxcRgxGOBVzIgxgxGOzFmPXkPTZBGOcAsgab +oINmaWFItTFIFIFIUQoGoGoGoGoGoGFmoGoGoGoGoGoGoGnOFIMcFIFIFIyxmvTdHJHJHJHJHJHJHJHJYShfhfhfbvlHFIFIFIyxFIFIUFLbUFiJnKnKnKnKnKnKnKnKnKQcnKnKCZqGyayaqGCZCZCZCZCZCZqGBanNBanNBanNBanNBanNhMnKnKnKnKACZTZTZTZTZTZTZTZTZTZTZTZTZTZTZTZTZnZnZnZnZnZgZgZgZgOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBGOgetrzDryHdGOGOaLMbMbMbMbMbXAGOGONyuByFiuNuGOhBhBhBhBhBhBhBhBhBhBhBhBhBhBYPsgcAGOGOGOGOGOUBgPNtSjGOaTezyUjIGOzcgxKaLLSNGOcAsgab +oIMIFIFIFIMczYFItTFIFIFIFIJQFIFItTFItTFIFIFIFIzYFIFIFIaWJQFImvyamvyamvyamvHJHJHJmvhfhfhfbvFIFIFIFIFIFIlHLbLbUFUFnKnKnKnKnKnKnKnKnKnKnKnKCZmDBaBabdALRpmfALyfmfCZEtqGEtqGEtqGEtqGEtqGnKgUnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdZnZnZnZnOdOdOdOdOdjtOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdxsOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBGOGOVaVaVaGOGOZzMbMbMbMbMbMbMbZzGOGOVaVaVaGOGOhBhBhBhBhBhBhBhBhBhBOWsgsgsgsgsgcARZkrllJyGOwmgxpxgxGOISKpxBdLGOTWGxvXKSbrGOcAhBab +oIayFJSJtTFIFIFIFIzYFIFIMcFIFIFIJQFIFIFIJQFIFIFIFIFIFIFIFIFImvmomvUymvUymvINfwINmvyHyHyHmvFIyxyxFIFIFIFILbUFLbUFLbnKnKnKEdnKnKnKnKnKnKnKdHBaBaBaBaBaBaBaBaBaBaCZBaCZBaCZBaCZBaCZBaCZnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBGOGOraOyOyOyraGOGNhBhBhBhBhBhBJaGOGOraOyOyOyraGOGOhBhBhBhBhBhBhBhBhBcAcAcAcAcAcAcAOyOyOyOyGOGOuOGOGOGOqUtKZNGOGOGOGOGOGOGOGOcAhBab +oIMIgNSJFIFIzYFIFIgNFIFIFIFIFIFIFIFItTFIFIFIFIFIFIFINNFIulFImvmvmvmvmvmvmvoqmvoqmvmvmvmvmvtTFIFIFItTxIFItTFILbUFLbnKnKnKnKnKnKnKnKnKnKnKNaBaBaBaBaUtModwdwModwCZCZCZCZCZCZCZCZCZCZCZnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBGOhBhBhBhBhBhBhBGOhBhBhBhBhBhBhBGOhBhBhBhBhBhBhBGOhBhBhBhBhBhBhBhBGOGOGOGOGOGOGOGOGOGOGOGOGOcAcAcAcAcAcAcAcAsgcAcAcAcARFcAcAhBhBab +oIOuaWFIFIFIFItTFIFIFIFIFItTFIFIFIFIFIFIFIFIFIFItTFIFItTtTFIFIFIFIFIFIFIFIFIFItTtTFIFIFIFIFIFIFIFIFIFIFIFILbLbUFUFLbnKnKnKnKnKnKmEnKnKnKdHBaBaBaBaBaBaBaBaBaBaCZnKnKnKnKnKnKnKnKnKnKnKnKnKnKnKWqwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBhBhBhBhBnphBhBhBhBhBhBhBhBhBhBhBsgsgsgsgsghBhBsgsgsghBhBsghBhBcAhBcAcAcAhBcAcAsgcAcAcAcAJZcAcAsgsgab +oIvtFISJSJFISJSJFIFIFISJSJSJFISJSJSJSJFISJSJSJFIFISJSJFIFIFIFIFISJSJFISJFIFISJKzKzFISJFIFIFIFISJSJSJFIFIFISJLbLbUFUFLbnKnKnKnKnKnKnKnKnKCZALRpmfgAdwHWHWqwGdkCCZOhOhOhOhOhOhOhnKnKnKnKnKnKnKnKthJpwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBsgcAhBhBcAcAhBcAcAsgrlcAcAcAJZcAcAsghBab +oIOuaWaWFIFIMcFIFIFJFIaWaWFJaWFIFIFIbPFIFJMcaWaWFIFIFIaWiqaWFIaWFJaWFIFIbPaWMcFIaWFIbPaWaWFIFJaWFIFIhVFIFIFJulLbUFLbiJQzLbnKnKnKnKnKnKnKCZCZCZCZCZCZCZCZCZCZCZCZOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjwjOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdOdkSabhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOuayvtMIGwMIayGwMIayOuKsMIMIayvtMIGbayMIKsGwayMIvtayOuOuMIayMIGwMIvtMIOuMIOuMIDDGbOuMIWaMIOuayOuvtMIDDOuMIhshshshsMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIkSewLJLJhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIAWAWAWAWMIkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATANgNgNgNgNgNgNgNgNgNgNgNgGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAkSFKEIkSkSkSivkSriMbLJhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBhBRFhBhBhBhBab +oIOiAWAWkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSkSMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAkuZfZfZfZfhtZfZfZfZfhtZfZfZfYRZfhthtZfYRhtZfZfZfZfZfhtZfZfZfZfZfhtZfZfZfZfZfZfhtZfZfZfYRZfhthtZfwDZfZfdymNhtZfZfSSMbLJhBhBhBhBxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxhxh +oIFzAWAWkSkSzqgxNkJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNJNMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIhshshshsMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMITCTCWKWKWKdcdcnFWKWKWKWKWKWKWKnFdcdcWKWKWKWKnFAakukuZfZfZfZfZfZfZfZfZfZfZfZfZfZfYRZfZfZfZfYRQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvYRZfZfZfZfwDQvQvQvQvQvOjmYOPMbLJhBhBhBhBxhNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgYITCIjYIYIYIYIxh +oIAWAWAWkSkSrQgxgxVXVXgxJUVAHvHvVAwJwJVAvdvdVAeReRVAgxfAJNJNTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAMIMIOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhOhMITCTCYIYIYIYIIjIjYIYIYIYIYIYIYIYIdqYIYIYIYIdqdqYIWKWKNgNgNgNgNgNgNgNgNgNgNgNgNgNgGAuRQvQvOjGAvkfTAtGomMhdvkhdvkPHMWDBMWHlvkhdvkhdfTGoWDmMvkGAuRQvQvOjkSvkhdvkhdvkhqZfSSMbLJhBhBhBhBxhGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGANgNgYIIjIjYIYIdqYIxh +oIAWAWAWkSkSbogxgxJNJNgxJUgxHvHvgxwJwJgxvdvdgxeReRgxgxfAJNJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTAMIMIOhOhXeXeAWAWAWAWAWAWAWAWXeXeAWAWAWAWXeOhOhMITCTCTCYIYIYIIjIjYIYIYIIjYIYIYIYIIjTCYIYIdqdqdqYIYINgNgNgNgNgNgNgNgNgNgNgNgNgNgNgGAVylgznhqGAhdsPJxHjXrvkhdvkhdkZJcZfJcOIhdvkhdvksPrNxPXrhdGAVylgznhqkSYiSztjiLbTGFuQrivJvJvJvJvJvJxhGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGANgNgIjYIYIdqYITCYIxh +oIAWAWAWkSkSkSkSkSkSJNgxJUgxHvHvgxwJwJgxvdvdgxeReRgxgxfAJNJNTAeGeGjZeGeGhceGeGeGeGjZeGeGeGeGeGeGjZeGeGeGeGeGeGeGhceGeGJCJNJNJNJNJNJNJNJNJNJNJNJNyTJCTAMIMIOhOhXeAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWXeOhOhMITCTCYIYIYIIjIjYIYIYIYIYIYIYIYIYIYIdqTCTCTCdqYIYIYIYIGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAVyznlghqGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAVyznlghqkSkSkSkSkSkSkSkSriririririribKBhGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrVtfCVtIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGANgNgYIYIYIYIYIYIYIxh +oIAWAWAWkSkSkSkSkSkSJNgxJUgxHvHvgxwJwJgxvdvdgxeReRgxgxfAJNJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNawoBgCHZlqplkhHZkRkzlZyTJCTAMIMIOhXeXeAWAWAWAWOrOrOrOraNaNOrOrOrOrAWAWXeOhMITCTCYIIjIjIjYIYIYIYIdqYIYIYIdqYIdqTCYITCYIYIYIdqdqYIGAVyznlgznlgYpMFoVznlgznlghqGAVylgznhqGAYmNlNlAlAlqVAoqVzEtnrjRCcSeERmckQvWCPXvIDygJwKGAVylgznhqGANgGAYsMfhHXUPJOLBqZfZfZfcNGAxhGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGANgNgYIYIdqdqYIIjYIxh +oIAWAWAWAWAWAWAWkSkSJNgxJUgxHvHvgxwJwJgxvdvdgxeReRgxgxfAJNJNTAeGeGeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNBWCKCXHZBWEOCXHZBWCKCwyTJCTAMIMIXeAWAWAWAWAWOrOraNWeaNaNaNaNWeaNOrOrAWAWOhMITCTCYIIjIjIjYIIjIjYIYIYIYIYIYIYIIjTCYIYIYIdqdqdqdqYIGAVyOnOnOnOnYpMFoVOnOnOnOnhqGAVyznlghqGAJEIsbWbWbWBUjNjNiKajHJTcHJUeVyhlsJYOyDPNvkOXFQGAVyznlghqGANgGAjDSWyMyMyMyMyMyMyMyMyMGAxhGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGANgNgYIYIYIIjYIYIYIxh +oIAWAWAWAWAWAWAWkSkSJNgxJUgxHvHvgxwJwJgxvdvdgxeReRgxgxfAJNJNTAeGeGeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGqaeGeGeGjZeGJCJNsTCKxwHZduEOQOHZkIeWcgyTJCTAMIMIXeAWXeAWAWAWOraNaNaNaNaNaNaNaNaNaNOrAWAWOhMITCTCYITCTCYIYIYIYIYIYIYIdqdqdqdqdqdqYIYIYIYIYIYIYIYIGAVyOnOnOnOnYpMFoVOnOnOnOnhqGAVylgznhqGADJhqrhZfZfZfZfZfrhtnHJuaHJeEVyspspYOPmvkhdvkZOGAVylgznhqGANgGAGAGAGAGAGAGAGAGAGAGAGAGAxhGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGANgNgYIYIdqIjYIYIYIxh +oIAWAWAWAWAWAWAWkSkSJNgxgxvNgxgxvNgxgxgxgxgxgxgxgxgxgxgxJNJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGLjeGeGeGeGeGeGeGeGjZeGeGeGeGJCJNdoCKjlHZuPEOCXHZeKCKDuyTJCTAMIMIAWAWAWAWAWAWOraNaNOrOrOrOrOrOraNaNOrAWAWOhMITCTCYITCTCYIYIYIYIYIYIIjIjYIYIYIYIYIYIdqdqYIYIYIYIYIGAVylgznlgznYpMFoVlgznlgznhqGAVyznlghqGAuehqZfJbPaCNhOhOZfajetBYzHUeVyLQlaYOvkhdeAoUIUGAVyznlghqGANgGANgNgNgGAZfZfZfGANgNgNgGAxhGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGANgNgYIYIdqYIYIdqYIxh +oIAWAWAWAWAWAWAWkSkSJNJNJNJNJNJNJNgxgxgxgxgxgxgxgxgxgxgxJNJNTAeGeGeGLjeGeGeGeGeGeGeGeGeGeGeGeGeGeGLaeGeGeGeGeGeGeGeGeGJCJNbVCKFXHZNpEOMUHZmCCKzMyTJCTAMIMIAWXeAWAWAWAWOraNaNOrwPxEblKWOraNaNOrAWAWOhMITCTCYIIjYIYITCIjYIYIIjIjIjIjIjIjdqdqYIYIYIYIIjIjYIYIGAVyOKOKOKOKYpMFoVOKOKOKOKhqGAVylgznhqGAKUhqZfQYQYZfeDNcZfvkkZFbOIvkHebWbWFdbWbWLvbWSpGAVylgznhqGANgGANgNgGAGAZfyKZfGAGANgNgGAxhGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGANgNgdqdqdqdqYIYIYIxh +oIMIMIMIMIMIMIMIkSkSkSkSkSkSkSkSJNgxgxvNgxgxgxgxvNgxgxgxJNJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNVUEOKoxLpLEOKopeEOEOVzyTJCTAMIMIAWAWAWAWAWAWaNaNaNaNaNaNaNaNaNaNaNaNAWAWXeMITCTCYIIjIjIjdqTCdqdqdqIjdqTCTCdqdqYIYIYIYIYIIjIjIjYIGAVyOKOKOKOKYpMFoVOKOKOKOKhqGAVyznlghqGAEHhqZfqtqtZfRhuZZfhdkZZhOIhdOEQvQvsaQvQvckQvjSGAVyznlghqGANgGANgGAGAjLZfFxZfjLGAGANgGAxhGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAYIYIYIYIYIIjIjYIYIxh +oIMITAJCJCJCJCJCJCJCJCJCJCJCJCJCJNJNJNJNJNgxgxJNJNJNJNJNJNJNTAeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGhceGeGeGeGeGeGeGJCJNbVCKxpdvAeEOxpGvCKCKCHyTJCTAMIMIAWXeAWAWAWAWaNaNaNaNaNaNaNaNaNaNaNaNAWAWXeMITCTCYIIjYIYIYIYIYIYIYIYIYIdqdqdqYIYIYIkuYIdqIjYIdqYIGAVyznlgznlgYpMFoVznlgznlghqGAVylgznhqGALshqZfZVZxCNRhuZZftnkZrhOIeEVyhlsJYOKNvkhdvkNeGAVylgznhqGANgGAGAGAChQvChQvChQvChGAGAGAxhGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAYIYIYIYIYIdqIjYIYIxh +oIMITAJCJNJNJNJNmPmPmPJNJNJNJNJCJNJNJNJNJNgxgxJNJNJNJNTATATATAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGjZeGJCJNJlCKIqHZBWEOCXHZCKCKgtyTJCTAMIMIAWAWXeXeAWAWOraNaNOrceXdILxWOraNaNOrAWAWXeMITCTCYIIjYIYIIjYIYIYIkudqdqdqdqYIYIYIkugikuYIYIYIdqYIGAVyLMEeEeLMYpMFoVLMEeEeLMhqGAVyznlghqGAbhhqrhZfZfZfZfZfrhajkZZfOIUeVyspspYOxzhdvkhdGDGAVyznlghqGANgGAcFCIqTXLqTNSqTXLqTCIcFGAxhGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAYIIjIjYIYIdqYIYIdqxh +oIMITAJCJNgsitgsmPmPmPgsHhgsJNJCJNJNJNIIIIhIpIIIIIJNJNTAeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGJCJNFZCKCXHZBWEOCXHZCKCKqoyTJCTAMIMIAWAWAWAWAWAWOraNaNOrOrOrOrOrOraNaNOrAWAWAWMITCTCTCIjYIIjYIYIYIkuZEkuYIIjYIYIYIYIYIkuYIYIdqYIYIYIGAVyEeEeEeEeYpMFoVEeEeEeEehqGAVylgznhqGAFGDnQvQvQvQvQvQvQvtnkZFbOIeEVyLQlaYOwZvkhdvkNeGAVylgznhqGANgGApgpgpgpgpgpgpgpgpgpgpgGAxhGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAYIIjIjYIYIIjIjYIYIxh +oIMITAJCJNmPmPmPmPmPmPmPmPmPJNJCJNoopIhIhIhIhIhIhIpIJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGUAeGeGeGeGeGeGJCJNpwbCysHZBWEOCXHZIZtCEkyTJCTAMIMIAWAWAWAWAWAWOraNaNaNaNaNaNaNaNaNaNOrAWAWAWMITCTCTCIjYIYIYIYIYIYIkuGAGAIjkuHkkuYIYIYIYIYIkuHkkukgGAkKlgznlgznYpMFoVlgznlgzntEGAKymzmzmzGAdJvPzmtvWdGIFjztKPajkZZfOIUeamLvbWavQnwMAPXKaSGAKymzmzmzGAGAGAGAeIeIeIeIeIeIeIeIeIGAGAGAGAGAGAsRHJVcGAGAGAGAGAsRHJVcGAGAGAGAGAsRHJVcGAGAGAGAGAsRHJVcGAGAGAGAGAsRHJVcGAGAGAGAGAsRHJVcGAGAGAGAGAsRHJVcGAGAGAYIdqTCTCTCdqYIYIYIxh +oIMITAJCJNmPmPmPmPmPmPmPmPmPJNJCJNooByBydRHxhIrrhIwpJNTAeGeGeGeGeGeGeGeGeGLaeGeGeGeGeGUAeGeGeGeGeGeGUAeGeGeGeGeGeGeGeGJCJNJNJNJNJNBWEOCXJNJNJNJNyTJCTAMIMIAWAWAWAWAWAWOrOraNqjaNaNaNaNqjaNOrOrAWAWAWMITCTCYIYIYIYIdqYIYIYIYIGAGAGACRgLguGAGASvGAGACRgLguGAGAGAEbmzmzmzGAMXGAEbmzmzmzGAGAVyznlghqGAGAGAGAGAGAGAGAGAGAGAMXYRMXGAGAGAGAGAGAGAGAGAGAGAVyznlghqGAFDvkhdvkhdvkhdvkhdvkhdvkhdvkJdGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptDkGAptptHJHJHJptptGAptptHJHJHJptptGAYIdqYITCTCTCYIYIYIxh +oIMITAJCmPmPmPmPmPmPmPmPmPmPmPJCJNRHByBySkgEByPlByhIhITAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGUAeGeGeGUAeGUAJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTAMIMIAWAWAWAWAWAWAWOrOrOrOraNaNOrOrOrOrAWAWAWAWMITCTCTCYIYIYIdqYIYIYIYIYIGArhZfErZfZfZfZfZfZfZfFTQvQvGAYtQvQvQvQvkwQiDnQvQvQvQvYtGAVylgznhqGAlyhdvkhdvkhdvkhdvkhdkZZfOIhdvkhdvkhdvkhdvkhdJRGAVylgznhqGAvkwxkfkTkfkTkfkTkfkTkfkTkfojvkGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAYIIjYIYIYIIjYIYIYIxh +oIMITAJCmPmPmPmPmPmPmPmPmPmPmPJCJNNihIhIbBymByoSByhIhITAeGeGeGeGeGeGeGJDeGeGLjeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGeGeGJDeGJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTAMIMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITCTCYIYIYIdqdqYIYIYIYIkukFZfZEZfZfZfZfZEZfZfrhVyznlgqTlgzniNlgLwLwMFjvjvznpdpdlgGAsYznlgunGAhdetLuLuLuLuzHvkhdvkkZrhOIvkhdvketLuLuLuLuzHhdGAVyznlghqGAhdQXZEfXWhfXWhfXWhfXWhfXZEuKhdGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAYIIjYIYIYIdqYIYIYIxh +oIMITAJCmPmPmPmPmPmPmPmPmPmPmPJCJNsWhIhInIkYhIdPhIJqJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGhceGeGjZeGeGeGTAMIMIAWAWAWAWAWAWAWAWAWAWAWAWXeAWAWAWAWAWAWAWAWMITCTCYIYIYIYIYIIjYIYIYIHkQVPfZfrhZfZfZfIrZfZfZfVylgznqTznlgiNznLwLwMFjvjvlgpdpdznkFVylgznhqkFvkkZYHkHtfNDOIXEvkhdkZFbOIhdvkhdkZYHkHDbjoOIvkkFVylgznhqkFvkFVxqEJUzrhwrZfwrrhUzxqEJkbvkGARuRuRuHJRuRuRuGARuRuRuHJRuNERuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGAYIIjYIYIYIdqYIYIYIxh +oIMITAJCJNmPmPmPmPmPmPmPmPmPJNJCJNsWByByYwoHhIKKhIBoJNTAeGeGeGeGjZeGeGeGjZeGeGeGeGeGeGeGeGeGeGeGeGWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbTAMIMIAWAWXeAWAWAWAWAWAWAWAWAWXeXeXeAWAWAWAWAWAWMITCTCTCYIYIYITCIjYIYIYIkuYrZfZfZffyQvQvQvQvQvRWVyznlgqTlgzniNlgLwLwMFjvjvznpdpdlgYrHebWbWinYrhdkZWyxPiTquOIvkhdvkkZZfOIvkhdvkkZrNxPiTiXOIhdYrHebWbWinYrhdQXMOjawrQvQvQjQvQvwrMOjauKhdGABFPOcjHJBFPOcjGABFPOcjHJBFPOcjGABFPOcjHJBFPOcjGABFPOcjHJBFPOcjGABFPOcjHJBFPOcjGABFPOcjHJBFPOcjGABFPOcjHJBFPOcjGACRgLguGAYIIjIjYIYIxh +oIMITAJCJNmPmPmPmPmPmPmPmPmPJNJCJNzLByBybQNsByEABydpJNTAeGeGeGeGeGeGhceGeGeGeGeGeGeGeGeGeGeGeGjZeGWbwOFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfFfTAMIMIAWXeXeXeYdYdGpYdYdAWXeXeXeGpGpwUGpGpAWAWXeMITCTCTCIjdqIjdqdqYIYIYIYIGAZfZfZfVyNUjKRVjKIAhqVylgznFvznlgiNznLwLwMFjvjvlgpdpdznGAGuCNCNGuGAvkHDANANANANqphdZEqPkMzdkMAkZEhdHDANANANANqpvkGAGuCNCNGuGAvkFVfXwrrucEqTVoqTHTMywrfXkbvkGAbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWbWlphdMJhdGAYIIjIjYIYIxh +oIMITAJCJNmPofmPmPmPmPmPofmPJNJCJNEchIhIpDOVByEABywLJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGeGWbCoQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmTAMIMIAWXeXeXeldKFKFKFmHXeXeEZXeldKFKFKFKFKFmHXeMITCTCYIYIIjTCdqYIYIkuYIYIGAZfZfZfVyUrrharrhYhhqHebWbWGAbWbWbWbWbWbWbWbWbWbWbWbWbWGAZfZfZfZfGAhdvkhdvkhdvkhdvkjCrhZfZfZfrhGRvkhdvkhdvkhdvkhdGAZfZfZfZfGAhdQXWhdKauwAbWbWbWPGvReUWhuKhdGAckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckQvQvckkwvkhdvkkFYIYITCTCTCxh +oIMITAJCJNJNJNJNmPmPmPJNJNJNJNJCJNxKhIhIXpfehIInhIskJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmQmTAMIMIAWAWldKFXmYIYIYIBumHXeldKFXmYIYIYIYIYIQLAWMITCTCYIYIdqIjYIYIkuZEkuYISvZfZEPRVyQZarPcarhZhqZfCNZfYRCNZfZfCNZfZfrhZfZfCNZfZfCNYRZfrhrhZfYRygCFTJCFYawdYaCFkMZfeennyGZfhhUOygRsygUOtDUOygYRZfrhrhZfYRvkFVfXwrGxhqrhXDrhVyqTvlfXkbvkYRznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlgznlghdvkhdQVYIdqdqTCTCxh +oIMITAJCJCJCJCJCJCJCJCJCJCJCJCJCJNvuByBySfXuhIFNhIMGJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGWbCoQmQmQmQmQmQmQmQmmbmbmbQmQmQmQmQmQmQmQmQmQmQmQmTAMIMIAWAWDVYIYIYIYIYIYIQLXeDVYIYIYIYIYIYIpofIAWMITCTCYIYIdqdqYIYIYIkuYIYIGAZfZfZfVyUrrharrhYhhqOEQvQvGAQvQvQvQvQvQvQvQvQvQvQvQvQvGAZfZfZfZfGAhdvkhdvkhdvkhdvknmrhZfZfZfrhGRvkhdvkhdvkhdvkhdGAZfZfZfZfGAhdQXWhdKruaIQvQvQvQscEeUWhuKhdGALvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvbWbWLvlpvkhdvkYrdqIjYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGeGTAJNzVByBysGKVByXnBylnJNTAeGeGLjeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmQmQmmbmbmbmbmbmbmbmbmbmbQmQmmbmbQmQmQmmbmbTAMIMIAWAWizbgoaYIYIYIYIQLXeDVYIYIYIYIYIYIQLXeAWMITCTCYIYIYIdqTCYIYIYIYIYIGAZfZfZfVyDPytnPytlhhqVylgznqTznlgiNznLwLwMFjvjvlgpdpdznGAGuCNCNGuGAvketLuLuLuLuzHhdZEMezyTMuikpZEhdetLuLuLuLuzHvkGAGuCNCNGuGAvkFVfXvlauvRqTqvqTpmqsvlfXkbvkGAQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvQvkwhdMJhdGAYIIjYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGeGTAJNMthIhIhIByByByByMGJNTAeGeGeGeGeGeGLjeGJDeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWXeXeDVYIYIRoYIQLXeDVYIYIYIYIYIYIQLXeAWMITCTCTCYIYIYIIjYIYIYIYIkukFZfZfZfRSbWbWbWbWbWpVVyznlgqTlgzniNlgLwLwMFjvjvznpdpdlgkFOEQvQvdgkFhdkZSTkHXRYHOIvkhdvkkZZfOIvkhdvkkZWykHYHBHOIhdkFOEQvQvdgkFhdQXxqEJvlbWbWlvbWbWvlxqEJuKhdGACACPDtHJCACPDtGACACPDtHJCACPDtGACACPDtHJCACPDtGACACPDtHJCACPDtGACACPDtHJCACPDtGACACPDtHJCACPDtGACACPDtHJCACPDtGACRgLguGAYIIjYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGhceGeGeGTAJNJNhIhIhIhIhIhIhIJNJNTAeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGhceGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWXeXeDVYIYIYIYIQLXeizoaYIYIYIYIYIQLAWAWMITCTCTCIjYIYIIjYIYIYIYIHkQVPfZfrhZfZfZfrcZfZfZfVylgznqTznlgiNznLwLwMFjvjvlgpdpdznYrVyznlghqYrvkkZTPxPJxHjOIhdvkhdkZFbOIhdvkhdkZtfxPJxliOIvkYrVyznlghqYrvkFVMOjawarhvlZfvlrhwaMOjakbvkGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGARuRuRuHJRuRuRuGAYIYIdqYIYIdqYIYIYIxh +oIMIeGeGeGeGeGLjeGeGeGeGeGeGeGTATATATATATATATATATATATATAeGeGjZeGeGeGeGeGeGeGeGeGUAUAeGeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWXeXeDVYIYIYIYIQLXeGZDVYIYIYIYIpofIAWAWMITCTCTCIjYIYIIjdqTCTCYIkuYrZfZEZfZfZfZfZEZfZfrhVyznlgFvlgzniNlgLwLwMFjvjvznpdpdlgGAsYlgznunGAhdHDANANANANqpvkhdvkkZrhOIvkhdvkHDANANANANqphdGAVylgznhqGAhdQXZEfXWhfXWhfXWhfXWhfXZEuKhdGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAHJHfHJHJHJHfHJGAYIIjIjYIYIdqYIYIdqxh +oIMIeGeGeGhceGeGeGeGeGeGeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWldKFXmYIYIYIYIQLXeldXmYIYIYIYIQLXeAWAWMITCTCYIIjYIYIIjTCTCYIYIYIGArhZfGGZfZfZfZfZfZfZfjhbWbWGARabWbWbWbWlprzIsbWbWbWbWRaGAVyznlghqGAmUhdvkhdvkhdvkhdvkhdkZZfOIhdvkhdvkhdvkhdvkhdNOGAVyznlghqGAvkLpPkfQPkfQPkfQPkfQPkfQPkQBvkGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAHJHJHJheHJHJHJGAYIIjIjYIYIIjIjYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGLjeGeGjZeGeGWbCoQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWDVYIYIYIYIYIYIQLXeDVYIYIYIYIYIQLXeAWAWMITCTCTCYIYIYIIjIjTCYIYIGAGAGACRgLguGAGASvGAGACRgLguGAGAGAEbmzmzmzGAMXGAEbmzmzmzGAGAVylgznhqGAGAGAGAGAGAGAGAGAGAGAMXYRMXGAGAGAGAGAGAGAGAGAGAGAVylgznhqGAUJvkhdvkhdvkhdvkhdvkhdvkhdvkUmGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAptptHJHJHJptptGAYIYITCTCTCYIYIYIYIxh +oIMIeGeGLaeGeGeGeGeGeGeGeGJDeGTATATATATATATATATATATAjbeGeGeGhceGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWDVYIYIYIYIYIYIQLXeDVYIYIYIYIYIBumHAWAWMITCTCTCYIYIYIdqIjdqIjkuGAGAYIkuHkkuYIYIYIYIYIkuHkkuGAGAkKlgznlgznYpMFoVznlgznlgtEGAKymzmzmzGADrnBEwtwGADrnBqegIGAkZZfOIGADrnBZbAxGADrnBcJXNGAKymzmzmzGAGAGAGAeIeIeIeIeIeIeIeIeIGAGAGAGAGAGAxXHJsRGAGAGAGAGAxXHJsRGAGAGAGAGAxXHJsRGAGAGAGAGAxXHJsRGAGAGAGAGAxXHJsRGAGAGAGAGAxXHJsRGAGAGAGAGAxXHJsRGAGAGAYIdqdqTCTCTCYIYIYIxh +oIMIeGeGeGeGeGeGeGeGLjeGeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGeGLjeGeGeGjZeGeGeGeGeGeGjZLjeGeGWbCoQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWDVYIYIYIYIYIYIQLXeDVYIYIYIYIYIYIQLXeAWMITCTCTCIjdqYIYIdqIjkuZEkuYIYIYIYIYIYIYIkuYIYIYIYIYIYIGAVyLMrYrYLMYpMFoVLMrYrYLMhqGAVyznlghqGATcHJEwEwGATcHJqeqeGAkZrhOIGATcHJZbZbGATcHJcJcJGAVyznlghqGANgGApgpgpgpgpgpgpgpgpgpgpgGANgGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAYIIjdqYIYIIjYIYIYIxh +oIMIeGeGeGeGeGeGeGJDeGeGeGeGeGTATATATATATATATATATATAjbeGeGeGjZeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWDVYIYIYIYIYIYIQLXeDVYIYIYITxYIYIQLXeAWMITCTCTCIjdqYIYIYIYIYIkuYIYIYIYIYIYIYIkugikuYIYIYIYIYIGAVyrYrYrYrYYpMFoVrYrYrYrYhqGAVylgznhqGAmUHJHJciGAmUHJHJciGAHDcHqpGAmUHJHJciGAmUHJHJciGAVylgznhqGANgGAcFCIcFGxcFVkcFGxcFCIcFGANgGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAYIIjYIYIYIYIYIdqdqxh +oIMIeGeGeGLjeGeGeGeGeGeGeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGeGeGeGeGeGeGeGeGUAeGeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWizoaYIYIYIYIYIQLXeDVYIYIYIYIYIpofIXeAWMITCTCYIYIdqYIYIYIYIYIYIYIYIIjYIYIYIYIYIkuYIYIYIdqYIYIGAVyznlgznlgYpMFoVlgznlgznhqGAVyznlghqGAGAYRGAGAGAGAGAYRGAGAHJHJHJGAGAYRGAGAGAGAGAYRGAGAVyznlghqGANgGAGAGAbWbnbWbWbWbnbWGAGAGANgGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAZfucfbBdfbCnZfGAYIIjYIYIYIYIYIYIYIxh +oIMIeGeGeGjZeGeGeGeGeGeGhceGeGTATATATATATATATATATATAjbeGeGJDeGeGeGeGeGLaeGeGeGeGeGeGeGeGeGjZeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWXeizoaYIYIYIYIQLXeizoaYIYIYIpofIXeXeAWMITCTCYIYIYIYIYIYIIjYIYIYIYIYIYIYIYIYIYIYIIjIjdqdqYIYIGAVyLiLiLiLiYpMFoVLiLiLiLihqGAVylgznhqGADSHJHJHJMaHJHJHJHJMaHJHJHJMaHJHJHJHJMaHJHJHJhYGAVylgznhqGANgGANgGAGAuvZfFxZfuvGAGANgGANgGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAZfLFqTGxqTStZfGAYIdqYIYIYIYIYIYIYIxh +oIMIeGeGeGeGeGeGeGeGjZeGeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWXeXeizbgbgbgbgfIXeXeizbgbgbgfIXeXeAWAWMITCTCTCIjYIIjYIYIIjYIYIYIYIYIdqdqdqdqIjdqIjIjdqYIYIYIGAVyLiLiLiLiYpMFoVLiLiLiLihqGAVyznlghqGAHFHJHJHJMaHJHJHJHJMaHJHJHJMaHJHJHJHJMaHJHJHJMLGAVyznlghqGANgGANgNgGAGAZfBlZfGAGANgNgGANgGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAZfDeGxqTGxoFZfGAYIdqYIYIYIYIYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGhceGeGeGeGeGUAeGeGeGeGeGhceGeGeGWbCoQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWAWXevxvxEivxvxEZXeXevxvxvxvxvxXeAWAWAWMITCTCTCIjYIYIYIYIYIdqdqYIdqYIIjIjTCTCdqTCdqTCdqdqYIYIGAVylgznlgznYpMFoVznlgznlghqGAVylgznhqGAGAYRGAGAGAGAGAYRGAGAGAYRGAGAGAYRGAGAGAGAGAYRGAGAVylgznhqGANgGANgNgNgGAZfZfZfGANgNgNgGANgGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGAZfwedrSXdrdiZfGANgNgdqYIYIYIdqYIYIxh +oIMIeGeGeGeGeGeGeGeGeGLjeGeGeGTATATATATATATATATATATAjbeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGWbCoQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWAWAWAWAWAWAWAWXeXeAWAWXeXeXeXeXeAWAWAWMITCTCTCYIYIIjYIYITCTCYIdqdqYIYIdqdqdqIjIjYIYIYIYIYITCGAVyqBqBqBqBYpMFoVqBqBqBqBhqGAVyznlghqGAsXHJHJciGAnlHJHJciGAbJOYaEGAnlHJHJciGAnlHJHJciGAVyznlghqGANgGAGAGAGAGAGAGAGAGAGAGAGAGANgGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGAZfZfZfCNZfZfZfGANgNgNgYIYIYIdqdqYIxh +oIMIeGeGeGhceGeGeGeGeGeGeGeGjbJCJCJCJCJCJCJCJCJCJCJCjbsreGeGggYCggeGeGeGeGeGUAUAeGeGeGeGeGeGeGeGeGWbCoQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWAWAWAWAWAWAWAWXeAWAWAWAWAWAWAWAWAWAWAWMITCTCYIYIYIYIYIIjIjYIYIYIYIYIYIYIYIYIIjYIYIYIYIYIYIYIGAVyqBqBqBqBYpMFoVqBqBqBqBhqGAVylgznhqGApYHJZbZbGApYHJEoEoGAGACKKXGApYHJDRDRGApYHJlAlAGAVylgznhqGANgGAZfZfZfCNZfZfZfCNZfZfZfGANgGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGAGAGAGAYRGAGAGAGANgNgNgdqYIYIdqYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJCJCJCJCJCJCJCJCJCJCJCjbjVjVjVJCJCJCJCJCJCJCJCJCJCJCJCJCeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMITCTCYIYIdqYIYIYIYIYIYIYIIjYIYIIjIjIjYIYIYIYIYIIjYIYIGAVyznlgznlgYpMFoVlgznlgznhqGAVyznlghqGADrnBZbAxGADrnBEoeoGAbJOYScGADrnBDRBSGADrnBlATQGAVyznlghqGANgGAZfZfZfZfZfMPZfZfZfZfZfGANgGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGANgNgNgNgIjIjIjYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJNJNJNJNfSfSfSJNJNJNJNjbJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCeGeGeGeGeGeGWbCoQmQmQmmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbTAMIMIAWAWAWAWyCyCyCyCKmKmyCyCyCyCAWAWAWAWAWAWAWMITCTCYIYIYIYIYIYIYIYIYIYIYIYITCYIYIYIYIYIYIYIYIYIYIYIGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAVylgznhqGAGAGAGAGAGAGAGAGAGAGAGACKKXGAGAGAGAGAGAGAGAGAGAGAVylgznhqGANgGAZfZfZfZfZfZfZfZfZfZfZfGANgGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGALMCrarPcarIzLMGANgNgNgNgdqYIYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJNmPmPJNfSfSrsJNmPmPJNjbJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCJCTATATAjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxjxTAMIMIAWAWAWyCyCKmOgKmKmKmKmOgKmyCyCAWAWAWAWAWAWMITCTCTCTCYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYINgNgNgNgNgNgNgNgNgNgNgNgNgNgGAVyznlghqGANgNgNgNgNgNgNgNgNgGAVpOYOtGANgNgNgNgNgNgNgNgNgGAVyznlghqGANgGAZfZfZfCNZfZfZfCNZfZfZfGANgGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGACKCrrharrhIzCKGANgNgNgNgdqYIdqYIYIxh +oIMIeGLjLjeGeGeGeGeGeGeGeGeGjbJNmPmPJNfSfSfSJNmPmPJNjbXhSbnrZLZLpittJCJCJCJCJCJCJCJCJCJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAYXUlAWAWAWyCKmKmKmKmKmKmKmKmKmKmyCAWAWAWAWAWAWMITCTCTCTCYIYIYIYIYIIjIjIjYIYIYIYIYIIjIjTCIjKcYIYIYIYINgNgNgNgNgNgNgNgNgNgNgNgNgNgGAYKbWbWxrGANgNgNgNgNgNgNgNgNgGAGAGAGAGANgNgHwkQNgNgNgNgNgGAVylgznhqGANgGAGAGAGAGAGAGAGAGAGAGAGAGANgGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGAGANgNgNgNgdqYIYIdqYIxh +oIMIeGLjLjeGeGeGeGeGLaeGeGeGjbJNmPRJJNJNmPJNJNemmPJNjbJNJNJNJNJNJNJNhIJNJNJCJCJCJCJCJCJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAUlAWAWAWyCKmKmyCyCyCyCyCyCKmKmyCAWAWAWAWAWAWMITCTCTCTCYIYIYIYIYIdqTCdqYIYIYIdqdqdqIjIjIjYIYIYIYIYIdqdqIjIjdqIjdqdqIjIjIjIjIjIjGAZfZfZfZfGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjBxNgNgNgGAVyznlghqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgdqYIYIIjYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJNmPmPmPmPmPmPmPmPmPJNjbJNrgrgrgrxkBCphIsyJNJNhIhIJNJNJNJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAUlAWAWAWyCKmKmyCYQiGdmsjyCKmKmyCAWAWAWAWAWAWMITCTCTCTCYIYIYIIjIjYIdqdqYIYIIjTCTCdqYIYIYIYIYIYIYIdqIjdqdqdqdqdqIjdqdqIjIjdqIjIjGAZfZfZfZfGAIjNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjIjBxNgNgNgGAVylgznhqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjNgNgNgNgNgNgNgNgNgIjIjNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNguHNgNgNgNgdqYIYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJNmPmPmPmPmPmPmPmPmPJNjbJNhIhIhIhIhIhIhIhIhIhIhIhIpIhIJNJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATATAUlAWAWAWKmKmKmKmKmKmKmKmKmKmKmKmAWAWAWAWAWAWMITCTCYIYIYIYIYITCIjYIYIYIYIYIdqdqdqdqYIYIYIYIYIYIdqdqdqIjIjdqdqdqIjIjIjIjIjIjIjIjGAIjZfZfIjGAIjIjIjIjNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjNgNgNgNgGAVyznlghqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjNgNgNgNgNgNgNgIjIjIjIjIjIjIjNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNguHNgNgNgNgNgdqYIYIYIYIxh +oIMIeGeGeGeGeGLjeGeGJDeGeGeGjbJNmPmPmPmPmPmPmPmPmPJNjbJNrgJshIhIhIhIhIhIhIhIhIhIhIhIhIJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAYXUlAWAWAWKmKmKmKmKmKmKmKmKmKmKmKmAWAWAWXeXeAWMITCTCYIYIYIYIIjTCYIYIYIYIYIdqdqdqYIYIYIYIYIYIYIdqdqIjdqdqdqIjIjIjIjIjIjIjIjIjIjIjGAIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjNgNgNgNgNgNgIjIjNgNgNgNgNgGAVylgznhqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjIjIjNgNgNgNgIjIjIjIjIjIjIjIjIjIjIjIjIjNgNgNgNgNgNgdqdqdqNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgdqdqdqYIYIIjYIxh +oIMIeGLaeGeGeGeGeGeGeGeGeGeGjbJNemmPmPmPmPmPmPmPRJJNjbJNrghIhItFVgxlVgVgVghUVgEDhIhIhIJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAMIMIXeAWAWyCKmKmyCVPpuSBZWyCKmKmyCAWAWAWAWAWAWMITCTCYIYIYIYIIjdqYIYIYIdqTCdqdqYIYIYIYIYIYIYIdqdqdqdqdqIjdqdqIjdqIjIjIjdqIjIjIjIjIjIjIjIjIjGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjNgNgNgbANgNgNgNgNgGAVyznlghqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjdqdqIjdqdqdqdqIjIjdqdqNgNgNgNgNgNgNgNgNgNgNgNgNgNgdqdqdqYIYIYIYIxh +oIMIeGeGeGeGeGeGeGLjeGeGeGeGjbJNmPmPmPmPmPmPmPmPmPJNjbJNEUhIhINBXWTpPoHJXWmOPoZFhIhIJNJCJCJCTATATATATATATATATATATATATATATATATATATATATATATATATATATATATAMIMIXeXeAWyCKmKmyCyCyCyCyCyCKmKmyCAWAWAWXeXeOhMITCYIYIYIYIYITCdqYIYIdqdqYIYIYIYIYIYIYIYIYIYIdqdqIjdqIjdqdqdqIjdqIjIjIjIjIjIjIjIjGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjNgNgNgNgGAVylgznhqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjdqdqIjIjdqdqdqdqIjIjIjdqIjIjdqdqdqdqIjdqIjdqdqNgNgNgNgNgNgNgNgNgNgNgdqdqdqYIYIYIYIxh +oIMIeGeGJDeGeGeGeGeGeGeGeGeGjbJNmPmPmPmPmPmPmPmPmPJNjbJNnihIhINBXWpEPonZXWflPoZFhIhIJNJCJCJCTATATATATAMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIXeAWAWyCKmKmKmKmKmKmKmKmKmKmyCAWAWAWAWXeOhMITCYIYIYIYIYIIjYIYIYIYIYIYIYIYIYIYIYIYIYIYIdqdqIjdqdqIjdqIjdqIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjNgNgGAVyznlghqGANgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjdqdqIjIjIjdqdqIjIjIjdqdqIjIjIjIjIjdqdqdqdqIjIjdqdqdqdqdqdqdqdqdqNgNgNgdqdqdqdqdqdqYIYIYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJNmPmPmPmPofmPmPmPmPJNjbJNnihIJNJNJNJNJNJNJNJNJNJNJNJNJNJCJCJCTATATATATAMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIOhXeAWyCyCKmWzKmKmKmKmWzKmyCyCAWAWAWAWXeOhMITCYIYIYIYIYIIjYIYIYIYIYIYIYIYIYIYIYIYIdqdqdqdqdqIjIjdqdqIjdqdqIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjGAYKbWbWxrGANgNgNgNgNgNgNgNgNgNgNgNgNgIjIjIjIjIjIjIjIjdqIjIjIjdqIjIjIjIjIjdqIjIjIjdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqdqdqdqdqdqdqdqdqIjdqdqdqdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIxh +oIMIeGeGeGeGeGeGeGeGeGeGeGeGjbJNJNJNJNJNJNJNmPmPJNJNjbkShIhIkSMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIOhOhXeAWyCyCyCyCKmKmyCyCyCyCAWAWAWXeXeXeOhMITCTCYIYIYIYIYIIjYIYIYIYIYIYIYIYIdqdqIjdqdqdqdqdqIjdqdqdqIjdqIjIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjuHZfZfZfZfGANgNgNgNgNgNgNgIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjdqdqIjIjIjIjIjdqdqIjIjIjdqdqIjdqdqIjIjIjIjdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIdqdqYIYIYIxh +oIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIkSmPmPkSkSkSkShIhIkSAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIOhOhAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWXeXeOhOhMITCTCYIYIYIYIYIIjYIYIYIYIYIYIdqdqdqdqdqdqIjdqdqIjIjIjdqIjdqIjdqIjIjIjIjIjIjIjIjdqdqIjIjdqIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjGAZfZfZfZfGAIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjdqdqIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjdqIjdqIjIjIjdqdqdqdqdqIjdqIjdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIYIYIYIYIYIdqdqIjYIYIxh +oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWkSmPmPmPmPmPmPmPmPkSAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIOhOhXeXeAWAWAWAWAWAWAWAWAWAWAWAWAWXeOhOhOhMITCTCTCYIYIYIYIYIYIdqdqTCYIYIYIYIYIYIYIdqdqdqdqdqIjdqdqdqIjdqdqdqIjIjIjdqdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjZfZfIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjIjIjdqIjIjIjIjIjdqdqIjdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIIjdqYIYIxh +oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWkSmPofmPmPmPofmPmPkSAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIOhOhOhOhOhAWAWAWAWAWAWAWAWAWAWXeXeOhOhOhOhMITCTCTCYIYIYIYIYIYIYIdqdqYIYIYIYIYIYIYIYIYIYIYIdqdqIjdqdqdqdqIjIjIjdqIjdqdqIjIjIjdqIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqdqIjIjIjIjIjIjIjIjdqdqdqIjIjIjIjIjIjdqIjIjIjIjdqdqdqIjIjdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIdqdqYIdqYIYIIjIjYIYIYIIjdqdqYIYIdqYIxh +oIAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWkSkSkSkSkSkSkSkSkSkSAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMIMITCTCTCTCYIYIYIYIYIYIYIYIdqYIYIYIYIYIYIYIYIYIYIYIdqdqdqIjdqdqdqdqIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjdqIjIjIjIjIjIjIjIjIjIjIjdqIjIjIjIjIjIjIjdqdqdqdqIjIjIjIjdqdqdqdqdqdqdqdqdqdqdqdqYIYIYIYIYIYIYIYIdqYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIYIxh +oIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIoIxh +"} diff --git a/maps/stellar_delight/stellar_delight1.dmm b/maps/stellar_delight/stellar_delight1.dmm index 3b0600bcea..5eb1f2bfe8 100644 --- a/maps/stellar_delight/stellar_delight1.dmm +++ b/maps/stellar_delight/stellar_delight1.dmm @@ -19485,9 +19485,6 @@ /area/security/detectives_office) "Pz" = ( /obj/structure/table/bench/marble, -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, /obj/effect/landmark/start/paramedic, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck1/paramedic) diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index b99e5f9cb1..0736eaa21e 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -1743,9 +1743,6 @@ /obj/machinery/camera/network/engineering{ dir = 4 }, -/obj/structure/sign/scenery/fakefireaxe{ - pixel_x = -32 - }, /turf/simulated/floor/tiled/techfloor, /area/engineering/atmos/monitoring) "dU" = ( @@ -18490,9 +18487,6 @@ /obj/structure/flora/pottedplant/smallcactus{ pixel_y = 14 }, -/obj/structure/fireaxecabinet{ - pixel_y = 28 - }, /turf/simulated/floor/wood, /area/stellardelight/deck2/briefingroom) "Pm" = ( diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm index d9243d3bd4..b56d1f7575 100644 --- a/maps/submaps/admin_use_vr/ert.dmm +++ b/maps/submaps/admin_use_vr/ert.dmm @@ -2331,7 +2331,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/barracks) "nl" = ( @@ -4282,12 +4282,12 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/engineering) "yX" = ( @@ -4385,12 +4385,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/effect/catwalk_plated, /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/hallways) "zB" = ( @@ -6390,6 +6390,7 @@ /area/ship/ert/armoury_st) "LA" = ( /obj/structure/table/rack/steel, +<<<<<<< HEAD /obj/item/weapon/storage/box/shotgunshells/large, /obj/item/weapon/storage/box/shotgunshells/large, /obj/item/weapon/storage/box/shotgunammo/large, @@ -6399,6 +6400,17 @@ /obj/item/weapon/storage/box/beanbags/large, /obj/item/weapon/storage/box/beanbags/large, /obj/item/weapon/storage/box/stunshells/large, +======= +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g/emp, +/obj/item/ammo_magazine/ammo_box/b12g/flash, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/stunshell, +>>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks /obj/effect/floor_decal/industrial/outline/grey, /obj/item/weapon/gun/projectile/shotgun/pump/combat{ pixel_y = 3 @@ -6523,6 +6535,7 @@ /area/ship/ert/armoury_st) "Me" = ( /obj/structure/table/rack/steel, +<<<<<<< HEAD /obj/item/weapon/storage/box/shotgunshells/large, /obj/item/weapon/storage/box/shotgunshells/large, /obj/item/weapon/storage/box/shotgunammo/large, @@ -6532,6 +6545,17 @@ /obj/item/weapon/storage/box/beanbags/large, /obj/item/weapon/storage/box/beanbags/large, /obj/item/weapon/storage/box/stunshells/large, +======= +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g/emp, +/obj/item/ammo_magazine/ammo_box/b12g/flash, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/stunshell, +>>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks /obj/effect/floor_decal/industrial/outline/grey, /obj/item/weapon/gun/projectile/automatic/as24{ pixel_y = 3 @@ -6740,7 +6764,26 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +<<<<<<< HEAD /obj/effect/catwalk_plated/dark, +======= +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/catwalk_plated/techfloor, +>>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks /turf/simulated/floor/plating, /area/ship/ert/engine) "NI" = ( @@ -6954,7 +6997,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/bridge) "OE" = ( @@ -6975,7 +7018,7 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/bridge) "OF" = ( @@ -7254,7 +7297,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/eng_storage) "PG" = ( @@ -7580,12 +7623,12 @@ "Sp" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/med) "Sr" = ( @@ -8269,10 +8312,10 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/catwalk_plated, /obj/effect/landmark{ name = "Commando" }, +/obj/effect/catwalk_plated/techmaint, /turf/simulated/floor/plating, /area/ship/ert/barracks) "Xg" = ( diff --git a/maps/submaps/admin_use_vr/kk_mercship.dmm b/maps/submaps/admin_use_vr/kk_mercship.dmm index ce323ebbcb..39175a5cf2 100644 --- a/maps/submaps/admin_use_vr/kk_mercship.dmm +++ b/maps/submaps/admin_use_vr/kk_mercship.dmm @@ -7125,10 +7125,6 @@ /obj/item/clothing/accessory/armor/armguards/green, /obj/item/clothing/accessory/armor/armguards/green, /obj/item/clothing/accessory/armor/armguards/green, -/obj/item/clothing/accessory/armor/tag/saare, -/obj/item/clothing/accessory/armor/tag/saare, -/obj/item/clothing/accessory/armor/tag/saare, -/obj/item/clothing/accessory/armor/tag/saare, /obj/item/clothing/accessory/armor/armorplate/tactical, /obj/item/clothing/accessory/armor/armorplate/tactical, /obj/item/clothing/accessory/armor/armorplate/tactical, @@ -10508,22 +10504,22 @@ /obj/item/weapon/gun/projectile/automatic/bullpup{ pixel_y = -6 }, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m/ap, -/obj/item/ammo_magazine/m762m/ap, -/obj/item/ammo_magazine/m762m/ap, -/obj/item/ammo_magazine/m762m/ap, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, -/obj/item/ammo_magazine/m762m, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, +/obj/item/ammo_magazine/m762/ext, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/armoury_as) "Vx" = ( diff --git a/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm b/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm index 7eb873b7c0..1fcdb16c2a 100644 --- a/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm +++ b/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm @@ -1,4 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aN" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/water/deep, +/area/submap/DugOutMercs) "aQ" = ( /obj/machinery/porta_turret/poi{ faction = "syndicate" @@ -12,8 +16,40 @@ "bk" = ( /obj/structure/table/rack/shelf, /obj/random/toolbox, +/obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) +"bl" = ( +/obj/random/landmine, +/turf/simulated/floor/outdoors/rocks, +/area/submap/DugOutMercs) +"bo" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"bz" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"bF" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/gun/projectile/revolver/nova, +/obj/item/weapon/strangerock, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"bS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/oar, +/obj/item/weapon/oar, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) "cd" = ( /obj/structure/cliff/automatic{ dir = 8 @@ -21,7 +57,25 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DugOutMercs) +"cj" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) +"cu" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill/alien, +/obj/item/weapon/strangerock, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"db" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/toolbox/lunchbox/syndicate/filled, +/turf/simulated/floor/tiled/hydro, /area/submap/DugOutMercs) "dh" = ( /obj/structure/cliff/automatic{ @@ -30,25 +84,58 @@ /obj/structure/railing/grey{ dir = 4 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, /area/submap/DugOutMercs) "do" = ( -/obj/random/mob/merc/all, +/obj/effect/floor_decal/borderfloor, +/mob/living/simple_mob/humanoid/merc/melee/sword, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "dI" = ( /obj/structure/table/rack, /obj/random/energy, +/obj/random/energy, +/obj/random/energy, +/obj/random/energy, /turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) +"el" = ( +/obj/random/mob/merc/all, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"eC" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/woodentable, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) "fq" = ( /obj/item/weapon/mine/phoron, /turf/template_noop, /area/submap/DugOutMercs) -"fs" = ( -/obj/structure/table/bench/padded, -/mob/living/simple_mob/humanoid/merc/melee/sword, -/turf/simulated/floor/tiled, +"fw" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/jellyfishcore, +/obj/item/weapon/reagent_containers/food/snacks/monkfishfillet, +/obj/item/weapon/reagent_containers/food/snacks/monkfishfillet, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) +"fx" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/gun/magnetic/gasthrower, +/obj/item/weapon/strangerock, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"fL" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/item/stack/cable_coil/alien, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "fP" = ( /obj/vehicle/boat/dragon, @@ -61,7 +148,6 @@ /turf/simulated/floor/water, /area/submap/DugOutMercs) "fS" = ( -/obj/structure/table/glass, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "go" = ( @@ -72,36 +158,104 @@ /turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "hZ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"iq" = ( +/obj/random/mob/merc/armored, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) +"iG" = ( /obj/structure/table/bench/padded, /mob/living/simple_mob/humanoid/merc/ranged/deagle, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"iL" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"jb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"jf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "jz" = ( /obj/structure/table/rack, -/obj/item/ammo_magazine/ammo_box/b145, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/pcarrier/laserproof, /turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) +"kg" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) "kF" = ( /obj/structure/table/sifwooden_reinforced, -/obj/item/device/bluespaceradio/southerncross_prelinked, +/obj/item/device/radio, /obj/item/weapon/storage/mre/random, /obj/item/device/binoculars, /turf/simulated/floor/outdoors/rocks, /area/submap/DugOutMercs) "kN" = ( -/obj/machinery/light{ - dir = 1 +/obj/structure/railing/grey{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/template_noop, /area/submap/DugOutMercs) "kW" = ( -/obj/structure/table/bench/padded, -/obj/random/mob/merc/all, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/random/material/precious, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"lq" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/mob/living/simple_mob/animal/space/carp/large/huge{ + faction = "syndicate" + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"md" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "ml" = ( -/obj/machinery/door/airlock, -/turf/simulated/wall/r_wall, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"mv" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) +"my" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/item/weapon/weldingtool/alien, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "mY" = ( /obj/structure/bed/chair, @@ -109,30 +263,93 @@ /turf/simulated/floor/outdoors/rocks, /area/submap/DugOutMercs) "nZ" = ( -/obj/random/landmine, -/turf/simulated/wall/r_wall, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, /area/submap/DugOutMercs) "oq" = ( /obj/structure/ledge/ledge_stairs, /mob/living/simple_mob/humanoid/merc/melee/sword, /turf/simulated/floor/outdoors/dirt, /area/submap/DugOutMercs) +"oC" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/random/energy, +/obj/item/clothing/suit/space/syndicate/black/blue, +/obj/item/clothing/head/helmet/space/syndicate/black/blue, +/obj/item/weapon/tank/oxygen/welded, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"oN" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/water/deep, +/area/submap/DugOutMercs) +"oU" = ( +/obj/machinery/door/airlock/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/DugOutMercs) +"pf" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"pg" = ( +/obj/machinery/door/airlock/external/bolted, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) "po" = ( /turf/simulated/floor/water/deep, /area/submap/DugOutMercs) "qR" = ( -/obj/structure/table/rack, -/obj/item/weapon/cell/device/weapon, -/obj/item/weapon/cell/device/weapon, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, /turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "rd" = ( /turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) -"rr" = ( -/obj/structure/table/bench/padded, +"rk" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) +"rl" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/cash/huge, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"rn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"rr" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"ry" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) "rV" = ( /obj/structure/railing/grey{ dir = 4 @@ -141,13 +358,19 @@ dir = 6 }, /obj/structure/railing/grey, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, /area/submap/DugOutMercs) "sc" = ( -/obj/structure/table/reinforced, -/obj/random/cigarettes, -/obj/item/weapon/flame/lighter/random, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) +"so" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/table/woodentable, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/obj/item/weapon/material/fishing_net, +/turf/simulated/floor/tiled/hydro, /area/submap/DugOutMercs) "sO" = ( /obj/machinery/power/smes/buildable/point_of_interest, @@ -157,13 +380,60 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) +"sZ" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/oar, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) "tS" = ( -/obj/random/landmine, -/turf/simulated/floor/water, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"tT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/random/material/refined, +/obj/random/material, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"uk" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/item/clothing/head/wizard/amp, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"ul" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/table/woodentable, +/obj/item/weapon/material/fishing_rod/modern/built, +/obj/item/weapon/material/fishing_rod/modern/built, +/obj/item/weapon/material/fishing_rod/modern/built, +/turf/simulated/floor/tiled/hydro, /area/submap/DugOutMercs) "uv" = ( /turf/simulated/wall/r_wall, /area/submap/DugOutMercs) +"uF" = ( +/obj/structure/barricade, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) +"uQ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) +"vh" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) "vR" = ( /obj/structure/cliff/automatic/ramp{ dir = 9 @@ -171,10 +441,35 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DugOutMercs) +"wU" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/mob/living/simple_mob/humanoid/merc/ranged/laser, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"xe" = ( +/obj/structure/table/rack/shelf, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/random/energy, +/obj/item/clothing/suit/space/syndicate/black/blue, +/obj/item/clothing/head/helmet/space/syndicate/black/blue, +/obj/item/weapon/tank/oxygen/welded, +/turf/simulated/floor/tiled, /area/submap/DugOutMercs) "xC" = ( -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/janusmodule, +/obj/item/weapon/surgical/bone_clamp/alien, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "yc" = ( /obj/machinery/door/airlock/highsecurity, @@ -182,15 +477,20 @@ /area/submap/DugOutMercs) "yr" = ( /obj/structure/table/rack, -/obj/random/grenade/box, +/obj/item/clothing/suit/armor/pcarrier/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, /turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "yA" = ( -/turf/simulated/floor/tiled/techfloor/grid, +/mob/living/simple_mob/humanoid/merc/ranged/technician, +/turf/simulated/floor/tiled, /area/submap/DugOutMercs) "yG" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled, /area/submap/DugOutMercs) "zG" = ( /obj/structure/cable/cyan{ @@ -203,23 +503,70 @@ pixel_x = 0; pixel_y = 24 }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) "Ag" = ( /obj/structure/ledge/ledge_stairs, /turf/simulated/floor/outdoors/rocks, /area/submap/DugOutMercs) +"AV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Bq" = ( +/obj/structure/table/reinforced, +/obj/random/cigarettes, +/obj/item/weapon/flame/lighter/random, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"BY" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/template_noop, +/area/submap/DugOutMercs) +"Ca" = ( +/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/techmaint, +/area/submap/DugOutMercs) "Cl" = ( /obj/structure/ledge/ledge_stairs, /obj/structure/ledge/ledge_stairs, /obj/structure/barricade, /turf/simulated/floor/outdoors/rocks, /area/submap/DugOutMercs) +"Cp" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/submap/DugOutMercs) +"Cr" = ( +/obj/effect/floor_decal/corner/blue/border, +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) "CA" = ( /obj/structure/cliff/automatic/corner{ dir = 6 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DugOutMercs) +"CQ" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "Da" = ( /obj/machinery/door/airlock, @@ -231,7 +578,7 @@ /area/submap/DugOutMercs) "DB" = ( /obj/structure/cliff/automatic/corner, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, /area/submap/DugOutMercs) "DJ" = ( /obj/structure/railing/grey{ @@ -241,21 +588,56 @@ /obj/structure/cliff/automatic{ dir = 10 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DugOutMercs) +"DR" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/material/fishing_rod/modern/built, +/turf/simulated/floor/wood, /area/submap/DugOutMercs) "DV" = ( /obj/structure/table/marble, /obj/item/stack/material/phoron, /obj/item/stack/material/phoron, +/mob/living/simple_mob/mechanical/viscerator/mercenary, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) +"Ed" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/material/fishing_net, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) "Eh" = ( -/obj/machinery/door/airlock/engineering, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Eo" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks, /area/submap/DugOutMercs) "Ex" = ( /obj/structure/table/rack/shelf, /obj/random/firstaid, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"EQ" = ( +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"EY" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/submap/DugOutMercs) +"Fr" = ( +/obj/effect/floor_decal/corner/blue/border, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "FQ" = ( @@ -272,8 +654,30 @@ "FZ" = ( /obj/structure/cable, /obj/machinery/power/port_gen/pacman, +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) +"Gv" = ( +/obj/structure/table/marble, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/DugOutMercs) +"GL" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Ha" = ( +/obj/item/frame/noticeboard, +/turf/simulated/wall/r_wall, +/area/submap/DugOutMercs) "Hb" = ( /obj/random/landmine, /obj/random/landmine, @@ -283,23 +687,73 @@ /obj/structure/cliff/automatic/corner{ dir = 9 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DugOutMercs) +"HX" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/sif/murkfish, +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/sif/murkfish, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) +"Ia" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/outdoors/rocks, +/area/submap/DugOutMercs) +"Ig" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/telecube/randomized, +/obj/item/weapon/strangerock, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "IA" = ( /mob/living/simple_mob/humanoid/merc/ranged/ionrifle, /obj/machinery/light{ dir = 1 }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"IM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"IQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/random/material/refined, +/obj/random/material, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Jh" = ( +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Jp" = ( +/obj/structure/table/woodentable, +/obj/random/cash/big, +/obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "Jz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"JC" = ( +/obj/structure/railing/grey{ + dir = 4 }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, +/obj/structure/railing/grey, +/turf/simulated/floor/water, /area/submap/DugOutMercs) "JJ" = ( /obj/structure/railing/grey{ @@ -307,69 +761,120 @@ }, /turf/simulated/floor/water, /area/submap/DugOutMercs) +"Ks" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"KA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"Lg" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/woodentable, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) "Mh" = ( /mob/living/simple_mob/humanoid/merc/ranged/grenadier/poi, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) +"Mi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "Ng" = ( /obj/structure/cliff/automatic, /obj/structure/railing/grey{ dir = 1 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, /area/submap/DugOutMercs) "Nl" = ( /obj/machinery/light, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/hydro, /area/submap/DugOutMercs) "Nr" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled, /area/submap/DugOutMercs) "NJ" = ( /obj/structure/table/marble, /obj/item/stack/material/phoron{ amount = 10 }, +/mob/living/simple_mob/mechanical/viscerator/mercenary, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) "NM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled, /area/submap/DugOutMercs) "OP" = ( /turf/simulated/floor/water, /area/submap/DugOutMercs) +"OU" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water/deep, +/area/submap/DugOutMercs) "Pe" = ( -/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"PB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"PO" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/woodentable, +/obj/random/projectile/scrapped_gun, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "Qf" = ( /turf/template_noop, /area/submap/DugOutMercs) "Qm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/medical, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "QM" = ( -/obj/structure/table/glass, -/obj/item/stolenpackage, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/submap/DugOutMercs) +"QN" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/random/mob/merc/all, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) "Rz" = ( @@ -382,51 +887,184 @@ "Sj" = ( /obj/structure/table/rack/shelf, /obj/structure/plushie/drone, +/obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) +"Sn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"SN" = ( +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/random/mob/merc/all, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Tf" = ( +/obj/structure/grille, +/turf/simulated/floor/water/deep, +/area/submap/DugOutMercs) +"Tw" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/submap/DugOutMercs) "TO" = ( /obj/machinery/light, +/mob/living/simple_mob/mechanical/viscerator/mercenary, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) "TQ" = ( /obj/structure/cliff/automatic/corner{ dir = 10 }, +/turf/simulated/floor/outdoors/dirt, +/area/submap/DugOutMercs) +"Uo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"UA" = ( +/obj/structure/railing/grey, /turf/template_noop, /area/submap/DugOutMercs) +"UP" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"Vl" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) "Vn" = ( /obj/structure/cliff/automatic/ramp, /obj/structure/railing/grey{ dir = 4 }, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt, /area/submap/DugOutMercs) -"VO" = ( -/mob/living/simple_mob/humanoid/merc/melee/sword, -/turf/simulated/floor/tiled, +"VQ" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/device/radio, +/obj/item/weapon/storage/mre/random, +/obj/item/device/binoculars, +/turf/simulated/floor/wood, /area/submap/DugOutMercs) "VX" = ( /mob/living/simple_mob/mechanical/viscerator/mercenary, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/DugOutMercs) +"VZ" = ( +/obj/structure/railing/grey, +/obj/vehicle/boat/dragon, +/turf/simulated/floor/outdoors/rocks, +/area/submap/DugOutMercs) +"Wa" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) "Wx" = ( /obj/machinery/light{ dir = 1 }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) +"WF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat, +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sharkmeat, +/turf/simulated/floor/tiled/hydro, +/area/submap/DugOutMercs) "WY" = ( -/mob/living/simple_mob/humanoid/merc/ranged/technician, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"XP" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/item/weapon/archaeological_find, +/turf/simulated/floor/tiled/techmaint, /area/submap/DugOutMercs) "Yg" = ( /turf/simulated/floor/wood, /area/submap/DugOutMercs) +"Yx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"YD" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"YE" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/mob/living/simple_mob/humanoid/merc/ranged/technician, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) +"YF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/merc/ranged/technician, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) "YW" = ( /obj/structure/table/rack/shelf, /obj/random/medical, +/obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/submap/DugOutMercs) +"Zg" = ( +/mob/living/simple_mob/humanoid/merc/ranged/sniper, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/DugOutMercs) +"Zt" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/DugOutMercs) +"ZS" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/submap/DugOutMercs) (1,1,1) = {" go @@ -456,7 +1094,7 @@ go go go go -go +bg go go go @@ -474,34 +1112,34 @@ go go Qf Qf +Qf +Qf +De +Qf +Qf +Qf +De +Qf +Hb +Qf +bl +Rz +bl +Rz +Qf +De +Qf De Qf Qf Qf Qf -Qf -Qf -Qf -Hb -Qf -Rz -Rz -Rz -Rz -Qf -Qf -Qf -Qf -Qf -Qf -Qf -Qf -Qf -Qf +De Qf Qf Qf Qf +De Qf Qf Qf @@ -517,7 +1155,7 @@ go Qf Qf Qf -De +Qf Qf Qf De @@ -528,16 +1166,16 @@ Rz Rz OP OP -tS +OP OP Rz Rz Qf Qf Qf +De Qf -Qf -Qf +De Qf Qf Qf @@ -557,8 +1195,8 @@ go (4,1,1) = {" go Qf -De -De +Qf +Qf Qf Qf De @@ -581,7 +1219,7 @@ Qf Qf Qf Qf -Qf +De Qf Qf Qf @@ -601,7 +1239,7 @@ go Qf Qf Qf -Qf +De Qf Qf Rz @@ -610,8 +1248,8 @@ OP OP OP OP -OP -OP +po +po OP OP OP @@ -654,7 +1292,7 @@ OP po po po -OP +po OP OP OP @@ -666,12 +1304,12 @@ uv uv uv uv -nZ uv uv uv uv -Qf +uv +aQ Qf Qf TQ @@ -686,32 +1324,32 @@ Qf Hb Qf Qf +bl +OP +OP +OP +OP +po +po +po +po +po +po +po +OP +OP +OP +OP +OP +RS Rz -OP -OP -OP -OP -po -po -po -po -po -OP -OP -OP -OP -OP -OP -OP -OP -Rz -xC -xC -xC -xC +sc +sc +sc +sc uv -xC -xC +IM +jf uv Qf Qf @@ -731,7 +1369,10 @@ Rz OP OP OP -OP +po +po +po +po po po po @@ -743,25 +1384,22 @@ OP OP OP OP -OP -OP -OP -OP +QM Rz -xC +sc Mh -xC -uv -xC -xC +sc uv +nZ +yG +Da Qf Qf Qf Qf Qf Qf -Qf +De go "} (9,1,1) = {" @@ -772,8 +1410,6 @@ Rz OP OP OP -OP -OP po po po @@ -781,22 +1417,24 @@ po po po po -OP +po +po +po OP JJ OP fP OP JJ -JJ +JC Rz -xC -xC -xC +sc +sc +sc uv Wx -xC -Da +yG +uv Qf Qf Qf @@ -813,9 +1451,6 @@ Qf Rz OP OP -OP -OP -OP po po po @@ -823,8 +1458,12 @@ po po po po -OP +po +po +po +po RS +bS Yg Yg Yg @@ -832,56 +1471,13 @@ Yg Yg Yg Yg -Yg -xC +sc Nl uv -xC -xC +nZ +yG uv -Qf -Qf -Qf -Qf -Qf -Qf -Qf -go -"} -(11,1,1) = {" -go -Qf -Qf -Rz -OP -OP -OP -OP -po -po -po -po -po -po -po -po -OP -RS -Yg -Yg -Yg -Yg -Yg -Yg -Yg -Yg -xC -xC -uv -xC -Nl -uv -Qf +aQ Qf Qf Qf @@ -890,14 +1486,56 @@ Qf Qf bg "} +(11,1,1) = {" +go +Qf +Qf +bl +OP +OP +po +po +po +po +po +po +po +po +po +po +po +RS +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +sc +sc +uv +nZ +Nr +uv +uv +uv +uv +uv +uv +uv +aQ +go +"} (12,1,1) = {" go De Rz OP OP -OP -OP +po +po po po po @@ -916,19 +1554,19 @@ Yg Yg Yg Yg -Yg -xC -xC +iq +sc +sc Da -xC +nZ do uv -Qf -Qf -Qf -Qf -Qf -Qf +Jz +GL +Jz +Jp +Jz +uv Qf go "} @@ -938,7 +1576,7 @@ Qf Rz OP OP -OP +po po po po @@ -959,18 +1597,18 @@ Yg Yg Yg Yg -xC -xC +sc +sc uv Wx -xC +yG +uv +Eh +md +Eh +Eh +Eh uv -Qf -Qf -Qf -Qf -Qf -Qf Qf go "} @@ -980,7 +1618,7 @@ Qf Rz OP OP -OP +po po po po @@ -998,27 +1636,27 @@ fR fR fR fR -fR +Tw Rz -xC -xC -xC +sc +sc +sc uv -xC -xC +nZ +yG +pg +Eh +Eh +el +Eh +Lg uv -aQ -Qf -Qf -Qf -Qf -Qf Qf go "} (15,1,1) = {" go -Qf +De Qf Rz OP @@ -1038,24 +1676,24 @@ OP OP OP OP -OP +Rz uv Rz -xC -xC -xC -Nl +sc +sc +sc +uQ uv -xC -Nl +nZ +Nr uv +Eh +QN +Eh +Eh +Eh uv -uv -uv -uv -uv -aQ -Qf +De go "} (16,1,1) = {" @@ -1078,30 +1716,30 @@ OP OP OP OP -OP -OP Rz +Rz +Qf uv -Wx -xC -do -xC -xC +WF +sc +sc +sc +so uv -xC -xC +nZ +yG uv -dI -rd -rd -yr +Jz +eC +Jz +PO +Jz uv Qf -Qf -go +bg "} (17,1,1) = {" -go +bg Qf Qf Rz @@ -1114,38 +1752,38 @@ po OP OP OP -OP -OP -OP -OP -OP -OP +Rz +Rz +Rz +Rz Rz Rz Qf -uv -xC -xC -xC -xC -xC -uv -xC -xC -yc -rd -rd -rd -rd -uv Qf Qf +Ha +fw +sc +sc +sc +db +uv +nZ +yG +uv +uv +uv +uv +uv +uv +uv +aQ go "} (18,1,1) = {" go Qf -Rz +bl OP OP po @@ -1155,41 +1793,41 @@ po OP OP OP -OP -OP -Rz -Rz -Rz -Rz Rz +kN +kN +kN +Qf +Qf +Qf Qf Qf aQ uv -xC -xC -xC -xC -xC +HX +mv +sc +sc +ul uv -xC -xC -uv -rd -rd -hH +nZ yG uv -Qf +dI +PB +Yx +Uo +yr +uv Qf go "} (19,1,1) = {" -go +bg Qf Rz OP -tS +OP po po po @@ -1197,10 +1835,10 @@ po OP OP OP -OP -Rz -Qf -aQ +VZ +VQ +DR +Ed uv uv uv @@ -1209,21 +1847,21 @@ uv uv uv uv -ml -xC +uv +yc uv uv uv IA -xC +yG uv -rd -rd -rd -rd +KA +vh +hH +bo +Wa uv De -Qf go "} (20,1,1) = {" @@ -1235,37 +1873,37 @@ OP OP po po -po OP OP OP Rz -Qf -Qf -Qf +UA +sZ +Zg +cj uv NJ DV -Nr -yA -yA +Gv +VX +VX uv -xC -xC -xC -xC -Nl +uk +WY +WY +WY +fx uv -xC -xC +nZ +yG uv -jz -rd +ml +ZS rd +ry qR uv Qf -Qf go "} (21,1,1) = {" @@ -1277,36 +1915,36 @@ OP OP po po -po OP OP Rz Qf Qf -Qf -Qf +uF +Yg +Yg +oU +VX +VX +VX +VX +VX uv -kN -VX -VX -VX -yA -Eh -xC +pf WY -xC -xC -xC +CQ +WY +cu uv -xC -xC +nZ +yG uv +jz +Ks +Mi +Vl +Ca uv -uv -uv -uv -uv -Qf Qf go "} @@ -1316,17 +1954,17 @@ Qf Rz OP OP -OP po po po -OP +po OP Rz Qf Qf -Qf -Qf +uF +Yg +Yg uv zG VX @@ -1335,21 +1973,21 @@ VX TO uv xC -xC -xC -xC -xC +lq +fL +YE +XP uv -xC -xC +nZ +yG uv -YW -xC -xC -xC uv -Qf -Qf +uv +yc +uv +uv +uv +aQ go "} (23,1,1) = {" @@ -1358,41 +1996,41 @@ Qf Rz OP OP -OP -OP po po -OP +po +po OP Rz Qf -Qf -Qf -Qf +UA +sZ +YF +cj uv sO FQ FZ -yA -yA +VX +VX uv -xC -xC -xC -xC -Nl +Qm +WY +CQ +WY +bF uv -xC -Nl +nZ +Nr uv -Wx -xC -xC -xC +YW +Pe +Pe +Pe +Pe uv Qf -Qf -go +bg "} (24,1,1) = {" go @@ -1400,17 +2038,17 @@ Qf Rz OP OP -OP -OP +po po po po OP OP Rz -Rz -Qf -aQ +Ia +VQ +DR +Ed uv uv uv @@ -1418,21 +2056,21 @@ uv uv uv uv +my +wU +WY +WY +Ig uv +AV +yG uv -Da +Sn +Pe +Pe +iL +Pe uv -uv -uv -xC -xC -uv -bk -xC -sc -xC -uv -Qf Qf go "} @@ -1450,9 +2088,9 @@ po OP OP OP -OP -Rz -Qf +Eo +BY +BY Qf Qf Qf @@ -1460,27 +2098,27 @@ Qf Qf aQ uv -xC -xC -xC -xC -xC uv -xC -xC -Da -xC -xC +uv +yc +uv +uv +uv +nZ +yG +uv +bk +Pe +Pe +Bq Pe -hZ uv -De Qf go "} (26,1,1) = {" go -Qf +De Qf Rz OP @@ -1488,12 +2126,12 @@ OP po po po +po OP OP OP OP -OP -OP +Rz Rz Rz Qf @@ -1501,73 +2139,71 @@ Qf Qf Qf Qf -Qm -rr -fS -fS -rr -xC +uv +IQ +Zt +Zt +Zt +bz uv Wx -xC -uv -Ex -xC +yG +pg Pe -xC +Pe +tS +hZ +iG uv -Qf -Qf +De go "} (27,1,1) = {" -go +bg Qf Rz OP OP -OP po po po po -OP -OP +po +po +po OP OP OP OP OP Rz +Rz +Rz Qf Qf -Qf -Qf -Jz -xC +uv +kW fS fS -xC -xC +Jh +YD uv -VO -xC +nZ +yG uv -Wx -xC -xC -xC +Ex +Pe +Pe +rl +Pe uv Qf -Qf -go +bg "} (28,1,1) = {" go Qf -Rz -OP -OP +bl OP po po @@ -1575,6 +2211,10 @@ po po po po +po +po +po +OP OP OP OP @@ -1583,25 +2223,23 @@ OP OP Rz Rz -Qf -Qf -NM +uv kW +yA fS fS -rr -Nl +YD uv -xC -Nl +nZ +Nr uv -Sj -xC -xC -xC +Sn +Pe +Pe +iL +Pe uv Qf -De go "} (29,1,1) = {" @@ -1609,7 +2247,7 @@ go Qf Rz OP -tS +OP po po po @@ -1625,24 +2263,24 @@ OP OP OP OP -Rz -Rz +OP +OP uv -Wx -fS -QM -xC -xC +tT +kg +kg +EQ +Fr uv -xC -xC +nZ +do uv +Sj +Pe +Pe +Pe +Pe uv -uv -uv -uv -uv -aQ Qf go "} @@ -1662,22 +2300,64 @@ po po po po +po +po OP OP OP -OP -OP -OP -OP -Qm +po +po +Tf +OU +OU +oN rr -fS -fS -fs -xC +Fr Da -xC -xC +nZ +yG +uv +uv +uv +uv +uv +uv +uv +aQ +go +"} +(31,1,1) = {" +go +Qf +Rz +OP +po +po +po +po +po +po +po +po +po +po +po +po +po +po +po +po +po +po +Tf +po +po +aN +rr +Cr +uv +Wx +yG uv aQ Qf @@ -1686,49 +2366,7 @@ Qf Qf Qf Qf -go -"} -(31,1,1) = {" -go -Qf -Rz -OP -OP -po -po -po -po -po -po -po -po -po -po -po -OP -OP -OP -OP -OP -OP -Jz -xC -QM -fS -xC -xC -uv -Wx -xC -uv -Qf -Qf -Qf -Qf -Qf -Qf -De -go +bg "} (32,1,1) = {" go @@ -1747,21 +2385,63 @@ po po po po -OP -OP -OP -OP -OP -OP -Jz -kW -fS -fS +po +po +po +po +po +po +Tf +Cp +po +EY rr -xC +Fr uv -xC -xC +nZ +yG +uv +Qf +Qf +Qf +Qf +Qf +De +Qf +go +"} +(33,1,1) = {" +go +Qf +bl +OP +OP +po +po +po +po +po +po +po +po +po +po +po +po +po +po +po +po +OP +uv +oC +NM +Zt +SN +Fr +uv +nZ +Nr Da Qf Qf @@ -1769,59 +2449,19 @@ Qf Qf Qf Qf -Qf -go -"} -(33,1,1) = {" -go -Qf -Rz -tS -OP -OP -po -po -po -po -po -po -po -po -po -po -OP -OP -OP -OP -OP -OP -Jz -xC -fS -fS -xC -Nl -uv -xC -Nl -uv -Qf -Qf -Qf -Qf -Qf -Qf -Qf +De go "} (34,1,1) = {" go -Qf +De Qf Rz OP OP -OP +po +po +po po po po @@ -1835,17 +2475,15 @@ OP OP OP OP -OP -OP -NM -xC -xC -xC -xC -xC uv -xC -xC +xe +kg +kg +rk +UP +uv +jb +rn uv Qf Qf @@ -1854,15 +2492,13 @@ Qf Qf Qf Qf -go +bg "} (35,1,1) = {" go Qf Qf -Rz -OP -OP +bl OP OP po @@ -1870,6 +2506,8 @@ po po po po +po +po OP OP OP @@ -1889,7 +2527,7 @@ uv uv uv uv -Qf +aQ Qf Qf CA @@ -1920,7 +2558,7 @@ OP OP OP Rz -Qf +De aQ Qf Qf @@ -1955,7 +2593,7 @@ OP OP OP OP -Rz +bl Rz OP OP @@ -1964,16 +2602,16 @@ Rz Qf Qf Qf -Qf -Qf -Qf -Qf -Qf -Qf -Qf -Qf -Qf De +Qf +Qf +Qf +Qf +Qf +Qf +Qf +Qf +Qf oq Ag Cl @@ -1994,15 +2632,15 @@ OP OP OP OP -tS OP -Rz +OP +bl Qf Qf Rz -Rz -Qf +bl Qf +De Qf Qf Qf @@ -2015,7 +2653,7 @@ Qf Qf Qf Qf -Qf +De Qf vR DJ @@ -2026,7 +2664,7 @@ go "} (39,1,1) = {" go -Qf +De Qf Qf De @@ -2034,13 +2672,13 @@ Qf De Rz Rz +bl Rz Rz Rz -Rz -Qf -Qf +De Qf +De Qf Qf Qf @@ -2049,13 +2687,13 @@ De Qf Qf Qf +De Qf Qf Qf +De Qf -Qf -Qf -Qf +De Qf Qf Qf @@ -2077,6 +2715,7 @@ go go go go +bg go go go @@ -2100,8 +2739,7 @@ go go go go -go -go +bg go go go diff --git a/maps/submaps/surface_submaps/wilderness/CultBar.dmm b/maps/submaps/surface_submaps/wilderness/CultBar.dmm index 5a6d06a697..0696c6ebc5 100644 --- a/maps/submaps/surface_submaps/wilderness/CultBar.dmm +++ b/maps/submaps/surface_submaps/wilderness/CultBar.dmm @@ -1,60 +1,257 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"bv" = ( -/obj/structure/closet/crate/secure/loot, +"at" = ( +/obj/effect/decal/cleanable/blood/gibs, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"aH" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"aN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/wood/sif/broken, +/area/submap/CultBar) +"bs" = ( +/obj/structure/simple_door/sifwood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"bt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"bv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/fancyblack, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/cargo, +/obj/item/weapon/spellbook/oneuse/charge, +/obj/random/maintenance/research, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"cq" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/cook_guide, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"cv" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/wood/sif/broken, +/area/submap/CultBar) "cH" = ( -/obj/structure/table/woodentable, +/obj/structure/table/fancyblack, /obj/random/firstaid, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"cJ" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/water/ocean, +/area/submap/CultBar) +"cL" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/foodstuff, +/obj/item/clothing/glasses/thermal/syndi, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"cT" = ( +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/helmet/space/cult, +/obj/item/clothing/suit/space/cult, +/obj/structure/closet/grave{ + opened = 0 + }, +/obj/structure/gravemarker, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) +"cX" = ( +/obj/structure/table/gamblingtable, +/obj/random/cash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"cY" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb2, +/obj/item/weapon/deck/cards, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"dh" = ( +/obj/structure/flora/lily1, +/turf/simulated/floor/water/ocean, +/area/template_noop) "dt" = ( /turf/simulated/floor/wood/sif/broken, /area/submap/CultBar) "dO" = ( /obj/item/stolenpackage, /obj/structure/table/rack, -/obj/item/stack/material/phoron{ - amount = 10 - }, /obj/machinery/light/small/emergency/flicker{ dir = 1 }, +/obj/item/stack/material/phoron{ + amount = 25 + }, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) "dY" = ( /obj/machinery/light/small/emergency/flicker, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"ea" = ( +/obj/structure/table/marble, +/obj/random/meat, +/obj/item/weapon/reagent_containers/food/snacks/sharkmeatcubes, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"ei" = ( +/turf/simulated/floor/outdoors/grass, +/area/template_noop) +"ez" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "eM" = ( /obj/structure/table/bench/sifwooden, -/mob/living/simple_mob/humanoid/cultist/caster, +/mob/living/simple_mob/humanoid/cultist/hunter, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"eT" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/reagent_containers/food/drinks/cans/orange_cola, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"eW" = ( +/obj/structure/table/marble, +/obj/random/meat, +/obj/item/weapon/reagent_containers/food/snacks/stewedsoymeat, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) "fe" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/snacks/taco, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"fq" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/cultist/caster, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"fs" = ( +/obj/structure/flora/lily1, +/turf/simulated/floor/water/ocean, +/area/submap/CultBar) "fB" = ( /obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"fD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"fF" = ( +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) "fR" = ( /obj/structure/table/bench/sifwooden, /mob/living/simple_mob/humanoid/cultist/human, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"gh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/fancyblack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/security, +/obj/item/weapon/melee/energy/sword/ionic_rapier, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"go" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/misc, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/research, +/obj/item/clothing/gloves/ring/material/diamond, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"gu" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"gP" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"he" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"hm" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"ht" = ( +/obj/structure/table/standard, +/obj/item/weapon/gun/projectile/revolver/cerberus, +/obj/item/weapon/gun/projectile/revolver/judge, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"hu" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"hN" = ( +/obj/structure/kitchenspike, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) "ij" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/machinery/light/small/emergency/flicker{ dir = 1 }, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"io" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/cultist/castertesh, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "iJ" = ( -/obj/structure/table/marble, -/obj/item/weapon/reagent_containers/food/snacks/taco, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif/broken, /area/submap/CultBar) "jk" = ( @@ -62,44 +259,117 @@ /obj/item/weapon/reagent_containers/food/drinks/decaf, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"jy" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) "jJ" = ( /mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/wood/sif/broken, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, /area/submap/CultBar) "jM" = ( /obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) "kD" = ( /mob/living/simple_mob/humanoid/cultist/castertesh, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) "kK" = ( /obj/effect/rune, -/obj/item/clothing/head/culthood/alt, +/obj/item/clothing/head/culthood/magus, /obj/item/weapon/melee/cultblade, -/obj/item/clothing/suit/cultrobes/alt, +/obj/item/clothing/suit/cultrobes/magusred, /obj/item/clothing/shoes/cult, -/turf/simulated/flesh, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shield_projector/rectangle/automatic/magus, +/obj/item/device/soulstone, +/turf/simulated/floor/gorefloor2, +/area/submap/CultBar) +"kY" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) +"kZ" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"lg" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/weapon/melee/energy/sword/red, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/CultBar) "lm" = ( /obj/structure/table/sifwooden_reinforced, /obj/item/stolenpackage, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"lu" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/nuclear, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"lV" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "ma" = ( +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) "mt" = ( -/turf/simulated/floor/outdoors/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/hunter, +/turf/simulated/floor/cult, +/area/submap/CultBar) +"mz" = ( +/obj/effect/gibspawner/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"mD" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/water/ocean, +/area/template_noop) +"mQ" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/carpet, /area/submap/CultBar) "mT" = ( /obj/structure/table/bench/sifwooden, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"na" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/random/contraband, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "nj" = ( /obj/structure/table/marble, -/turf/simulated/floor/wood/sif, +/obj/random/meat, +/obj/item/weapon/reagent_containers/food/snacks/turkeyslice, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"nu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/CultBar) "nO" = ( /obj/structure/cable/cyan{ @@ -112,63 +382,214 @@ pixel_x = 0; pixel_y = 24 }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) "nU" = ( /mob/living/simple_mob/humanoid/cultist/tesh, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) "ok" = ( /turf/template_noop, /area/template_noop) "oo" = ( /mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/cult, /area/submap/CultBar) "or" = ( -/mob/living/simple_mob/humanoid/cultist/human, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "ov" = ( /obj/item/clothing/head/helmet/bulletproof, /obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"oH" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) "oZ" = ( /obj/structure/bookcase, -/turf/simulated/floor/wood/sif, +/obj/item/weapon/book/manual/anomaly_testing, +/turf/simulated/floor/carpet, /area/submap/CultBar) "pd" = ( /obj/structure/table/sifwooden_reinforced, /obj/item/champagne, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"pi" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/gorefloor, +/area/submap/CultBar) +"pj" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"pv" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/misc, +/obj/random/maintenance/cargo, +/obj/item/stack/nanopaste/advanced, +/obj/random/maintenance/security, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"pE" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/reagent_containers/food/drinks/cans/redarmy, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"pG" = ( +/turf/simulated/floor/gorefloor, +/area/submap/CultBar) "pX" = ( -/obj/item/clothing/head/helmet/bulletproof, +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/vore/demonAI/avarn{ + faction = "cult" + }, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "qh" = ( /obj/machinery/appliance/cooker/grill, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"qG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/CultBar) "qP" = ( /obj/structure/table/sifwooden_reinforced, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"rH" = ( +/obj/structure/flora/lily2, +/turf/simulated/floor/water/ocean, +/area/submap/CultBar) +"rJ" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"sh" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/reagent_containers/food/drinks/cans/shambler, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"tE" = ( +/obj/structure/table/standard, +/obj/random/cash/big, +/obj/random/cash/big, +/obj/random/cash/big, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"tO" = ( +/obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/lizard, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"ug" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"va" = ( +/obj/structure/flora/lily2, +/turf/simulated/floor/water/ocean, +/area/template_noop) "wr" = ( /mob/living/simple_mob/humanoid/cultist/hunter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"wt" = ( +/turf/simulated/floor/outdoors/mud, +/area/submap/CultBar) +"wA" = ( +/obj/structure/table/marble, +/obj/random/meat, +/obj/item/weapon/reagent_containers/food/snacks/waffles, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"xb" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"xz" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"xQ" = ( +/obj/machinery/light/small/emergency/flicker{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"xX" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/stolenpackage, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"yI" = ( +/obj/structure/table/standard, +/obj/item/clothing/suit/storage/hooded/wintercoat/kilanocoat, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/clothing/suit/storage/hooded/wintercoat/kilanocoat, +/obj/item/clothing/shoes/boots/winter/climbing, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "yP" = ( -/obj/structure/table/sifwooden_reinforced, -/obj/random/drinksoft, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"yV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"zk" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) +"zy" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/cultist/human, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "zU" = ( /turf/simulated/floor/wood/sif, /area/submap/CultBar) "Ah" = ( -/obj/item/clothing/suit/armor/bulletproof, +/obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Ak" = ( +/mob/living/simple_mob/vore/demonAI{ + faction = "cult" + }, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "AO" = ( @@ -177,36 +598,71 @@ d2 = 8; icon_state = "0-8" }, +/obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) "Br" = ( -/mob/living/simple_mob/humanoid/cultist/hunter, +/mob/living/simple_mob/humanoid/cultist/caster, /obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"BV" = ( +/obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/lizard, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"BW" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/stolenpackage, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Cf" = ( +/mob/living/simple_mob/humanoid/cultist/magus, +/turf/simulated/floor/cult, +/area/submap/CultBar) "Ch" = ( /obj/structure/table/sifwooden_reinforced, /obj/machinery/chemical_dispenser/bar_soft/full, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/CultBar) "Co" = ( /obj/structure/cult/pylon, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/cult, /area/submap/CultBar) "Cp" = ( /turf/simulated/floor/water/ocean, /area/submap/CultBar) +"CC" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) "CY" = ( -/obj/item/clothing/gloves/arm_guard/bulletproof, -/turf/simulated/floor/wood/sif, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet, /area/submap/CultBar) "Dm" = ( -/obj/effect/decal/remains/human, +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "Dp" = ( -/obj/structure/table/woodentable, +/obj/structure/table/fancyblack, /obj/item/weapon/melee/energy/sword/ionic_rapier/lance, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/misc, +/obj/random/maintenance/research, +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"Dt" = ( +/obj/machinery/light/small/flicker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "Dw" = ( @@ -215,12 +671,25 @@ /obj/machinery/light/small/emergency/flicker{ dir = 1 }, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/CultBar) +"DS" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/water/ocean, +/area/template_noop) "DY" = ( /obj/effect/gibspawner/human, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"EH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"EJ" = ( +/turf/simulated/floor/cult, +/area/submap/CultBar) "EM" = ( /turf/simulated/floor/water/ocean, /area/template_noop) @@ -233,108 +702,452 @@ d2 = 2; icon_state = "0-2" }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) "Fb" = ( -/mob/living/simple_mob/humanoid/cultist/elite, -/turf/simulated/floor/outdoors/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/cult, +/area/submap/CultBar) +"Gb" = ( +/obj/machinery/light/small/emergency/flicker{ + dir = 1 + }, +/obj/structure/table/sifwooden_reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"Gd" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) "Gp" = ( /obj/effect/gibspawner/human, /turf/simulated/floor/wood/sif/broken, /area/submap/CultBar) "Gy" = ( -/obj/structure/table/marble, /obj/machinery/light/small/emergency/flicker{ dir = 1 }, +/obj/structure/kitchenspike, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"GO" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/contraband, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Hw" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"HK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "HP" = ( -/obj/item/clothing/shoes/leg_guard/bulletproof, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"Ip" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/weapon/reagent_containers/food/snacks/pancakes/berry, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"ID" = ( +/turf/simulated/floor/outdoors/mud, +/area/template_noop) +"IU" = ( +/mob/living/simple_mob/vore/demonAI/wendigo{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) +"Jj" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/ribplate, +/obj/item/weapon/reagent_containers/food/snacks/ribplate, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled/asteroid_steel, /area/submap/CultBar) "JE" = ( -/mob/living/simple_mob/vore/demonAI/wendigo, +/mob/living/simple_mob/vore/demonAI/wendigo{ + faction = "cult" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) +"JJ" = ( +/turf/simulated/floor/carpet, +/area/submap/CultBar) +"Ka" = ( +/obj/structure/table/gamblingtable, +/obj/random/cash/big, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "Kb" = ( /obj/structure/cable, /obj/machinery/power/port_gen/pacman, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/CultBar) +"Ki" = ( +/obj/structure/grille/cult, +/obj/structure/bonfire/permanent, +/obj/item/weapon/gun/magic/firestaff, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "Ks" = ( /obj/machinery/light/small/emergency/flicker{ dir = 1 }, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"KB" = ( +/obj/structure/table/bench/sifwooden, +/mob/living/simple_mob/humanoid/cultist/human, +/obj/effect/decal/cleanable/blood/gibs, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "KF" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"KV" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/device/soulstone, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"Le" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/gun/random, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"Lp" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/misc, +/obj/random/maintenance/foodstuff, +/obj/item/clothing/gloves/regen, +/obj/random/maintenance/cargo, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"LD" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/vore/demonAI{ + faction = "cult" + }, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"LV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/cult, +/area/submap/CultBar) +"LY" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/item/weapon/reagent_containers/food/drinks/cans/kvass, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Mw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/CultBar) "Mx" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/weapon/reagent_containers/food/snacks/superbiteburger, /obj/item/weapon/reagent_containers/food/snacks/superbiteburger, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"MF" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/pancakes, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"MH" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/sif/broken, /area/submap/CultBar) "MJ" = ( /obj/structure/table/sifwooden_reinforced, /obj/random/energy, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"MO" = ( +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/cult, +/area/submap/CultBar) +"MS" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/random/firstaid, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Nw" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/water/ocean, +/area/submap/CultBar) +"NJ" = ( +/obj/structure/closet/grave, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) "NZ" = ( /mob/living/simple_mob/humanoid/cultist/human, /obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"Om" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/outdoors/mud, +/area/submap/CultBar) +"Op" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"Oq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif/broken, +/area/submap/CultBar) +"Ot" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"OO" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/engineering, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"OZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/human/bloodjaunt, +/turf/simulated/floor/cult, +/area/submap/CultBar) +"Px" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/water/ocean, +/area/submap/CultBar) +"QO" = ( +/obj/structure/cult/pylon, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/cult, +/area/submap/CultBar) "QX" = ( /obj/structure/simple_door/sifwood, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"Rc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/gorefloor, +/area/submap/CultBar) +"Rk" = ( +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass, +/area/submap/CultBar) "RO" = ( -/obj/structure/table/woodentable, +/obj/structure/table/fancyblack, /obj/random/contraband, /obj/machinery/light/small/flicker, -/turf/simulated/floor/wood/sif, +/obj/random/maintenance/misc, +/obj/random/mainttoyloot/nofail, +/obj/item/weapon/telecube/randomized, +/turf/simulated/floor/carpet, /area/submap/CultBar) "Sn" = ( /obj/structure/grille/cult, /obj/structure/bonfire/permanent, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"ST" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) "Ti" = ( /turf/template_noop, /area/submap/CultBar) +"TV" = ( +/obj/machinery/light/small/emergency/flicker, +/obj/structure/table/rack, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat/narsie, +/obj/item/clothing/suit/storage/hooded/wintercoat/narsie, +/obj/item/clothing/suit/storage/hooded/wintercoat/solgov/fleet, +/obj/item/clothing/shoes/boots/winter, +/turf/simulated/floor/wood/sif/broken, +/area/submap/CultBar) +"Ub" = ( +/obj/machinery/light/small/emergency/flicker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Uy" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/castertesh, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"UB" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/CultBar) +"UJ" = ( +/obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"UT" = ( +/obj/structure/table/marble, +/obj/random/meat, +/obj/random/meat, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"Vk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif/broken, +/area/submap/CultBar) +"Vr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Vs" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"VC" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/cultrobes/alt, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/culthood/alt, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/culthood/alt, +/obj/item/clothing/suit/cultrobes/alt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"VJ" = ( +/obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) "VZ" = ( /turf/simulated/wall/log_sif, /area/submap/CultBar) "Wc" = ( /obj/structure/table/standard, /obj/machinery/microwave, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) "Wf" = ( -/mob/living/simple_mob/vore/demonAI/wendigo, -/turf/template_noop, +/mob/living/simple_mob/vore/demonAI/wendigo{ + faction = "cult" + }, +/turf/simulated/floor/outdoors/mud, /area/submap/CultBar) "Wq" = ( /obj/structure/table/marble, /obj/machinery/light/small/flicker, -/turf/simulated/floor/wood/sif, +/obj/random/meat, +/obj/random/meat, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) +"Ww" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/outdoors/grass, +/area/template_noop) "WL" = ( /obj/machinery/light/small/flicker, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/standard, +/obj/item/clothing/head/culthood, +/obj/item/clothing/suit/cultrobes, +/obj/item/clothing/shoes/cult, /turf/simulated/floor/wood/sif, /area/submap/CultBar) +"WO" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/humanoid/cultist/elite, +/turf/simulated/floor/cult, +/area/submap/CultBar) "WT" = ( /obj/structure/table/gamblingtable, +/obj/random/cash/huge, /turf/simulated/floor/wood/sif/broken, /area/submap/CultBar) +"WW" = ( +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/gorefloor, +/area/submap/CultBar) "Xa" = ( /obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"Xs" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/simulated/floor/wood/sif, +/area/submap/CultBar) +"XI" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/water/ocean, +/area/template_noop) +"Yk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/cult, +/area/submap/CultBar) +"YM" = ( +/obj/structure/table/sifwooden_reinforced, +/obj/random/maintenance/misc, +/obj/random/maintenance/morestuff, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/firstaid, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "YU" = ( @@ -344,20 +1157,35 @@ /obj/item/weapon/reagent_containers/food/snacks/stew, /obj/item/weapon/reagent_containers/food/snacks/bloodsoup, /obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/submap/CultBar) +"YZ" = ( +/obj/structure/table/bench/sifwooden, +/obj/effect/decal/cleanable/blood, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "Zl" = ( /obj/structure/table/sifwooden_reinforced, +/obj/effect/decal/cleanable/dirt, /obj/item/weapon/melee/energy/sword/red, /turf/simulated/floor/wood/sif, /area/submap/CultBar) "Zx" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/snacks/sharkmeatcooked, -/turf/simulated/floor/wood/sif, +/obj/effect/floor_decal/corner/lightgrey/diagonal, +/turf/simulated/floor/tiled/freezer, /area/submap/CultBar) "Zz" = ( /obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/sif/broken, +/area/submap/CultBar) +"ZG" = ( +/obj/machinery/light/small/emergency/flicker{ + dir = 1 + }, /turf/simulated/floor/wood/sif/broken, /area/submap/CultBar) "ZZ" = ( @@ -414,12 +1242,12 @@ ok ok ok ok +ID +ID ok -ok -ok -ok -ok -ok +ID +ID +ID ok ok ok @@ -443,36 +1271,36 @@ ok (3,1,1) = {" ok ok -Ti -Wf -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti +ok +ok +ok +ok +ok +ok +ok +ID +ei +ei +ID +ei +Ww +ei +ID +ID +ok +ok +ok +ok +ID +ID +ID +ID +ok +ok +ok +ok +ok +ok ok ok ok @@ -480,36 +1308,36 @@ ok (4,1,1) = {" ok ok -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti +ok Wf +wt +wt +wt +wt +wt +wt +zk +fF +fF +fF +fF +fF +CC +fF +wt +wt +wt +wt +fF +zk +fF +fF +Wf +wt Ti +wt +wt +ok ok ok ok @@ -517,8 +1345,8 @@ ok (5,1,1) = {" ok ok -Ti -Ti +ok +wt VZ VZ VZ @@ -541,12 +1369,12 @@ VZ VZ VZ VZ -Ti -Ti -Ti -Ti -Ti -Ti +fF +fF +Om +wt +wt +ID ok ok ok @@ -554,200 +1382,200 @@ ok (6,1,1) = {" ok ok -Ti -Ti +ID +wt VZ Sn +dt zU -HP -zU -zU -zU +Xs +EJ +yP Sn VZ -oZ -zU +lu +JJ bv VZ -zU -zU -zU -zU -zU -zU -zU -dY +go +OO +Lp +YM +cL +pv VZ -Ti -Ti -Ti +TV +VZ +fF +wt +wt Cp Cp -Ti -ok +ID +ID ok ok "} (7,1,1) = {" ok ok -Ti -Ti +ID +fF VZ -zU -zU +EJ +Ak Gp zU -zU +or Zz -CY -VZ -oZ zU +VZ +cq +CY Dp VZ Ks zU -zU -zU +or +or dt -zU -zU +ez +QX zU QX -Ti -Ti +wt +wt Cp +Px Cp -Cp -Cp -ok -ok +EM +ID +ID ok "} (8,1,1) = {" ok -ok -Ti -Ti +ID +Ww +fF VZ zU -zU -zU -zU -zU -zU +LV +or +iJ +bt +or zU QX -zU +CY jJ RO VZ +dt zU +at zU +or zU -zU -zU -zU -zU -dY VZ -Ti -Cp -Cp +VC +VZ +wt Cp Cp +Nw Cp EM -ok +XI +ID ok "} (9,1,1) = {" ok -ok -Ti -Ti +ID +ei +fF VZ -zU -Dm -zU -oo -zU -DY +HK +lV +Rc +MO +HK +mz zU VZ oZ -zU +CY cH VZ Ks -mT +tO lm -qP +xb mT zU VZ VZ VZ -Ti -Cp +wt Cp Cp Cp Cp +va EM -ok +ID ok "} (10,1,1) = {" ok ok -Ti -Ti +ID +CC VZ -zU -zU +yP +Fb Co -mt -Co -zU -zU +Fb +QO +Vk +EJ VZ -oZ -zU -bv +aH +mQ +gh VZ zU -zU +or qP qP -zU -zU +HK +iJ VZ -Ti -Ti -Ti -Cp -Cp +CC +wt +wt Cp Cp Cp +fs EM -ok +EM +ID ok "} (11,1,1) = {" ok ok -Ti -Ti +ID +fF VZ dt -mt -Fb +Cf +WO kK mt -mt +OZ zU VZ VZ @@ -755,214 +1583,214 @@ QX VZ VZ zU -mT -qP -qP -fR +Ah +GO +Le +KB zU VZ -Ti -Ti -Ti -Cp -Cp +fF +wt +wt Cp +cJ Cp Cp EM -ok +EM +ID ok "} (12,1,1) = {" ok ok -Ti -Ti +ok +wt VZ zU -zU +bt +QO +Yk Co -mt -Co -zU -zU +or +or VZ -qP -zU +pi +HP +HP +gu +Ah zU qP -mT -zU -qP -qP -zU +rJ +HK zU ZZ -Ti -Ti -Ti -Cp -Cp +fF +wt +wt Cp Cp +rH Cp +DS EM -ok +ID ok "} (13,1,1) = {" ok ok -Ti -Ti +ID +fF VZ -zU -zU +Fb +Oq DY oo -zU +or Dm -dt +aN VZ Dw -zU -zU +EH +yV qP -zU +or mT -qP -qP +xb +eT mT zU ZZ -Ti -Ti -Ti -Cp +fF +wt +wt Cp Cp Cp Cp EM -ok +EM +ID ok "} (14,1,1) = {" ok -ok -Ti -Ti +ID +ei +fF VZ -zU +Xs ov -zU -zU -zU -zU -Ah +or +or +Fb +bt +pG VZ -qP -zU -zU +UB +nu +HP pd -mT -dt -zU +Ah +cv zU zU zU +or ZZ -Ti -Ti -Ti -Ti +fF +fF +wt +wt Cp Cp -Cp -Cp -ok -ok +Px +EM +ID +ID ok "} (15,1,1) = {" ok ok -Ti -Ti +ID +zk VZ zU -pX +Fb zU -dt +MH DY -zU -zU +LD +yP VZ -qP -zU +KV +HP wr qP zU -zU -zU -zU -zU +or +LD +pG +yP dt VZ -Ti -Ti -Ti -Ti +fF +fF +wt +wt Cp Cp Cp -Ti -ok +ID +ID ok ok "} (16,1,1) = {" ok ok -Ti -Ti +ID +fF VZ Sn +Xs +dt zU -zU -zU -zU -zU -Sn +or +Fb +Ki VZ Ch -zU -zU -qP +HP +HP +gu NZ zU -zU -zU -zU +or +iJ +or dY VZ -Ti -Ti -Ti -Ti -Ti +jy +fF +fF +wt +wt Cp Cp -Ti -ok +ID +ID ok ok "} (17,1,1) = {" ok ok -Ti -Ti +ID +fF VZ VZ VZ @@ -972,25 +1800,25 @@ VZ VZ VZ VZ -qP -zU -zU -Zl -zU -mT -qP -qP +lg +EH +qG +gu +or +YZ +MJ +LY mT zU VZ -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti +fF +fF +fF +fF +wt +wt +wt +ID ok ok ok @@ -998,119 +1826,119 @@ ok (18,1,1) = {" ok ok -Ti -Ti +ok +Wf VZ dO -ma +Mw ma VZ -zU -zU +ht +yI WL VZ -Ks -zU -zU +Gb +qG +he jk mT zU -MJ +qP qP zU -zU +at VZ -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -ok +fF +Rk +fF +IU +cT +wt +Om +ID +ID ok ok "} (19,1,1) = {" ok ok -Ti -Ti +ok +wt VZ nO JE -ma +Mw QX -zU -zU -zU -QX -zU -dt -zU +or +fD +or +bs +EH +yV +EH qP -zU +yP mT -qP -qP +GO +xX Br -zU +or ZZ -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Cp -ok -ok +fF +fF +fF +fF +fF +wt +wt +EM +ID +ID ok "} (20,1,1) = {" ok ok -Ti -Ti +ok +wt VZ AO EY Kb VZ -zU -dt -WL +Vr +iJ +Dt VZ -Ks -zU -zU -yP -mT -zU +xQ +HP +EH +VZ +dt +or qP -qP -zU +gP +iJ zU ZZ -Ti -Ti -Ti -Ti -Ti -Ti -Cp +fF +fF +fF +fF +wt +wt Cp +dh EM -ok +ID ok "} (21,1,1) = {" ok ok -Ti -Ti +ok +wt VZ VZ VZ @@ -1120,247 +1948,247 @@ QX VZ VZ VZ -zU -zU -zU -qP -zU -mT -qP -qP -mT +Ip +HP +tE +VZ +Ks +fR +Ot +Ot +UJ zU ZZ -Ti -Ti -Ti -Ti -Ti -Cp +fF +fF +fF +wt +wt Cp Cp EM -ok +EM +ID ok "} (22,1,1) = {" ok ok -Ti -Ti -VZ -nj -zU -zU -zU -zU -zU -nj -VZ -VZ -QX -VZ -VZ -Ks -zU -zU -zU -zU -zU -VZ -Ti -Ti -Ti -Ti -Ti -Cp -Cp -Cp -EM ok +wt +VZ +MF +Gd +oH +Hw +pj +Gd +UT +VZ +cY +xz +Jj +VZ +at +zU +zU +zU +or +zU +VZ +fF +fF +fF +wt +wt +Cp +Cp +mD +EM +ID ok "} (23,1,1) = {" ok ok -Ti -Ti +ID +fF VZ Gy -zU -zU +Gd +hm KF -zU -zU -nj +oH +Gd +eW VZ -zU -zU -zU -zU -zU -zU -zU -zU -zU -zU VZ -Ti -Ti -Ti -Ti -Cp -Cp +QX +VZ +VZ +VZ +VZ +VZ +QX +VZ +VZ +VZ +zk +NJ +wt +wt +Px Cp Cp EM -ok +EM +ID ok "} (24,1,1) = {" ok ok -Ti -Ti +ID +zk VZ -nj -zU -zU -iJ +hN +ST +oH +fe nU -zU +oH Wq VZ +Vs zU +io zU -mT +or zU +iJ +or zU -mT -qP -qP -mT dY VZ -Ti -Ti -Ti -Ti +fF +fF +wt +wt Cp +Nw Cp -Cp -Cp -ok -ok +EM +ID +ID ok "} (25,1,1) = {" ok -ok -Ti -Ti +ID +ei +fF VZ -nj -zU +ug +oH nU Zx -zU -zU +Hw +pj nj VZ Ks +Ah +Ka +UJ +or mT -Xa -mT -zU -zU -qP -qP -zU +sh +pE +fq zU VZ -Ti -Ti -Ti +jy +wt +wt Cp Cp Cp Cp -Ti -ok +ID +ID ok ok "} (26,1,1) = {" ok -ok -Ti -Ti +ID +Ww +fF QX -zU -zU -zU +Gd +oH +oH KF -zU -dt -nj +oH +kZ +UT VZ zU -zU +HK Xa zU -zU -zU -lm +HK +at +qP qP -mT zU +or ZZ -Ti -Ti +wt +wt +rH Cp Cp Cp -Cp -Ti -Ti +wt +ID ok ok ok "} (27,1,1) = {" ok -ok -Ti -Ti +ID +ei +fF VZ Mx -zU -zU +kZ +oH fe kD -zU -nj +oH +wA VZ -zU +or eM WT -mT -zU -zU -qP -qP -zU +pX +HK +BV +na +Zl +Ah zU ZZ -Ti -Ti +wt +wt Cp +cJ Cp -Cp -Cp -Ti -Ti +Px +wt +ID ok ok ok @@ -1368,36 +2196,36 @@ ok (28,1,1) = {" ok ok -Ti -Ti +ID +zk VZ YU -zU -zU +oH +Uy KF -zU -zU +Gd +Gd Wq VZ -zU -zU +or +or Xa or -zU -mT -qP -qP -fR -zU +ez +HK +gP +gP +HK +or ZZ -Ti -Ti +wt +wt Cp Cp Cp -Cp -Ti -Ti +Px +wt +ID ok ok ok @@ -1405,36 +2233,36 @@ ok (29,1,1) = {" ok ok -Ti -Ti +ok +wt VZ ij -zU -zU -zU -zU -zU -nj +hu +oH +oH +Op +oH +ea VZ -Ks -mT -Xa -mT -zU -zU -zU -zU -zU -zU +ZG +VJ +cX +Ah +dt +Ah +MS +BW +zy +HK VZ -Ti -Ti -Ti +fF +wt +wt Cp -Ti -Ti -Ti -Ti +wt +wt +wt +ok ok ok ok @@ -1442,36 +2270,36 @@ ok (30,1,1) = {" ok ok -Ti -Ti +ok +wt VZ fB -dt -zU +Gd +WW qh jM Wc -nj +UT VZ -zU -zU -mT -zU -zU -zU -zU -zU -zU -zU +or +pG +fR +Xs +or +iJ +ez +or +or +Ub VZ +kY +fF +wt +wt +wt +Om Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti +ok ok ok ok @@ -1479,8 +2307,8 @@ ok (31,1,1) = {" ok ok -Ti -Ti +ok +wt VZ VZ VZ @@ -1501,14 +2329,14 @@ VZ VZ VZ VZ +CC +fF +fF +wt Ti Ti Ti -Ti -Ti -Ti -Ti -Ti +ok ok ok ok @@ -1516,36 +2344,36 @@ ok (32,1,1) = {" ok ok -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti +ok Wf +wt +wt +zk +fF +jy +fF +wt +wt +wt +Ti +wt +wt +wt +Ti +Ti +wt +wt +wt +wt +jy +IU +fF +wt +Ti +Ti +Ti +Ti +ok ok ok ok @@ -1553,36 +2381,36 @@ ok (33,1,1) = {" ok ok -Wf -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti -Ti +ok +ok +ok +ok +ID +ID +ID +ID +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ID +ID +ID +ok +ok +ok +ok +ok +ok ok ok ok diff --git a/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm b/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm index 2ca0638d1c..0526c84844 100644 --- a/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm +++ b/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm @@ -1,618 +1,887 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/simulated/mineral/ignore_mapgen, -/area/template_noop) -"b" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/tiled, +"ac" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/loot_pile/mecha/durand, +/turf/simulated/floor/tiled/red, /area/submap/MechHangar) -"d" = ( -/turf/simulated/floor/tiled, -/area/submap/MechHangar) -"f" = ( +"af" = ( /turf/template_noop, /area/submap/MechHangar) -"g" = ( -/obj/random/humanoidremains{ - spawn_nothing_percentage = 60 +"aR" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 8; + icon_state = "bordercolor" }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"di" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 8; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"fB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"fL" = ( /obj/structure/table/bench/padded, -/turf/simulated/floor/tiled, +/obj/structure/loot_pile/surface/bones, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/dark, /area/submap/MechHangar) -"i" = ( -/turf/simulated/mineral/ignore_mapgen, -/area/submap/MechHangar) -"p" = ( -/turf/simulated/floor/tiled/red, -/area/submap/MechHangar) -"v" = ( -/obj/structure/table/standard, -/obj/random/firstaid, -/turf/simulated/floor/tiled, -/area/submap/MechHangar) -"x" = ( -/obj/effect/decal/mecha_wreckage/gygax, -/turf/simulated/floor/tiled/red, -/area/submap/MechHangar) -"y" = ( -/mob/living/simple_mob/mechanical/mecha/combat/phazon, -/turf/template_noop, -/area/submap/MechHangar) -"z" = ( -/obj/effect/decal/mecha_wreckage/durand, -/turf/simulated/floor/tiled/red, -/area/submap/MechHangar) -"A" = ( -/turf/template_noop, -/area/template_noop) -"G" = ( -/obj/structure/table/standard, -/obj/random/toolbox, -/turf/simulated/floor/tiled, -/area/submap/MechHangar) -"H" = ( +"ha" = ( /turf/simulated/wall/r_wall, /area/submap/MechHangar) -"J" = ( -/obj/structure/loot_pile/surface/alien/engineering, +"hg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"hW" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"jF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/red, +/area/submap/MechHangar) +"mP" = ( +/obj/structure/boulder, /turf/simulated/floor/tiled, /area/submap/MechHangar) -"M" = ( -/obj/effect/decal/mecha_wreckage/ripley/deathripley, +"nC" = ( +/obj/structure/filingcabinet, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"nV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"ob" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/loot_pile/mecha/odysseus, /turf/simulated/floor/tiled/red, /area/submap/MechHangar) -"Y" = ( -/obj/effect/decal/mecha_wreckage/odysseus, +"qr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/mineral/ignore_mapgen, +/area/submap/MechHangar) +"rn" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"rF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"sD" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/MechHangar) +"sX" = ( +/obj/structure/boulder, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"tt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/mob/merc/armored, /turf/simulated/floor/tiled/red, /area/submap/MechHangar) +"tF" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/template_noop) +"ua" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"uy" = ( +/turf/template_noop, +/area/template_noop) +"uK" = ( +/mob/living/simple_mob/mechanical/mecha/combat/phazon, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"vy" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/template_noop) +"vP" = ( +/obj/structure/boulder, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"wf" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4; + icon_state = "bordercolor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"yB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/mecha_wreckage/janus, +/turf/simulated/floor/tiled/red, +/area/submap/MechHangar) +"yG" = ( +/obj/structure/boulder, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/template_noop) +"zs" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/submap/MechHangar) +"Aj" = ( +/obj/structure/boulder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"AF" = ( +/obj/effect/decal/remains, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"AW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/mecha_wreckage/marauder, +/turf/simulated/floor/tiled/red, +/area/submap/MechHangar) +"BZ" = ( +/obj/structure/boulder, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"CO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"Fd" = ( +/obj/structure/filingcabinet, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"FS" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/random/toolbox, +/obj/effect/floor_decal/corner/red/border{ + dir = 4; + icon_state = "bordercolor" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"Hz" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/turf/simulated/floor/tiled, +/area/submap/MechHangar) +"Ix" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"IM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/red, +/area/submap/MechHangar) +"Ju" = ( +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"JI" = ( +/obj/structure/filingcabinet, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"Kh" = ( +/obj/random/outcrop, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"Kp" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"KW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/mechanical/mecha/combat/phazon, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"Le" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/submap/MechHangar) +"LE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"Nh" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/effect/decal/remains, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/submap/MechHangar) +"RH" = ( +/obj/structure/door_assembly, +/turf/simulated/floor/tiled, +/area/submap/MechHangar) +"RK" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"Sk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"So" = ( +/obj/random/outcrop, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) +"VA" = ( +/obj/effect/decal/remains, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"WZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/telecube/randomized, +/turf/simulated/floor/tiled/dark, +/area/submap/MechHangar) +"XS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks{ + outdoors = 0 + }, +/area/submap/MechHangar) +"Ze" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/loot_pile/mecha/deathripley, +/turf/simulated/floor/tiled/red, +/area/submap/MechHangar) +"ZC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/submap/MechHangar) (1,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy "} (2,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy "} (3,1,1) = {" -A -A -A -A -a -a -a -a -A -A -A -A -A -A -a -a -A -A -A -A +uy +uy +uy +tF +tF +tF +tF +tF +tF +uy +uy +uy +uy +uy +tF +tF +uy +uy +uy +uy "} (4,1,1) = {" -A -A -A -i -i -i -i -i -i -f -f -f -f -i -i -i -i -A -A -A +uy +uy +tF +sD +sD +sD +sD +sD +sD +sD +af +af +Kp +sD +sD +sD +sD +uy +uy +uy "} (5,1,1) = {" -A -A -a -H -H -H -H -H -H -i -f -f -i -i -i -i -i -a -A -A +uy +uy +tF +ha +ha +ha +ha +ha +ha +sD +af +Kp +Ju +sD +sD +sD +sD +tF +uy +uy "} (6,1,1) = {" -A -A -a -H -d -d -g -J -H -i -f -f -i -i -i -i -i -A -A -A +uy +uy +tF +ha +JI +di +aR +RK +ha +sD +hW +ua +XS +sD +sD +sD +sD +uy +uy +uy "} (7,1,1) = {" -A -a -a -H -d -v -G -d -H -i -i -f -y -i -i -i -f -A -A -A +uy +tF +tF +ha +Fd +CO +WZ +fL +ha +sD +sD +LE +LE +vP +sD +sD +rn +uy +uy +uy "} (8,1,1) = {" -A -a -a -H -d -d -d -d -H -i -i -f -f -f -f -f -f -A -A -A +uy +tF +tF +ha +nC +wf +FS +Ix +ha +sD +sD +LE +KW +Sk +Sk +LE +LE +vy +uy +uy "} (9,1,1) = {" -A -a -a -H -H -b -H -H -H -i -i -f -f -f -f -f -f -A -A -A +uy +tF +tF +ha +ha +RH +ha +ha +ha +sD +sD +vP +nV +LE +LE +XS +VA +vy +vy +uy "} (10,1,1) = {" -A -a -a -H -x -d -d -p -H -i -i -i -f -f -f -f -f -a -a -A +uy +tF +tF +ha +AW +Le +Le +yB +ha +sD +sD +sD +XS +Kp +hW +LE +sX +tF +tF +uy "} (11,1,1) = {" -A -a -a -H -d -d -d -d -H -i -i -i -f -f -f -f -i -a -a -a +uy +tF +tF +ha +Hz +Le +vP +Le +ha +sD +sD +sD +LE +Kp +LE +Kp +sD +tF +tF +tF "} (12,1,1) = {" -A -a -a -H -M -d -d -p -H -i -i -i -i -f -f -f -i -a -a -a +uy +tF +tF +ha +ac +Hz +Le +jF +ha +sD +sD +sD +sD +Sk +Kp +sX +sD +tF +tF +tF "} (13,1,1) = {" -A -A -a -H -d -d -d -d -H -i -i -i -f -f -f -i -i -a -a -A +uy +uy +tF +ha +mP +Le +Le +Hz +ha +sD +sD +sD +fB +ZC +Sk +sD +sD +tF +tF +uy "} (14,1,1) = {" -A -A -a -H -z -d -d -Y -H -i -i -f -f -f -f -f -i -a -A -A +uy +uy +tF +ha +ob +Hz +Le +IM +ha +sD +sD +Kh +Ju +LE +LE +hW +sD +tF +uy +uy "} (15,1,1) = {" -A -A -a -H -d -d -d -d -H -i -f -f -f -f -f -f -f -A -A -A +uy +uy +tF +ha +Hz +Hz +Le +Hz +ha +sD +BZ +XS +hg +Aj +LE +Kp +Kp +yG +uy +uy "} (16,1,1) = {" -A -A -a -H -d -d -d -d -d -f -f -f -f -f -f -f -f -A -A -A +uy +tF +tF +ha +tt +Hz +Nh +Hz +Hz +Kp +LE +nV +Sk +Sk +XS +rF +Kp +uy +uy +uy "} (17,1,1) = {" -A -A -a -H -d -d -d -d -d -f -f -f -i -i -f -f -f -A -A -A +uy +tF +tF +ha +Hz +vP +Hz +Le +zs +Sk +LE +So +qr +Ju +sX +LE +af +uy +uy +uy "} (18,1,1) = {" -A -A -a -H -d -d -d -d -d -f -f -i -i -i -i -f -f -A -A -A +uy +tF +tF +ha +Ze +Hz +Hz +Hz +vP +LE +Kp +sD +sD +sD +sD +Kp +af +uy +uy +uy "} (19,1,1) = {" -A -A -a -H -H -H -H -H -H -f -i -i -i -i -f -f -f -A -A -A +uy +uy +tF +ha +ha +ha +ha +ha +ha +vP +sD +sD +sD +sD +Sk +LE +Kp +uy +uy +uy "} (20,1,1) = {" -A -A -A -i -i -i -i -i -i -f -f -i -i -i -y -f -f -a -A -A +uy +uy +tF +sD +sD +sD +sD +sD +sD +AF +vP +sD +sD +sD +uK +LE +vP +tF +uy +uy "} (21,1,1) = {" -A -A -A -i -i -i -i -i -i -f -f -f -i -f -f -f -i -a -a -A +uy +uy +uy +sD +sD +sD +sD +sD +sD +af +Kp +hW +sD +sX +LE +Kp +sD +tF +tF +uy "} (22,1,1) = {" -A -A -A -f -i -i -i -i -i -f -f -f -f -f -f -i -i -a -a -A +uy +uy +uy +sD +sD +sD +sD +sD +sD +af +af +af +af +af +Ju +sD +sD +tF +tF +uy "} (23,1,1) = {" -A -A -A -A -a -a -a -a -A -A -A -A -A -A -A -A -a -a -A -A +uy +uy +uy +uy +tF +tF +tF +tF +uy +uy +uy +uy +uy +uy +uy +uy +tF +tF +uy +uy "} (24,1,1) = {" -A -A -A -A -A -a -a -a -A -A -A -A -A -A -A -A -A -A -A -A +uy +uy +uy +uy +uy +tF +tF +tF +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy "} (25,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy +uy "} diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 9c2c8146e5..24244fe74e 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -6733,9 +6733,6 @@ /area/tether/surfacebase/outside/outside3) "ajH" = ( /obj/machinery/computer/secure_data, -/obj/structure/fireaxecabinet{ - pixel_y = 30 - }, /turf/simulated/floor/tiled/dark, /area/bridge) "ajI" = ( diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index efb1376890..cb137963ad 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -320,6 +320,12 @@ /obj/machinery/camera/network/outside network = list(NETWORK_OUTSIDE) + +// Shelter Capsule extra restrictions +/datum/map_template/shelter/New() + ..() + banned_areas += list(/area/tether/surfacebase/fish_farm, /area/tether/surfacebase/public_garden, /area/tether/surfacebase/tram) + // // ### Wall Machines On Full Windows ### // To make sure wall-mounted machines placed on full-tile windows are clickable they must be above the window diff --git a/maps/yw/submaps/rogue_mines/groundbase_things.dm b/maps/yw/submaps/rogue_mines/groundbase_things.dm index f1a1dfb8a0..9bcd693cc6 100644 --- a/maps/yw/submaps/rogue_mines/groundbase_things.dm +++ b/maps/yw/submaps/rogue_mines/groundbase_things.dm @@ -97,3 +97,8 @@ VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/rocks) var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread s.set_up(5, 1, src) s.start() + +// Shelter Capsule extra restrictions +/datum/map_template/shelter/New() + ..() + banned_areas += list(/area/groundbase/level3/escapepad) \ No newline at end of file diff --git a/modular_chomp/code/datums/outfits/jobs/noncrew.dm b/modular_chomp/code/datums/outfits/jobs/noncrew.dm new file mode 100644 index 0000000000..66b76a1ef3 --- /dev/null +++ b/modular_chomp/code/datums/outfits/jobs/noncrew.dm @@ -0,0 +1,15 @@ +/decl/hierarchy/outfit/noncrew + name = OUTFIT_JOB_NAME("Non-Crew") + //hierarchy_type = /decl/hierarchy/outfit/noncrew + uniform = /obj/item/clothing/under/primitive + shoes = /obj/item/clothing/shoes/primitive + r_pocket = /obj/item/weapon/spacecash/ewallet + l_pocket = /obj/item/device/survivalcapsule/superpose + flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL|OUTFIT_COMPREHENSIVE_SURVIVAL + +/decl/hierarchy/outfit/noncrew/post_equip(mob/living/carbon/human/H) + ..() + var/obj/item/weapon/spacecash/ewallet/wallet = H.r_store + if(istype(wallet)) + wallet.owner_name = H.real_name + wallet.worth = 1000 diff --git a/modular_chomp/code/game/jobs/job/department.dm b/modular_chomp/code/game/jobs/job/department.dm new file mode 100644 index 0000000000..e7c89a56fc --- /dev/null +++ b/modular_chomp/code/game/jobs/job/department.dm @@ -0,0 +1,6 @@ +/datum/department/noncrew + name = DEPARTMENT_NONCREW + short_name = "N/A" + sorting_order = -99 + visible = FALSE + assignable = FALSE diff --git a/modular_chomp/code/game/jobs/job/noncrew.dm b/modular_chomp/code/game/jobs/job/noncrew.dm new file mode 100644 index 0000000000..50ec699fa9 --- /dev/null +++ b/modular_chomp/code/game/jobs/job/noncrew.dm @@ -0,0 +1,30 @@ +/datum/job/noncrew + title = "Non-Crew" + disallow_jobhop = TRUE + total_positions = 3 + spawn_positions = 6 + supervisors = "no one." + + flag = NONCREW + departments = list(DEPARTMENT_NONCREW) + department_flag = OTHER + faction = "Station" + assignable = FALSE + account_allowed = 0 + offmap_spawn = TRUE + + outfit_type = /decl/hierarchy/outfit/noncrew + job_description = {"Players taking a role of a visitor outside of NT property with no special mechanics or items outside of the item loadout. Excluding one superpose pod. + -----Goes without saying, server rules still apply to the fullest + -----Neutral-crew are considered unauthorized personnel on SouthernCross. + -----Neutral-crew are not allowed to take part in events and mini-event areas unless the EM says otherwise. + -----Neutral-crew are not allowed to take station jobs. + -----Neutral-crew are not allowed to know more than two department jobs. + -----Neutral-crew are expected to behave and respect station SOP and Corp.Reg regardless of their IC knowledge. + -----Neutral-crew are not allowed to log-off with station key items. (Captain spare, Station Blueprints, Nuke-key, Bluespace harpoon, any valuable or large amount of materials, chems, guns, etc. . .). Please discard these items on station or crew with relevant job roles. + -----We encourage Neutral-crew to take on exploration content as a group, staff will not help you for any hardships of solo play. + -----Notice: Not all of "Neutral-crew play" bugs have been fixed but we are aware of some of them that still need fixing, if you do encounter one that can be abused mechanically, please notify the staff member and be mindful of the exploit itself."} + +/datum/job/noncrew/is_species_banned(species_name, brain_type) + // Any species can join as non-crew, including shadekin. + return FALSE diff --git a/modular_chomp/code/game/objects/structures/watercloset_ch.dm b/modular_chomp/code/game/objects/structures/watercloset_ch.dm index 2c94a77309..ea93649754 100644 --- a/modular_chomp/code/game/objects/structures/watercloset_ch.dm +++ b/modular_chomp/code/game/objects/structures/watercloset_ch.dm @@ -46,7 +46,21 @@ spawn(refill_cooldown) for(var/atom/movable/F in bowl_contents) if(F.loc == src) - F.forceMove(exit_landmark) + var/list/bs_things = list() + var/bs_error = FALSE + for(var/item in bluespace_item_types) + if(istype(F, item)) + bs_error = TRUE + else + bs_things |= F.search_contents_for(item) + if(bs_error || LAZYLEN(bs_things)) + bs_things.Cut() + bs_error = rand(1, 100) + var/list/posturfs = circlerangeturfs(exit_landmark,bs_error) + var/destturf = safepick(posturfs) + F.forceMove(destturf) + else + F.forceMove(exit_landmark) bowl_contents.Cut() refilling = FALSE return @@ -159,4 +173,4 @@ B.name = "waste hopper" B.desc = "With a resounding CRUNCH, your form has gotten snagged by the Muffin Monster's rotational interlocking cutters indiscriminately crunching away at anything unlucky enough to end up in its hopper, only for the insatiable machine to grind it all down into a slurry mulch fine enough to pass through the narrow sewage lines trouble-free..." B.digest_brute = 20 - B.special_entrance_sound = 'sound/machines/blender.ogg' \ No newline at end of file + B.special_entrance_sound = 'sound/machines/blender.ogg' diff --git a/modular_chomp/code/global.dm b/modular_chomp/code/global.dm new file mode 100644 index 0000000000..3131ce21ff --- /dev/null +++ b/modular_chomp/code/global.dm @@ -0,0 +1,6 @@ + +var/list/shell_module_blacklist = list( + "Sci-borg", "Research" + ) +var/list/latejoin_gatewaystation = list() +var/list/latejoin_plainspath = list() diff --git a/modular_chomp/code/modules/client/preferences.dm b/modular_chomp/code/modules/client/preferences.dm index 887baa7bbe..76dea00a76 100644 --- a/modular_chomp/code/modules/client/preferences.dm +++ b/modular_chomp/code/modules/client/preferences.dm @@ -1,3 +1,10 @@ +/datum/preferences + var/digitigrade = 0 // 0 = no digi, 1 = default, 2+ = digi styles... (Not used yet) + + var/job_other_low = 0 + var/job_other_med = 0 + var/job_other_high = 0 + /client/verb/toggle_random_emote_pitch() set name = "Toggle Random Emote Pitch" set category = "Preferences" diff --git a/code/modules/client/preferences_spawnpoints_ch.dm b/modular_chomp/code/modules/client/preferences_spawnpoints.dm similarity index 60% rename from code/modules/client/preferences_spawnpoints_ch.dm rename to modular_chomp/code/modules/client/preferences_spawnpoints.dm index f3f53ea8fb..225356789d 100644 --- a/code/modules/client/preferences_spawnpoints_ch.dm +++ b/modular_chomp/code/modules/client/preferences_spawnpoints.dm @@ -1,6 +1,7 @@ /datum/spawnpoint/stationgateway display_name = "Station gateway" msg = "has completed translation from station gateway" + disallow_job = list("Non-Crew") /datum/spawnpoint/stationgateway/New() ..() @@ -9,6 +10,7 @@ /datum/spawnpoint/vore display_name = "Vorespawn - Prey" msg = "has arrived on the station" + allow_offmap_spawn = TRUE /datum/spawnpoint/vore/pred display_name = "Vorespawn - Pred" @@ -16,4 +18,13 @@ /datum/spawnpoint/vore/New() ..() - turfs = latejoin \ No newline at end of file + turfs = latejoin + +/datum/spawnpoint/plainspath + display_name = "Sif plains" + msg = "has checked in at the plains gate" + restrict_job = list("Non-Crew") + +/datum/spawnpoint/plainspath/New() + ..() + turfs = latejoin_plainspath diff --git a/modular_chomp/code/modules/mob/living/carbon/human/human.dm b/modular_chomp/code/modules/mob/living/carbon/human/human.dm index cfad50726f..9ff23f5dd6 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/human.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/human.dm @@ -1,18 +1,25 @@ /mob/living/carbon/human/update_fullness() - var/previous_stomach_fullness = vore_fullness_ex["stomach"] - var/previous_taur_fullness = vore_fullness_ex["taur belly"] - //update_vore_tail_sprite() - //update_vore_belly_sprite() - . = ..() - if(vore_fullness_ex["stomach"] != previous_stomach_fullness) - update_vore_belly_sprite() - if(vore_fullness_ex["taur belly"] != previous_taur_fullness) - update_vore_tail_sprite() + var/previous_stomach_fullness = vore_fullness_ex["stomach"] + var/previous_taur_fullness = vore_fullness_ex["taur belly"] + //update_vore_tail_sprite() + //update_vore_belly_sprite() + . = ..() + if(vore_fullness_ex["stomach"] != previous_stomach_fullness) + update_vore_belly_sprite() + if(vore_fullness_ex["taur belly"] != previous_taur_fullness) + update_vore_tail_sprite() /mob/living/carbon/human/vs_animate(var/belly_to_animate) - if(belly_to_animate == "stomach") - vore_belly_animation() - else if(belly_to_animate == "taur belly") - vore_tail_animation() - else - return \ No newline at end of file + if(belly_to_animate == "stomach") + vore_belly_animation() + else if(belly_to_animate == "taur belly") + vore_tail_animation() + else + return + +/mob/living/carbon/human/verb/hide_headset() + set name = "Show/Hide Headset" + set category = "IC" + set desc = "Toggle headset worn icon visibility." + hide_headset = !hide_headset + update_inv_ears() \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/human_defines.dm b/modular_chomp/code/modules/mob/living/carbon/human/human_defines.dm index 11eae0dc7b..e487bf278b 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/human_defines.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/human_defines.dm @@ -9,3 +9,4 @@ vore_icon_bellies = list("stomach", "taur belly") var/struggle_anim_stomach = FALSE var/struggle_anim_taur = FALSE + var/hide_headset = FALSE \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/teshari.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/teshari.dm index b47fbf79f5..1c5a7ba8e1 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/teshari.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/teshari.dm @@ -1,2 +1,29 @@ /datum/species/teshari - vore_belly_default_variant = "T" \ No newline at end of file + vore_belly_default_variant = "T" + +// allow teshari to always be scooped, as long as pref is enabled +/mob/living/MouseDrop(var/atom/over_object) + // make sure src (The dragged) is human + if(!istype(src, /mob/living/carbon/human)) + return ..() + + var/mob/living/carbon/human/DraggedH = src + + //make sure src (the dragged) is a teshari + if(DraggedH.species.name == SPECIES_TESHARI) + var/mob/living/M = over_object + // only perform the grab if; grabber and grabbed adjacent, caller is grabbed OR grabber, and the grabbed's grab preference is true. + if(holder_type && istype(M) && Adjacent(M) && (usr == M || usr == DraggedH) && DraggedH != M && !M.incapacitated() && DraggedH.pickup_pref && (M != usr || (M == usr && M.pickup_active)) && (DraggedH.a_intent == I_HELP && M.a_intent == I_HELP)) //VOREStation Edit + get_scooped(M, (usr == DraggedH)) + return + return ..() + + +//allow teshari permission to pass plastic flaps. +/obj/structure/plasticflaps/CanPass(atom/A, turf/T) + var/mob/living/carbon/human/H = A + if(istype(H)) + if(H.species.name == SPECIES_TESHARI) + return 1 + + return ..() \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/mob.dm b/modular_chomp/code/modules/mob/mob.dm index 6396fabe20..56eb7ea782 100644 --- a/modular_chomp/code/modules/mob/mob.dm +++ b/modular_chomp/code/modules/mob/mob.dm @@ -1,6 +1,7 @@ /mob var/voice_freq = 42500 // Preference for character voice frequency var/list/voice_sounds_list = list() // The sound list containing our voice sounds! + var/died_in_vr = FALSE //For virtual reality sleepers /mob/is_incorporeal() if(incorporeal_move) diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm index c1cc7b2ae1..e3c294297b 100644 --- a/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_extra.dm @@ -145,4 +145,22 @@ name = "Sect Drone Eyes" icon_state = "sectdrone_eyes" color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_HEAD) \ No newline at end of file + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/thickneck + name = "Thick Neck" + icon_state = "thickneck" + body_parts = list(BP_HEAD) + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/marking/ch/thickerneck + name = "Thicker Neck" + icon_state = "thickerneck" + body_parts = list(BP_HEAD) + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/marking/ch/thickthroat + name = "Thick Throat" + icon_state = "thickthroat" + body_parts = list(BP_HEAD) + color_blend_mode = ICON_MULTIPLY \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm index 50be550e23..5ebf9786d3 100644 --- a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm @@ -16,4 +16,14 @@ name = "Fox (Taur, 3-color)" icon_state = "fox" extra_overlay = "fox_markings" - extra_overlay2 = "fox_markings2" \ No newline at end of file + extra_overlay2 = "fox_markings2" + +/datum/sprite_accessory/tail/taur/ch/sectdrone + name = "Sect Drone (Taur)" + icon_state = "sectdrone" + extra_overlay = "sectdrone_markings" + +/datum/sprite_accessory/tail/taur/ch/fatsectdrone + name = "Fat Sect Drone (Taur)" + icon_state = "fatsectdrone" + extra_overlay = "fatsectdrone_markings" diff --git a/modular_chomp/code/modules/projectiles/gun.dm b/modular_chomp/code/modules/projectiles/gun.dm new file mode 100644 index 0000000000..ce2afeada7 --- /dev/null +++ b/modular_chomp/code/modules/projectiles/gun.dm @@ -0,0 +1,9 @@ +// prevent gun activation when stealth swimming. The low alpha hides you from NPC AI, which allows you to cheese mobs. +/obj/item/weapon/gun/special_check(var/mob/user) + var/mob/living/L = user + if(istype(L)) + if(L.has_modifier_of_type(/datum/modifier/underwater_stealth)) + to_chat(user,"You cannot use guns whilst hiding underwater!") + return 0 + + return ..() diff --git a/modular_chomp/code/modules/reagents/machinery/dispenser/chem_synthesizer_ch.dm b/modular_chomp/code/modules/reagents/machinery/dispenser/chem_synthesizer_ch.dm index 589ec8d711..5ab0020d3b 100644 --- a/modular_chomp/code/modules/reagents/machinery/dispenser/chem_synthesizer_ch.dm +++ b/modular_chomp/code/modules/reagents/machinery/dispenser/chem_synthesizer_ch.dm @@ -23,9 +23,15 @@ var/busy = FALSE var/production_mode = FALSE // Toggle between click-step input and comma-delineated text input for creating recipes. var/use_catalyst = TRUE // Determines whether or not the catalyst will be added to reagents while processing a recipe. + var/stalled = FALSE // Required for emergency stop to interrupt on-going recipes. + var/drug_substance = 1 // Controls which form medicine takes (bottle, pill, etc). 1 for bottle, 2 for pill, 3 for patch. var/delay_modifier = 4 // This is multiplied by the volume of a step to determine how long each step takes. Bigger volume = slower. var/obj/item/weapon/reagent_containers/glass/catalyst = null // This is where the user adds catalyst. Usually phoron. + var/bottle_icon = 4 // Determines icon states of bottles, pills, and patches. + var/pill_icon = 2 + var/patch_icon = 2 + var/list/recipes = list() // This holds chemical recipes up to a maximum determined by SYNTHESIZER_MAX_RECIPES. Two-dimensional. var/list/queue = list() // This holds the recipe id's for queued up recipes. var/list/catalyst_ids = list() // This keeps track of the chemicals in the catalyst to remove before bottling. @@ -264,6 +270,10 @@ data["production_mode"] = production_mode data["panel_open"] = panel_open data["use_catalyst"] = use_catalyst + data["drug_substance"] = drug_substance + data["bottle_icon"] = bottle_icon + data["pill_icon"] = pill_icon + data["patch_icon"] = patch_icon var/list/tmp_queue = list() for(var/i = 1, i <= queue.len, i++) @@ -304,12 +314,19 @@ chemicals.Add(list(list("title" = label, "id" = label, "amount" = C.reagents.total_volume))) // list in a list because Byond merges the first list data["chemicals"] = chemicals + data["modal"] = tgui_modal_data(src) + return data -/obj/machinery/chemical_synthesizer/tgui_act(action, params) +/obj/machinery/chemical_synthesizer/tgui_act(action, params, datum/tgui/ui, datum/tgui_state/state) if(..()) return TRUE + if(tgui_act_modal(action, params, ui, state)) + return TRUE + + add_fingerprint(usr) + . = TRUE switch(action) if("start_queue") @@ -347,7 +364,7 @@ if(busy) var/confirm = alert(usr, "Are you sure you want to stall the machine?", "Confirm", "Yes", "No") if(confirm == "Yes") - stall() + stalled = TRUE if("bottle_product") // Bottles the reaction mixture if stalled. if(!busy) @@ -391,8 +408,56 @@ // If you forgot, this is a string returned by the user pressing the "add to queue" button on a recipe. if(index in recipes) queue[++queue.len] = index + if("drug_form") + // Toggles between bottles, pills, and patches. + drug_substance = params["drug_index"] - add_fingerprint(usr) +/obj/machinery/chemical_synthesizer/proc/tgui_act_modal(action, params, datum/tgui/ui, datum/tgui_state/state) + . = TRUE + var/id = params["id"] // The modal's ID + var/list/arguments = istext(params["arguments"]) ? json_decode(params["arguments"]) : params["arguments"] + switch(tgui_modal_act(src, action, params)) + if(TGUI_MODAL_OPEN) + switch(id) + if("change_pill_style") + var/list/choices = list() + for(var/i = 1 to MAX_PILL_SPRITE) + choices += "pill[i].png" + tgui_modal_bento(src, id, "Please select the new style for pills:", null, arguments, pill_icon, choices) + if("change_patch_style") + var/list/choices = list() + for(var/i = 1 to MAX_PATCH_SPRITE) + choices += "patch[i].png" + tgui_modal_bento(src, id, "Please select the new style for patches:", null, arguments, patch_icon, choices) + if("change_bottle_style") + var/list/choices = list() + for(var/i = 1 to MAX_BOTTLE_SPRITE) + choices += "bottle-[i].png" + tgui_modal_bento(src, id, "Please select the new style for bottles:", null, arguments, bottle_icon, choices) + else + return FALSE + if(TGUI_MODAL_ANSWER) + var/answer = params["answer"] + switch(id) + if("change_pill_style") + var/new_style = CLAMP(text2num(answer) || 0, 0, MAX_PILL_SPRITE) + if(!new_style) + return + pill_icon = new_style + if("change_patch_style") + var/new_style = CLAMP(text2num(answer) || 0, 0, MAX_PATCH_SPRITE) + if(!new_style) + return + patch_icon = new_style + if("change_bottle_style") + var/new_style = CLAMP(text2num(answer) || 0, 0, MAX_BOTTLE_SPRITE) + if(!new_style) + return + bottle_icon = new_style + else + return FALSE + else + return FALSE /obj/machinery/chemical_synthesizer/attack_ghost(mob/user) if(stat & (BROKEN|NOPOWER)) @@ -482,6 +547,9 @@ // This proc handles adding the catalyst starting the synthesizer's queue. /obj/machinery/chemical_synthesizer/proc/start_queue(mob/user) + if(stalled) // Incase SOMEHOW this var is true when the machine isn't running. + stalled = FALSE + if(stat & (BROKEN|NOPOWER)) return @@ -518,6 +586,11 @@ // This proc controls the timing for each step in a reaction. Step is the index for the current chem of our recipe, step + 1 is the volume of said chem. /obj/machinery/chemical_synthesizer/proc/follow_recipe(var/r_id, var/step as num) + if(stalled) // Emergency stop if() check. + stalled = FALSE + stall() + return + if(stat & (BROKEN|NOPOWER)) stall() return @@ -530,6 +603,11 @@ // This proc carries out the actual steps in each reaction. /obj/machinery/chemical_synthesizer/proc/perform_reaction(var/r_id, var/step as num) + if(stalled) // Emergency stop if() check. + stalled = FALSE + stall() + return + if(stat & (BROKEN|NOPOWER)) stall() return @@ -593,14 +671,41 @@ if(!r_id) r_id = "[reagents.get_master_reagent_name()]" - while(reagents.total_volume) - var/obj/item/weapon/reagent_containers/glass/bottle/B = new(src.loc) - B.name = "[r_id] bottle" - B.pixel_x = rand(-7, 7) // random position - B.pixel_y = rand(-7, 7) - B.icon_state = "bottle-4" - reagents.trans_to_obj(B, min(reagents.total_volume, MAX_UNITS_PER_BOTTLE)) - B.update_icon() + // Copy-pasta go brr + switch(drug_substance) + if(2) // Pills + while(reagents.total_volume) + var/obj/item/weapon/reagent_containers/pill/P= new(src.loc) + P.name = "[r_id]" + P.pixel_x = rand(-7, 7) // random position + P.pixel_y = rand(-7, 7) + P.icon_state = "pill[pill_icon]" + reagents.trans_to_obj(P, min(reagents.total_volume, MAX_UNITS_PER_PILL)) + if(P.icon_state in list("pill1", "pill2", "pill3", "pill4")) // if using greyscale, take colour from reagent + P.color = P.reagents.get_color() + P.update_icon() + + if(3) // Patches + while(reagents.total_volume) + var/obj/item/weapon/reagent_containers/pill/patch/P= new(src.loc) + P.name = "[r_id]" + P.pixel_x = rand(-7, 7) // random position + P.pixel_y = rand(-7, 7) + P.icon_state = "patch[patch_icon]" + reagents.trans_to_obj(P, min(reagents.total_volume, MAX_UNITS_PER_PATCH)) + if(P.icon_state in list("patch1", "patch2", "patch3", "patch4")) // if using greyscale, take colour from reagent + P.color = P.reagents.get_color() + P.update_icon() + + else // Bottles. Official value is 1, but this works as a sanity check. + while(reagents.total_volume) + var/obj/item/weapon/reagent_containers/glass/bottle/B = new(src.loc) + B.name = "[r_id] bottle" + B.pixel_x = rand(-7, 7) // random position + B.pixel_y = rand(-7, 7) + B.icon_state = "bottle-[bottle_icon]" + reagents.trans_to_obj(B, min(reagents.total_volume, MAX_UNITS_PER_BOTTLE)) + B.update_icon() // Sanity check when manual bottling is triggered. if(queue.len) diff --git a/modular_chomp/code/modules/shieldgen/shield_capacitor.dm b/modular_chomp/code/modules/shieldgen/shield_capacitor.dm new file mode 100644 index 0000000000..0deba45235 --- /dev/null +++ b/modular_chomp/code/modules/shieldgen/shield_capacitor.dm @@ -0,0 +1,2 @@ +/obj/machinery/shield_capacitor + icon = 'modular_chomp/icons/obj/machines/shielding.dmi' diff --git a/modular_chomp/code/modules/shieldgen/shield_gen.dm b/modular_chomp/code/modules/shieldgen/shield_gen.dm new file mode 100644 index 0000000000..93ee81c20b --- /dev/null +++ b/modular_chomp/code/modules/shieldgen/shield_gen.dm @@ -0,0 +1,2 @@ +/obj/machinery/shield_gen + icon = 'modular_chomp/icons/obj/machines/shielding.dmi' diff --git a/modular_chomp/icons/obj/machines/shielding.dmi b/modular_chomp/icons/obj/machines/shielding.dmi new file mode 100644 index 0000000000..d50c50a633 Binary files /dev/null and b/modular_chomp/icons/obj/machines/shielding.dmi differ diff --git a/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm b/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm index b409a008e5..9554a36f3b 100644 --- a/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm +++ b/modular_chomp/maps/submaps/shelters/MechFabShip-27x24.dmm @@ -49,7 +49,7 @@ "oz" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/part_replacer/adv/discount_bluespace,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/yellow,/area/survivalpod/superpose/MechFabShip) "oS" = (/obj/structure/table/steel_reinforced,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/defib_kit/jumper_kit/loaded,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) "ph" = (/turf/simulated/wall/skipjack,/area/survivalpod/superpose/MechFabShip) -"py" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/acid{pixel_y = 30},/obj/machinery/computer/rdconsole/robotics,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) +"py" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/reagent_dispensers/acid{pixel_y = 30},/obj/machinery/computer/mecha,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechFabShip) "pR" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular{dir = 4; id = "kalipsoshutters"; name = "Kalipso Blast Shielding"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) "qf" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/MechFabShip) "qk" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/techfloor/corner{dir = 5},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechFabShip) diff --git a/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm b/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm index 0d95135e92..3fe26681c5 100644 --- a/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm +++ b/modular_chomp/maps/submaps/shelters/MechStorageFab-32x24.dmm @@ -85,20 +85,20 @@ "Dr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/alarm/alarms_hidden{pixel_y = 22},/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) "DV" = (/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "EE" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/gygax/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) -"EY" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/durand/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"EY" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/gygax/medgax,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) "Ga" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/random/maintenance/engineering,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "Go" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "GI" = (/obj/structure/table/rack/shelf/steel,/obj/item/mecha_parts/mecha_equipment/combat_shield,/obj/item/mecha_parts/mecha_equipment/repair_droid,/obj/item/mecha_parts/mecha_equipment/tool/sleeper,/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/mortar,/obj/item/mecha_parts/mecha_equipment/weapon/energy/flamer/rigged,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "GX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) "Ib" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) -"IE" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/marauder/seraph,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) +"IE" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/marauder/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) "IN" = (/obj/item/weapon/bedsheet/piratedouble,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/MechStorageFab) "IS" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "IX" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "Jh" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "Jo" = (/obj/machinery/atmospherics/valve{dir = 8},/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "JE" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 8; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) -"JR" = (/obj/mecha/working/hoverpod/combatpod{dir = 8},/turf/template_noop,/area/template_noop) +"JR" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/mecha/combat/phazon/old,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) "JT" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/loot_pile/mecha/durand,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/MechStorageFab) "JV" = (/obj/structure/closet/walllocker_double/north,/obj/item/device/gps,/obj/item/sticky_pad/random,/obj/item/device/starcaster_news,/obj/item/weapon/pen/blue,/obj/item/device/pda,/obj/item/weapon/card/id/external,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/clothing/accessory/permit/gun,/obj/item/device/camera,/obj/item/device/binoculars,/obj/item/device/threadneedle,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/bodybag/cryobag,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/color/yellow,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/glass/beaker/vial/tricordrazine,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/weapon/reagent_containers/pill/spaceacillin,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/suit_cooling_unit/emergency,/obj/item/stack/nanopaste,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/clotting,/obj/item/weapon/storage/backpack/messenger,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/clothing/accessory/poncho/thermal,/obj/item/weapon/storage/box/survival/comp,/obj/item/weapon/storage/toolbox/brass,/obj/item/weapon/storage/box/khcrystal,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) "Ke" = (/obj/machinery/robotic_fabricator,/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) @@ -114,7 +114,6 @@ "MA" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/steel_dirty,/area/survivalpod/superpose/MechStorageFab) "MB" = (/obj/structure/closet/crate,/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/item/stack/material/cardboard{amount = 50},/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/turcarpet,/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood{amount = 50; color = "#824B28"},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/hard{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/wood/sif{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/marble{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/cloth{amount = 50},/obj/item/stack/material/algae{amount = 50},/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/sandstone,/obj/item/stack/material/lead{amount = 30},/obj/item/stack/material/plasteel{amount = 30; pixel_y = 5},/obj/item/stack/material/resin{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/item/stack/material/smolebricks{amount = 50},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/survivalpod/superpose/MechStorageFab) "Ni" = (/turf/template_noop,/area/survivalpod/superpose/MechStorageFab) -"NH" = (/obj/mecha/combat/fighter/gunpod{dir = 8},/turf/template_noop,/area/template_noop) "Oc" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) "Of" = (/obj/structure/salvageable/console_os{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) "Os" = (/obj/machinery/vending/engivend{emagged = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) @@ -133,7 +132,6 @@ "VT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) "We" = (/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/MechStorageFab) "Wo" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/asteroid_steel,/area/survivalpod/superpose/MechStorageFab) -"Xr" = (/obj/mecha/combat/fighter/gunpod/loaded{dir = 8},/turf/template_noop,/area/template_noop) "XH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/maintenance/rnd{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "XX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/maintenance/engi{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) "Yd" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/MechStorageFab) @@ -150,22 +148,22 @@ yFyFdGdGyFyFyFyFyFyFyFdGdGdGdGdGtwtwtwdGdGdGyFtwtwtwyFyFyFyFyFyF dGAoAoAoAoAoAoAoAoAoAoAoAoAodGdGtwdGdGdGyFdGdGtwtwtwdGtwtwtwdGdG dGsKDVDVDVDVDVDVDVnhGIMllkAoAotKAoAoAotKtKtKAoAoAoAoAoAoAoAodGyF dGdGdGdGdGdGdGdGDVDVDVDVDVAoJTDVYlDVAoYdaIBCVbAoUtpAakZjAhAotwyF -dGdGdGdGdGdGjqdGDVAoAoAoAoAoEEDVEYDVAoYdDVGaIbAoJhpASwusOcAotwyF +dGdGdGdGdGdGjqdGDVAoAoAoAoAoJRDVEYDVAoYdDVGaIbAoJhpASwusOcAotwyF dGdGdGyFyFyFyFyFDVAobEkdbEAoAuDVvGlAAogTJEJotoAoMxpAfqcSlXAodGyF dGdGdGdGdGdGdGdGDVohbEbEWeohTKTKqfLsAoXXADADADAonJskDVTKTKAoyFyF -dGdGdGdGdGdGXrdGDVAoAoADAoAoVxmBYBdfDrnHQodfMAXHKETKTKycdAAotwyF +dGdGdGdGdGdGdGdGDVAoAoADAoAoVxmBYBdfDrnHQodfMAXHKETKTKycdAAotwyF dGdGdGyFyFyFyFyFDVAoavjuzbAoAoADADAoAoAoAoAoPtAoAoADAoAoAoAotwyF dGdGdGdGdGdGdGdGDVtKeapATKADKNoWrpSMLpqEJVAoISAopApApAbQtlAotwdG -dGdGdGdGdGdGNHdGDVtKOflcskrMpADVlAbQLsGXQoinIbADnzTKakZjCNAoyFdG +dGdGdGdGdGdGdGdGDVtKOflcskrMpADVlAbQLsGXQoinIbADnzTKakZjCNAoyFdG dGdGdGyFyFyFyFyFDVtKwUTKpAADDVpwpwpwpwTKpAAoPtAoMaDVSwusOcAoyFdG dGdGdGdGdGdGdGdGDVtKYIdHKtAoezAoqpAoezAoINAotHXHsdpwfqcSlXAodGyF -dGdGdGdGdGdGjqdGDVtKZALspAAodtAoncAodtAodtAoPtAoDfpApApAgGAotwyF +dGdGdGdGdGdGdGdGDVtKZALspAAodtAoncAodtAodtAoPtAoDfpApApAgGAotwyF dGdGdGyFyFyFyFyFDVAohrTKKeAoAoAoAoAoAoAoAoAolyAoAoADAoAoAoAotwyF dGdGdGdGdGdGdGdGDVAoAoADAoAoOsnsRSqYiHdfqYdfnZXHWopAZGpAZGAotwyF dGdGdGdGdGdGOFdGDVohbEbEbEohTKTKVTpAAoADADADyHAorjwgpArpDVAodGyF dGdGdGyFyFyFyFyFDVAobEqbbEAoqaDVAuDVAoijMBLhDVAotWpAakZjCNAotwyF -dGdGdGdGdGdGJRyFDVAoAoAoAoAoEYlAvGDVAohKrlIXArAoVuDVSwusOcAotwyF -dGdGSzyFyFyFyFyFDVtVaxtOcaAoYlDVIEDVAohoqyGobaAouJTKfqcSlXAotwdG +dGdGdGdGdGdGdGyFDVAoAoAoAoAoIElAvGDVAohKrlIXArAoVuDVSwusOcAotwyF +dGdGSzyFyFyFyFyFDVtVaxtOcaAoYlDVEEDVAohoqyGobaAouJTKfqcSlXAotwdG dGNiDVDVDVDVDVDVDVDVDVDVDVAoAotKAoAoAotKtKtKAoAoAoAoAoAoAoAotwdG dGAoAoAoAoAoAoAoAoAoAoAoAoAotwtwtwtwtwtwtwtwyFtwtwtwtwdGtwtwdGdG yFyFyFyFdGdGyFyFyFdGdGyFdGdGtwdGtwtwtwdGtwtwyFtwtwtwtwyFtwtwyFyF diff --git a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm index 0892582f05..6e1679ab22 100644 --- a/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm +++ b/modular_chomp/maps/submaps/shelters/ScienceShip-25x33.dmm @@ -10,7 +10,7 @@ "cw" = (/obj/structure/closet/walllocker/emerglocker{dir = 1; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) "da" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "estrella"; name = "interior access button"; pixel_y = 26},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) "df" = (/obj/structure/closet/walllocker_double/medical/west,/obj/item/weapon/storage/firstaid,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2,/obj/item/roller,/obj/item/device/defib_kit/loaded,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) -"dh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/bench/standard,/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"dh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/table/bench/standard,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) "dp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) "dB" = (/obj/structure/closet/secure_closet/engineering_electrical{req_access = null},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/belt/utility,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) "dS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) @@ -28,7 +28,7 @@ "hR" = (/obj/structure/extinguisher_cabinet{pixel_y = -30},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) "iv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/shuttle/floor/purple,/area/survivalpod/superpose/ScienceShip) "iQ" = (/obj/structure/table/wooden_reinforced,/obj/structure/flora/pottedplant/smallcactus{pixel_y = 13},/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) -"je" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"je" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; icon_state = "map_vent_out"; use_power = 1},/obj/structure/cryofeed,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) "ju" = (/obj/structure/closet/walllocker/emerglocker{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) "kl" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/shuttle/wall,/area/survivalpod/superpose/ScienceShip) "kw" = (/obj/structure/table,/obj/machinery/light{layer = 3},/obj/item/weapon/gun/projectile/revolver/toy/crossbow,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) @@ -72,7 +72,7 @@ "sY" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/bio_suit/anomaly,/obj/item/clothing/mask/breath,/obj/item/clothing/head/bio_hood/anomaly,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/excavation,/obj/item/stack/flag/yellow,/obj/item/device/measuring_tape,/obj/item/weapon/pickaxe/drill,/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/item/weapon/material/knife/machete/hatchet,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) "tb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) "te" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) -"tg" = (/obj/machinery/r_n_d/server/core,/obj/machinery/light/small,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"tg" = (/obj/machinery/light/small,/obj/structure/prop/fake_ai{name = "C0n71nu17y"},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) "tu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/turf/simulated/floor/tiled/techfloor/grid,/area/survivalpod/superpose/ScienceShip) "tN" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) "tR" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/door/window/northright{dir = 4; name = "Medical booth"},/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) @@ -130,7 +130,7 @@ "GM" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 4},/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/obj/item/device/flash,/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) "GP" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) "GU" = (/obj/machinery/sleep_console{dir = 4},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) -"HX" = (/obj/machinery/chem_master{pixel_x = -7},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) +"HX" = (/obj/machinery/chem_master{pixel_x = -7},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) "Ij" = (/obj/machinery/power/smes/buildable/hybrid,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) "In" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) "Io" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer"},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/ScienceShip) @@ -148,7 +148,7 @@ "Kh" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/ScienceShip) "Kq" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/random/soap,/turf/simulated/floor/plating,/area/survivalpod/superpose/ScienceShip) "Kx" = (/obj/screen/alert/highpressure,/turf/template_noop,/area/template_noop) -"KD" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/telecomms/relay/preset/ruskie,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) +"KD" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/structure/cryofeed{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/ScienceShip) "Lj" = (/obj/structure/closet/walllocker_double/kitchen/north{dir = 8; name = "Ration Cabinet"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/device/radio{pixel_x = -5; pixel_y = 5},/obj/item/device/radio{pixel_x = 5; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) "Lx" = (/obj/structure/extinguisher_cabinet{pixel_x = 28},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/ScienceShip) "LC" = (/obj/machinery/door/firedoor/glass,/obj/structure/shuttle/window,/obj/structure/curtain/black{icon_state = "open"; layer = 2; name = "privacy curtain"; opacity = 0},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) @@ -198,7 +198,7 @@ "UZ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "estrella_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "estrella_sensor"; pixel_y = -28},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) "VB" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) "VE" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) -"VH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/computer/rdservercontrol,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) +"VH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/computer/crew,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/ScienceShip) "VJ" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/machinery/alarm/alarms_hidden{dir = 8; pixel_x = 22},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) "VS" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/ScienceShip) "VT" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; frequency = 1380; icon_state = "door_locked"; id_tag = "estrella_inner"; locked = 1; name = "Internal Access"},/obj/machinery/atmospherics/pipe/simple/visible{dir = 5},/obj/machinery/door/firedoor/border_only,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/ScienceShip) diff --git a/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm b/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm index 306d67d9b4..c6622c0346 100644 --- a/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm +++ b/modular_chomp/maps/submaps/shelters/SmallCombatShip-9x11.dmm @@ -24,7 +24,7 @@ "Q" = (/obj/machinery/disperser/back{dir = 1},/obj/structure/ship_munition/disperser_charge/explosive,/turf/simulated/wall/rshull,/area/survivalpod/superpose/SmallCombatShip) "U" = (/obj/structure/bed/chair/bay/comfy/red{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SmallCombatShip) "W" = (/obj/structure/window/plastitanium/full,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille/rustic{health = 25; name = "reinforced grille"},/obj/machinery/door/blast/regular/open{dir = 4; id = "stargazer_blast"; name = "window blast shield"},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/SmallCombatShip) -"X" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/SmallCombatShip) +"X" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/SmallCombatShip) "Y" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SmallCombatShip) "Z" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SmallCombatShip) diff --git a/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm b/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm index 745d35b9ca..ba8f5cb0c7 100644 --- a/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm +++ b/modular_chomp/maps/submaps/shelters/TinyCombatShip-9x7.dmm @@ -1,7 +1,7 @@ "a" = (/turf/template_noop,/area/template_noop) "b" = (/obj/machinery/disperser/front{dir = 1},/turf/template_noop,/area/template_noop) "c" = (/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/TinyCombatShip) -"f" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = null; locked = 1; req_access = list(11)},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/TinyCombatShip) +"f" = (/obj/structure/fans/hardlight/colorable{color = "red"},/obj/machinery/door/airlock/hatch{req_one_access = null},/turf/simulated/floor/plating/external,/area/survivalpod/superpose/TinyCombatShip) "h" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/shuttle/engine/heater,/turf/simulated/floor/plating/external,/area/survivalpod/superpose/TinyCombatShip) "j" = (/obj/structure/salvageable/machine,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/TinyCombatShip) "k" = (/turf/simulated/wall/rshull,/area/survivalpod/superpose/TinyCombatShip) diff --git a/sound/machines/vehicle/engine_end.ogg b/sound/machines/vehicle/engine_end.ogg new file mode 100644 index 0000000000..7f3c179ad8 Binary files /dev/null and b/sound/machines/vehicle/engine_end.ogg differ diff --git a/sound/machines/vehicle/engine_mid.ogg b/sound/machines/vehicle/engine_mid.ogg new file mode 100644 index 0000000000..cf7173c8e8 Binary files /dev/null and b/sound/machines/vehicle/engine_mid.ogg differ diff --git a/sound/machines/vehicle/engine_start.ogg b/sound/machines/vehicle/engine_start.ogg new file mode 100644 index 0000000000..e4b5ac744b Binary files /dev/null and b/sound/machines/vehicle/engine_start.ogg differ diff --git a/sound/machines/vehicle/ignition.ogg b/sound/machines/vehicle/ignition.ogg new file mode 100644 index 0000000000..cf0718c6e3 Binary files /dev/null and b/sound/machines/vehicle/ignition.ogg differ diff --git a/tgui/packages/tgui/interfaces/ChemSynthesizer.js b/tgui/packages/tgui/interfaces/ChemSynthesizer.js index 0f61395853..a2b0b57859 100644 --- a/tgui/packages/tgui/interfaces/ChemSynthesizer.js +++ b/tgui/packages/tgui/interfaces/ChemSynthesizer.js @@ -3,10 +3,12 @@ import { useBackend } from '../backend'; import { Box, Button, Flex, LabeledList, Section } from '../components'; import { Window } from '../layouts'; import { BeakerContents } from './common/BeakerContents'; +import { ComplexModal, modalOpen } from './common/ComplexModal'; export const ChemSynthesizer = (props, context) => { return ( + @@ -15,7 +17,7 @@ export const ChemSynthesizer = (props, context) => { - + @@ -212,7 +214,7 @@ const ChemSynthesizerChemicals = (props, context) => { const ChemSynthesizerSettings = (props, context) => { const { act, data } = useBackend(context); - const { busy, production_mode, panel_open, rxn_vessel } = data; + const { busy, production_mode, panel_open, rxn_vessel, drug_substance, bottle_icon, pill_icon, patch_icon } = data; return ( @@ -260,6 +262,87 @@ const ChemSynthesizerSettings = (props, context) => { + +
+ + + + + + + + + + + +
+
); }; diff --git a/tgui/public/tgui.bundle.js b/tgui/public/tgui.bundle.js index 0d288f7af2..d55c238edd 100644 --- a/tgui/public/tgui.bundle.js +++ b/tgui/public/tgui.bundle.js @@ -1 +1 @@ -!function(){var e={21926:function(e,t,n){"use strict";t.__esModule=!0,t.createPopper=void 0,t.popperGenerator=h;var o=m(n(48764)),r=m(n(68349)),a=m(n(3671)),i=m(n(55490)),c=(m(n(40755)),m(n(69282))),l=m(n(27672)),d=(m(n(30752)),m(n(12459)),m(n(27629)),m(n(54220))),s=m(n(75949));t.detectOverflow=s["default"];var u=n(79388);n(15954);function m(e){return e&&e.__esModule?e:{"default":e}}var p={placement:"bottom",modifiers:[],strategy:"absolute"};function f(){for(var e=arguments.length,t=new Array(e),n=0;n0&&(a=(0,r.round)(n.width)/l||1),c>0&&(i=(0,r.round)(n.height)/c||1)}return{width:n.width/a,height:n.height/i,top:n.top/i,right:n.right/a,bottom:n.bottom/i,left:n.left/a,x:n.left/a,y:n.top/i}};var o=n(79388),r=n(36291)},65647:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t,n){var o="clippingParents"===t?function(e){var t=(0,i["default"])((0,m["default"])(e)),n=["absolute","fixed"].indexOf((0,d["default"])(e).position)>=0&&(0,s.isHTMLElement)(e)?(0,c["default"])(e):e;if(!(0,s.isElement)(n))return[];return t.filter((function(e){return(0,s.isElement)(e)&&(0,p["default"])(e,n)&&"body"!==(0,f["default"])(e)}))}(e):[].concat(t),r=[].concat(o,[n]),a=r[0],l=r.reduce((function(t,n){var o=N(e,n);return t.top=(0,C.max)(o.top,t.top),t.right=(0,C.min)(o.right,t.right),t.bottom=(0,C.min)(o.bottom,t.bottom),t.left=(0,C.max)(o.left,t.left),t}),N(e,a));return l.width=l.right-l.left,l.height=l.bottom-l.top,l.x=l.left,l.y=l.top,l};var o=n(15954),r=b(n(8204)),a=b(n(40015)),i=b(n(3671)),c=b(n(55490)),l=b(n(25890)),d=b(n(40755)),s=n(79388),u=b(n(11100)),m=b(n(95136)),p=b(n(62215)),f=b(n(38569)),h=b(n(73060)),C=n(36291);function b(e){return e&&e.__esModule?e:{"default":e}}function N(e,t){return t===o.viewport?(0,h["default"])((0,r["default"])(e)):(0,s.isElement)(t)?function(e){var t=(0,u["default"])(e);return t.top=t.top+e.clientTop,t.left=t.left+e.clientLeft,t.bottom=t.top+e.clientHeight,t.right=t.left+e.clientWidth,t.width=e.clientWidth,t.height=e.clientHeight,t.x=t.left,t.y=t.top,t}(t):(0,h["default"])((0,a["default"])((0,l["default"])(e)))}},48764:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t,n){void 0===n&&(n=!1);var u=(0,i.isHTMLElement)(t),m=(0,i.isHTMLElement)(t)&&function(e){var t=e.getBoundingClientRect(),n=(0,s.round)(t.width)/e.offsetWidth||1,o=(0,s.round)(t.height)/e.offsetHeight||1;return 1!==n||1!==o}(t),p=(0,l["default"])(t),f=(0,o["default"])(e,m),h={scrollLeft:0,scrollTop:0},C={x:0,y:0};(u||!u&&!n)&&(("body"!==(0,a["default"])(t)||(0,d["default"])(p))&&(h=(0,r["default"])(t)),(0,i.isHTMLElement)(t)?((C=(0,o["default"])(t,!0)).x+=t.clientLeft,C.y+=t.clientTop):p&&(C.x=(0,c["default"])(p)));return{x:f.left+h.scrollLeft-C.x,y:f.top+h.scrollTop-C.y,width:f.width,height:f.height}};var o=u(n(11100)),r=u(n(3514)),a=u(n(38569)),i=n(79388),c=u(n(36056)),l=u(n(25890)),d=u(n(57360)),s=n(36291);function u(e){return e&&e.__esModule?e:{"default":e}}},40755:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(0,r["default"])(e).getComputedStyle(e)};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},25890:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(((0,o.isElement)(e)?e.ownerDocument:e.document)||window.document).documentElement};var o=n(79388)},40015:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t,n=(0,o["default"])(e),l=(0,i["default"])(e),d=null==(t=e.ownerDocument)?void 0:t.body,s=(0,c.max)(n.scrollWidth,n.clientWidth,d?d.scrollWidth:0,d?d.clientWidth:0),u=(0,c.max)(n.scrollHeight,n.clientHeight,d?d.scrollHeight:0,d?d.clientHeight:0),m=-l.scrollLeft+(0,a["default"])(e),p=-l.scrollTop;"rtl"===(0,r["default"])(d||n).direction&&(m+=(0,c.max)(n.clientWidth,d?d.clientWidth:0)-s);return{width:s,height:u,x:m,y:p}};var o=l(n(25890)),r=l(n(40755)),a=l(n(36056)),i=l(n(69211)),c=n(36291);function l(e){return e&&e.__esModule?e:{"default":e}}},41829:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}},68349:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=e.offsetWidth,o=e.offsetHeight;Math.abs(t.width-n)<=1&&(n=t.width);Math.abs(t.height-o)<=1&&(o=t.height);return{x:e.offsetLeft,y:e.offsetTop,width:n,height:o}};var o,r=(o=n(11100))&&o.__esModule?o:{"default":o}},38569:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e?(e.nodeName||"").toLowerCase():null}},3514:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return e!==(0,r["default"])(e)&&(0,a.isHTMLElement)(e)?(0,i["default"])(e):(0,o["default"])(e)};var o=c(n(69211)),r=c(n(96904)),a=n(79388),i=c(n(41829));function c(e){return e&&e.__esModule?e:{"default":e}}},55490:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,o["default"])(e),n=s(e);for(;n&&(0,c["default"])(n)&&"static"===(0,a["default"])(n).position;)n=s(n);if(n&&("html"===(0,r["default"])(n)||"body"===(0,r["default"])(n)&&"static"===(0,a["default"])(n).position))return t;return n||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&(0,i.isHTMLElement)(e)){if("fixed"===(0,a["default"])(e).position)return null}var n=(0,l["default"])(e);(0,i.isShadowRoot)(n)&&(n=n.host);for(;(0,i.isHTMLElement)(n)&&["html","body"].indexOf((0,r["default"])(n))<0;){var o=(0,a["default"])(n);if("none"!==o.transform||"none"!==o.perspective||"paint"===o.contain||-1!==["transform","perspective"].indexOf(o.willChange)||t&&"filter"===o.willChange||t&&o.filter&&"none"!==o.filter)return n;n=n.parentNode}return null}(e)||t};var o=d(n(96904)),r=d(n(38569)),a=d(n(40755)),i=n(79388),c=d(n(94437)),l=d(n(95136));function d(e){return e&&e.__esModule?e:{"default":e}}function s(e){return(0,i.isHTMLElement)(e)&&"fixed"!==(0,a["default"])(e).position?e.offsetParent:null}},95136:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){if("html"===(0,o["default"])(e))return e;return e.assignedSlot||e.parentNode||((0,a.isShadowRoot)(e)?e.host:null)||(0,r["default"])(e)};var o=i(n(38569)),r=i(n(25890)),a=n(79388);function i(e){return e&&e.__esModule?e:{"default":e}}},43367:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function l(e){if(["html","body","#document"].indexOf((0,a["default"])(e))>=0)return e.ownerDocument.body;if((0,i.isHTMLElement)(e)&&(0,r["default"])(e))return e;return l((0,o["default"])(e))};var o=c(n(95136)),r=c(n(57360)),a=c(n(38569)),i=n(79388);function c(e){return e&&e.__esModule?e:{"default":e}}},8204:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,o["default"])(e),n=(0,r["default"])(e),i=t.visualViewport,c=n.clientWidth,l=n.clientHeight,d=0,s=0;i&&(c=i.width,l=i.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(d=i.offsetLeft,s=i.offsetTop));return{width:c,height:l,x:d+(0,a["default"])(e),y:s}};var o=i(n(96904)),r=i(n(25890)),a=i(n(36056));function i(e){return e&&e.__esModule?e:{"default":e}}},96904:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}},69211:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=t.pageXOffset,o=t.pageYOffset;return{scrollLeft:n,scrollTop:o}};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},36056:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return(0,o["default"])((0,r["default"])(e)).left+(0,a["default"])(e).scrollLeft};var o=i(n(11100)),r=i(n(25890)),a=i(n(69211));function i(e){return e&&e.__esModule?e:{"default":e}}},79388:function(e,t,n){"use strict";t.__esModule=!0,t.isElement=function(e){var t=(0,r["default"])(e).Element;return e instanceof t||e instanceof Element},t.isHTMLElement=function(e){var t=(0,r["default"])(e).HTMLElement;return e instanceof t||e instanceof HTMLElement},t.isShadowRoot=function(e){if("undefined"==typeof ShadowRoot)return!1;var t=(0,r["default"])(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot};var o,r=(o=n(96904))&&o.__esModule?o:{"default":o}},57360:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=(0,r["default"])(e),n=t.overflow,o=t.overflowX,a=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+a+o)};var o,r=(o=n(40755))&&o.__esModule?o:{"default":o}},94437:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return["table","td","th"].indexOf((0,r["default"])(e))>=0};var o,r=(o=n(38569))&&o.__esModule?o:{"default":o}},3671:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function l(e,t){var n;void 0===t&&(t=[]);var c=(0,o["default"])(e),d=c===(null==(n=e.ownerDocument)?void 0:n.body),s=(0,a["default"])(c),u=d?[s].concat(s.visualViewport||[],(0,i["default"])(c)?c:[]):c,m=t.concat(u);return d?m:m.concat(l((0,r["default"])(u)))};var o=c(n(43367)),r=c(n(95136)),a=c(n(96904)),i=c(n(57360));function c(e){return e&&e.__esModule?e:{"default":e}}},15954:function(e,t){"use strict";t.__esModule=!0,t.write=t.viewport=t.variationPlacements=t.top=t.start=t.right=t.reference=t.read=t.popper=t.placements=t.modifierPhases=t.main=t.left=t.end=t.clippingParents=t.bottom=t.beforeWrite=t.beforeRead=t.beforeMain=t.basePlacements=t.auto=t.afterWrite=t.afterRead=t.afterMain=void 0;t.top="top";var n="bottom";t.bottom=n;var o="right";t.right=o;var r="left";t.left=r;var a="auto";t.auto=a;var i=["top",n,o,r];t.basePlacements=i;var c="start";t.start=c;var l="end";t.end=l;t.clippingParents="clippingParents";t.viewport="viewport";t.popper="popper";t.reference="reference";var d=i.reduce((function(e,t){return e.concat([t+"-"+c,t+"-"+l])}),[]);t.variationPlacements=d;var s=[].concat(i,[a]).reduce((function(e,t){return e.concat([t,t+"-"+c,t+"-"+l])}),[]);t.placements=s;var u="beforeRead";t.beforeRead=u;var m="read";t.read=m;var p="afterRead";t.afterRead=p;var f="beforeMain";t.beforeMain=f;var h="main";t.main=h;var C="afterMain";t.afterMain=C;var b="beforeWrite";t.beforeWrite=b;var N="write";t.write=N;var g="afterWrite";t.afterWrite=g;var V=[u,m,p,f,h,C,b,N,g];t.modifierPhases=V},37809:function(e,t,n){"use strict";t.__esModule=!0;var o={popperGenerator:!0,detectOverflow:!0,createPopperBase:!0,createPopper:!0,createPopperLite:!0};t.popperGenerator=t.detectOverflow=t.createPopperLite=t.createPopperBase=t.createPopper=void 0;var r=n(15954);Object.keys(r).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===r[e]||(t[e]=r[e]))}));var a=n(4207);Object.keys(a).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===a[e]||(t[e]=a[e]))}));var i=n(21926);t.popperGenerator=i.popperGenerator,t.detectOverflow=i.detectOverflow,t.createPopperBase=i.createPopper;var c=n(17827);t.createPopper=c.createPopper;var l=n(47952);t.createPopperLite=l.createPopper},89290:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(38569))&&o.__esModule?o:{"default":o},a=n(79388);var i={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},o=t.attributes[e]||{},i=t.elements[e];(0,a.isHTMLElement)(i)&&(0,r["default"])(i)&&(Object.assign(i.style,n),Object.keys(o).forEach((function(e){var t=o[e];!1===t?i.removeAttribute(e):i.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var o=t.elements[e],i=t.attributes[e]||{},c=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});(0,a.isHTMLElement)(o)&&(0,r["default"])(o)&&(Object.assign(o.style,c),Object.keys(i).forEach((function(e){o.removeAttribute(e)})))}))}},requires:["computeStyles"]};t["default"]=i},71313:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=m(n(27629)),r=m(n(68349)),a=m(n(62215)),i=m(n(55490)),c=m(n(78772)),l=n(54444),d=m(n(11277)),s=m(n(45674)),u=n(15954);n(79388);function m(e){return e&&e.__esModule?e:{"default":e}}var p=function(e,t){return e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e,(0,d["default"])("number"!=typeof e?e:(0,s["default"])(e,u.basePlacements))};var f={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,a=e.name,d=e.options,s=n.elements.arrow,m=n.modifiersData.popperOffsets,f=(0,o["default"])(n.placement),h=(0,c["default"])(f),C=[u.left,u.right].indexOf(f)>=0?"height":"width";if(s&&m){var b=p(d.padding,n),N=(0,r["default"])(s),g="y"===h?u.top:u.left,V="y"===h?u.bottom:u.right,v=n.rects.reference[C]+n.rects.reference[h]-m[h]-n.rects.popper[C],_=m[h]-n.rects.reference[h],y=(0,i["default"])(s),k=y?"y"===h?y.clientHeight||0:y.clientWidth||0:0,x=v/2-_/2,w=b[g],B=k-N[C]-b[V],L=k/2-N[C]/2+x,S=(0,l.within)(w,L,B),I=h;n.modifiersData[a]=((t={})[I]=S,t.centerOffset=S-L,t)}},effect:function(e){var t=e.state,n=e.options.element,o=void 0===n?"[data-popper-arrow]":n;null!=o&&("string"!=typeof o||(o=t.elements.popper.querySelector(o)))&&(0,a["default"])(t.elements.popper,o)&&(t.elements.arrow=o)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};t["default"]=f},54680:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0,t.mapToStyles=p;var o=n(15954),r=u(n(55490)),a=u(n(96904)),i=u(n(25890)),c=u(n(40755)),l=u(n(27629)),d=u(n(31686)),s=n(36291);function u(e){return e&&e.__esModule?e:{"default":e}}var m={top:"auto",right:"auto",bottom:"auto",left:"auto"};function p(e){var t,n=e.popper,l=e.popperRect,d=e.placement,u=e.variation,p=e.offsets,f=e.position,h=e.gpuAcceleration,C=e.adaptive,b=e.roundOffsets,N=e.isFixed,g=p.x,V=void 0===g?0:g,v=p.y,_=void 0===v?0:v,y="function"==typeof b?b({x:V,y:_}):{x:V,y:_};V=y.x,_=y.y;var k=p.hasOwnProperty("x"),x=p.hasOwnProperty("y"),w=o.left,B=o.top,L=window;if(C){var S=(0,r["default"])(n),I="clientHeight",T="clientWidth";if(S===(0,a["default"])(n)&&(S=(0,i["default"])(n),"static"!==(0,c["default"])(S).position&&"absolute"===f&&(I="scrollHeight",T="scrollWidth")),d===o.top||(d===o.left||d===o.right)&&u===o.end)B=o.bottom,_-=(N&&S===L&&L.visualViewport?L.visualViewport.height:S[I])-l.height,_*=h?1:-1;if(d===o.left||(d===o.top||d===o.bottom)&&u===o.end)w=o.right,V-=(N&&S===L&&L.visualViewport?L.visualViewport.width:S[T])-l.width,V*=h?1:-1}var A,M=Object.assign({position:f},C&&m),E=!0===b?function(e){var t=e.x,n=e.y,o=window.devicePixelRatio||1;return{x:(0,s.round)(t*o)/o||0,y:(0,s.round)(n*o)/o||0}}({x:V,y:_}):{x:V,y:_};return V=E.x,_=E.y,h?Object.assign({},M,((A={})[B]=x?"0":"",A[w]=k?"0":"",A.transform=(L.devicePixelRatio||1)<=1?"translate("+V+"px, "+_+"px)":"translate3d("+V+"px, "+_+"px, 0)",A)):Object.assign({},M,((t={})[B]=x?_+"px":"",t[w]=k?V+"px":"",t.transform="",t))}var f={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,o=n.gpuAcceleration,r=void 0===o||o,a=n.adaptive,i=void 0===a||a,c=n.roundOffsets,s=void 0===c||c,u={placement:(0,l["default"])(t.placement),variation:(0,d["default"])(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:r,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,p(Object.assign({},u,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:i,roundOffsets:s})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,p(Object.assign({},u,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:s})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}};t["default"]=f},53887:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(96904))&&o.__esModule?o:{"default":o};var a={passive:!0};var i={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,o=e.options,i=o.scroll,c=void 0===i||i,l=o.resize,d=void 0===l||l,s=(0,r["default"])(t.elements.popper),u=[].concat(t.scrollParents.reference,t.scrollParents.popper);return c&&u.forEach((function(e){e.addEventListener("scroll",n.update,a)})),d&&s.addEventListener("resize",n.update,a),function(){c&&u.forEach((function(e){e.removeEventListener("scroll",n.update,a)})),d&&s.removeEventListener("resize",n.update,a)}},data:{}};t["default"]=i},82566:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=s(n(31477)),r=s(n(27629)),a=s(n(44214)),i=s(n(75949)),c=s(n(2894)),l=n(15954),d=s(n(31686));function s(e){return e&&e.__esModule?e:{"default":e}}var u={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,s=e.name;if(!t.modifiersData[s]._skip){for(var u=n.mainAxis,m=void 0===u||u,p=n.altAxis,f=void 0===p||p,h=n.fallbackPlacements,C=n.padding,b=n.boundary,N=n.rootBoundary,g=n.altBoundary,V=n.flipVariations,v=void 0===V||V,_=n.allowedAutoPlacements,y=t.options.placement,k=(0,r["default"])(y),x=h||(k===y||!v?[(0,o["default"])(y)]:function(e){if((0,r["default"])(e)===l.auto)return[];var t=(0,o["default"])(e);return[(0,a["default"])(e),t,(0,a["default"])(t)]}(y)),w=[y].concat(x).reduce((function(e,n){return e.concat((0,r["default"])(n)===l.auto?(0,c["default"])(t,{placement:n,boundary:b,rootBoundary:N,padding:C,flipVariations:v,allowedAutoPlacements:_}):n)}),[]),B=t.rects.reference,L=t.rects.popper,S=new Map,I=!0,T=w[0],A=0;A=0,F=O?"width":"height",D=(0,i["default"])(t,{placement:M,boundary:b,rootBoundary:N,altBoundary:g,padding:C}),R=O?P?l.right:l.left:P?l.bottom:l.top;B[F]>L[F]&&(R=(0,o["default"])(R));var j=(0,o["default"])(R),W=[];if(m&&W.push(D[E]<=0),f&&W.push(D[R]<=0,D[j]<=0),W.every((function(e){return e}))){T=M,I=!1;break}S.set(M,W)}if(I)for(var z=function(e){var t=w.find((function(t){var n=S.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return T=t,"break"},U=v?3:1;U>0;U--){if("break"===z(U))break}t.placement!==T&&(t.modifiersData[s]._skip=!0,t.placement=T,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};t["default"]=u},27353:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=n(15954),a=(o=n(75949))&&o.__esModule?o:{"default":o};function i(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function c(e){return[r.top,r.right,r.bottom,r.left].some((function(t){return e[t]>=0}))}var l={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,o=t.rects.reference,r=t.rects.popper,l=t.modifiersData.preventOverflow,d=(0,a["default"])(t,{elementContext:"reference"}),s=(0,a["default"])(t,{altBoundary:!0}),u=i(d,o),m=i(s,r,l),p=c(u),f=c(m);t.modifiersData[n]={referenceClippingOffsets:u,popperEscapeOffsets:m,isReferenceHidden:p,hasPopperEscaped:f},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":f})}};t["default"]=l},4207:function(e,t,n){"use strict";t.__esModule=!0,t.preventOverflow=t.popperOffsets=t.offset=t.hide=t.flip=t.eventListeners=t.computeStyles=t.arrow=t.applyStyles=void 0;var o=m(n(89290));t.applyStyles=o["default"];var r=m(n(71313));t.arrow=r["default"];var a=m(n(54680));t.computeStyles=a["default"];var i=m(n(53887));t.eventListeners=i["default"];var c=m(n(82566));t.flip=c["default"];var l=m(n(27353));t.hide=l["default"];var d=m(n(99873));t.offset=d["default"];var s=m(n(83662));t.popperOffsets=s["default"];var u=m(n(21031));function m(e){return e&&e.__esModule?e:{"default":e}}t.preventOverflow=u["default"]},99873:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0,t.distanceAndSkiddingToXY=i;var o,r=(o=n(27629))&&o.__esModule?o:{"default":o},a=n(15954);function i(e,t,n){var o=(0,r["default"])(e),i=[a.left,a.top].indexOf(o)>=0?-1:1,c="function"==typeof n?n(Object.assign({},t,{placement:e})):n,l=c[0],d=c[1];return l=l||0,d=(d||0)*i,[a.left,a.right].indexOf(o)>=0?{x:d,y:l}:{x:l,y:d}}var c={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,o=e.name,r=n.offset,c=void 0===r?[0,0]:r,l=a.placements.reduce((function(e,n){return e[n]=i(n,t.rects,c),e}),{}),d=l[t.placement],s=d.x,u=d.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=s,t.modifiersData.popperOffsets.y+=u),t.modifiersData[o]=l}};t["default"]=c},83662:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o,r=(o=n(2002))&&o.__esModule?o:{"default":o};var a={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=(0,r["default"])({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}};t["default"]=a},21031:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=void 0;var o=n(15954),r=f(n(27629)),a=f(n(78772)),i=f(n(16696)),c=n(54444),l=f(n(68349)),d=f(n(55490)),s=f(n(75949)),u=f(n(31686)),m=f(n(22710)),p=n(36291);function f(e){return e&&e.__esModule?e:{"default":e}}var h={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,f=e.name,h=n.mainAxis,C=void 0===h||h,b=n.altAxis,N=void 0!==b&&b,g=n.boundary,V=n.rootBoundary,v=n.altBoundary,_=n.padding,y=n.tether,k=void 0===y||y,x=n.tetherOffset,w=void 0===x?0:x,B=(0,s["default"])(t,{boundary:g,rootBoundary:V,padding:_,altBoundary:v}),L=(0,r["default"])(t.placement),S=(0,u["default"])(t.placement),I=!S,T=(0,a["default"])(L),A=(0,i["default"])(T),M=t.modifiersData.popperOffsets,E=t.rects.reference,P=t.rects.popper,O="function"==typeof w?w(Object.assign({},t.rects,{placement:t.placement})):w,F="number"==typeof O?{mainAxis:O,altAxis:O}:Object.assign({mainAxis:0,altAxis:0},O),D=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,R={x:0,y:0};if(M){if(C){var j,W="y"===T?o.top:o.left,z="y"===T?o.bottom:o.right,U="y"===T?"height":"width",H=M[T],G=H+B[W],q=H-B[z],K=k?-P[U]/2:0,Y=S===o.start?E[U]:P[U],$=S===o.start?-P[U]:-E[U],X=t.elements.arrow,Q=k&&X?(0,l["default"])(X):{width:0,height:0},J=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:(0,m["default"])(),Z=J[W],ee=J[z],te=(0,c.within)(0,E[U],Q[U]),ne=I?E[U]/2-K-te-Z-F.mainAxis:Y-te-Z-F.mainAxis,oe=I?-E[U]/2+K+te+ee+F.mainAxis:$+te+ee+F.mainAxis,re=t.elements.arrow&&(0,d["default"])(t.elements.arrow),ae=re?"y"===T?re.clientTop||0:re.clientLeft||0:0,ie=null!=(j=null==D?void 0:D[T])?j:0,ce=H+ne-ie-ae,le=H+oe-ie,de=(0,c.within)(k?(0,p.min)(G,ce):G,H,k?(0,p.max)(q,le):q);M[T]=de,R[T]=de-H}if(N){var se,ue="x"===T?o.top:o.left,me="x"===T?o.bottom:o.right,pe=M[A],fe="y"===A?"height":"width",he=pe+B[ue],Ce=pe-B[me],be=-1!==[o.top,o.left].indexOf(L),Ne=null!=(se=null==D?void 0:D[A])?se:0,ge=be?he:pe-E[fe]-P[fe]-Ne+F.altAxis,Ve=be?pe+E[fe]+P[fe]-Ne-F.altAxis:Ce,ve=k&&be?(0,c.withinMaxClamp)(ge,pe,Ve):(0,c.within)(k?ge:he,pe,k?Ve:Ce);M[A]=ve,R[A]=ve-pe}t.modifiersData[f]=R}},requiresIfExists:["offset"]};t["default"]=h},47952:function(e,t,n){"use strict";t.__esModule=!0,t.defaultModifiers=t.createPopper=void 0;var o=n(21926);t.popperGenerator=o.popperGenerator,t.detectOverflow=o.detectOverflow;var r=l(n(53887)),a=l(n(83662)),i=l(n(54680)),c=l(n(89290));function l(e){return e&&e.__esModule?e:{"default":e}}var d=[r["default"],a["default"],i["default"],c["default"]];t.defaultModifiers=d;var s=(0,o.popperGenerator)({defaultModifiers:d});t.createPopper=s},17827:function(e,t,n){"use strict";t.__esModule=!0;var o={createPopper:!0,createPopperLite:!0,defaultModifiers:!0,popperGenerator:!0,detectOverflow:!0};t.defaultModifiers=t.createPopperLite=t.createPopper=void 0;var r=n(21926);t.popperGenerator=r.popperGenerator,t.detectOverflow=r.detectOverflow;var a=C(n(53887)),i=C(n(83662)),c=C(n(54680)),l=C(n(89290)),d=C(n(99873)),s=C(n(82566)),u=C(n(21031)),m=C(n(71313)),p=C(n(27353)),f=n(47952);t.createPopperLite=f.createPopper;var h=n(4207);function C(e){return e&&e.__esModule?e:{"default":e}}Object.keys(h).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(o,e)||e in t&&t[e]===h[e]||(t[e]=h[e]))}));var b=[a["default"],i["default"],c["default"],l["default"],d["default"],s["default"],u["default"],m["default"],p["default"]];t.defaultModifiers=b;var N=(0,r.popperGenerator)({defaultModifiers:b});t.createPopperLite=t.createPopper=N},2894:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t){void 0===t&&(t={});var n=t,c=n.placement,l=n.boundary,d=n.rootBoundary,s=n.padding,u=n.flipVariations,m=n.allowedAutoPlacements,p=void 0===m?r.placements:m,f=(0,o["default"])(c),h=f?u?r.variationPlacements:r.variationPlacements.filter((function(e){return(0,o["default"])(e)===f})):r.basePlacements,C=h.filter((function(e){return p.indexOf(e)>=0}));0===C.length&&(C=h);var b=C.reduce((function(t,n){return t[n]=(0,a["default"])(e,{placement:n,boundary:l,rootBoundary:d,padding:s})[(0,i["default"])(n)],t}),{});return Object.keys(b).sort((function(e,t){return b[e]-b[t]}))};var o=c(n(31686)),r=n(15954),a=c(n(75949)),i=c(n(27629));function c(e){return e&&e.__esModule?e:{"default":e}}},2002:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t,n=e.reference,c=e.element,l=e.placement,d=l?(0,o["default"])(l):null,s=l?(0,r["default"])(l):null,u=n.x+n.width/2-c.width/2,m=n.y+n.height/2-c.height/2;switch(d){case i.top:t={x:u,y:n.y-c.height};break;case i.bottom:t={x:u,y:n.y+n.height};break;case i.right:t={x:n.x+n.width,y:m};break;case i.left:t={x:n.x-c.width,y:m};break;default:t={x:n.x,y:n.y}}var p=d?(0,a["default"])(d):null;if(null!=p){var f="y"===p?"height":"width";switch(s){case i.start:t[p]=t[p]-(n[f]/2-c[f]/2);break;case i.end:t[p]=t[p]+(n[f]/2-c[f]/2)}}return t};var o=c(n(27629)),r=c(n(31686)),a=c(n(78772)),i=n(15954);function c(e){return e&&e.__esModule?e:{"default":e}}},27672:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=undefined,n(e())}))}))),t}}},75949:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e,t){void 0===t&&(t={});var n=t,m=n.placement,p=void 0===m?e.placement:m,f=n.boundary,h=void 0===f?l.clippingParents:f,C=n.rootBoundary,b=void 0===C?l.viewport:C,N=n.elementContext,g=void 0===N?l.popper:N,V=n.altBoundary,v=void 0!==V&&V,_=n.padding,y=void 0===_?0:_,k=(0,s["default"])("number"!=typeof y?y:(0,u["default"])(y,l.basePlacements)),x=g===l.popper?l.reference:l.popper,w=e.rects.popper,B=e.elements[v?x:g],L=(0,o["default"])((0,d.isElement)(B)?B:B.contextElement||(0,r["default"])(e.elements.popper),h,b),S=(0,a["default"])(e.elements.reference),I=(0,i["default"])({reference:S,element:w,strategy:"absolute",placement:p}),T=(0,c["default"])(Object.assign({},w,I)),A=g===l.popper?T:S,M={top:L.top-A.top+k.top,bottom:A.bottom-L.bottom+k.bottom,left:L.left-A.left+k.left,right:A.right-L.right+k.right},E=e.modifiersData.offset;if(g===l.popper&&E){var P=E[p];Object.keys(M).forEach((function(e){var t=[l.right,l.bottom].indexOf(e)>=0?1:-1,n=[l.top,l.bottom].indexOf(e)>=0?"y":"x";M[e]+=P[n]*t}))}return M};var o=m(n(65647)),r=m(n(25890)),a=m(n(11100)),i=m(n(2002)),c=m(n(73060)),l=n(15954),d=n(79388),s=m(n(11277)),u=m(n(45674));function m(e){return e&&e.__esModule?e:{"default":e}}},45674:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}},80885:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o=0?"x":"y"}},31477:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.replace(/left|right|bottom|top/g,(function(e){return n[e]}))};var n={left:"right",right:"left",bottom:"top",top:"bottom"}},44214:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.replace(/start|end/g,(function(e){return n[e]}))};var n={start:"end",end:"start"}},31686:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return e.split("-")[1]}},36291:function(e,t){"use strict";t.__esModule=!0,t.round=t.min=t.max=void 0;var n=Math.max;t.max=n;var o=Math.min;t.min=o;var r=Math.round;t.round=r},54220:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){var t=e.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}},11277:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){return Object.assign({},(0,r["default"])(),e)};var o,r=(o=n(22710))&&o.__esModule?o:{"default":o}},69282:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){var t=function(e){var t=new Map,n=new Set,o=[];function r(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var o=t.get(e);o&&r(o)}})),o.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||r(e)})),o}(e);return o.modifierPhases.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])};var o=n(15954)},73060:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}},12459:function(e,t){"use strict";t.__esModule=!0,t["default"]=function(e,t){var n=new Set;return e.filter((function(e){var o=t(e);if(!n.has(o))return n.add(o),!0}))}},30752:function(e,t,n){"use strict";t.__esModule=!0,t["default"]=function(e){e.forEach((function(t){[].concat(Object.keys(t),a).filter((function(e,t,n){return n.indexOf(e)===t})).forEach((function(n){switch(n){case"name":t.name;break;case"enabled":t.enabled;break;case"phase":r.modifierPhases.indexOf(t.phase);break;case"fn":t.fn;break;case"effect":null!=t.effect&&t.effect;break;case"requires":null!=t.requires&&Array.isArray(t.requires);break;case"requiresIfExists":Array.isArray(t.requiresIfExists)}t.requires&&t.requires.forEach((function(t){e.find((function(e){return e.name===t}))}))}))}))};(o=n(80885))&&o.__esModule;var o,r=n(15954);var a=["name","enabled","phase","fn","effect","requires","options"]},54444:function(e,t,n){"use strict";t.__esModule=!0,t.within=r,t.withinMaxClamp=function(e,t,n){var o=r(e,t,n);return o>n?n:o};var o=n(36291);function r(e,t,n){return(0,o.max)(e,(0,o.min)(t,n))}},7696:function(e,t,n){"use strict";var o=n(45744),r=n(56279),a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not a function")}},99079:function(e,t,n){"use strict";var o=n(49332),r=n(56279),a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not a constructor")}},3760:function(e,t,n){"use strict";var o=n(45744),r=String,a=TypeError;e.exports=function(e){if("object"==typeof e||o(e))return e;throw a("Can't set "+r(e)+" as a prototype")}},48144:function(e,t,n){"use strict";var o=n(43741),r=n(48525),a=n(92723).f,i=o("unscopables"),c=Array.prototype;c[i]==undefined&&a(c,i,{configurable:!0,value:r(null)}),e.exports=function(e){c[i][e]=!0}},21679:function(e,t,n){"use strict";var o=n(59529).charAt;e.exports=function(e,t,n){return t+(n?o(e,t).length:1)}},41706:function(e,t,n){"use strict";var o=n(76469),r=TypeError;e.exports=function(e,t){if(o(t,e))return e;throw r("Incorrect invocation")}},65522:function(e,t,n){"use strict";var o=n(5484),r=String,a=TypeError;e.exports=function(e){if(o(e))return e;throw a(r(e)+" is not an object")}},65167:function(e){"use strict";e.exports="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView},26974:function(e,t,n){"use strict";var o=n(39125);e.exports=o((function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}}))},92574:function(e,t,n){"use strict";var o,r,a,i=n(65167),c=n(77849),l=n(61770),d=n(45744),s=n(5484),u=n(77807),m=n(10374),p=n(56279),f=n(87229),h=n(73e3),C=n(92723).f,b=n(76469),N=n(56997),g=n(44958),V=n(43741),v=n(8220),_=n(48797),y=_.enforce,k=_.get,x=l.Int8Array,w=x&&x.prototype,B=l.Uint8ClampedArray,L=B&&B.prototype,S=x&&N(x),I=w&&N(w),T=Object.prototype,A=l.TypeError,M=V("toStringTag"),E=v("TYPED_ARRAY_TAG"),P="TypedArrayConstructor",O=i&&!!g&&"Opera"!==m(l.opera),F=!1,D={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},R={BigInt64Array:8,BigUint64Array:8},j=function(e){if(!s(e))return!1;var t=m(e);return"DataView"===t||u(D,t)||u(R,t)},W=function(e){if(!s(e))return!1;var t=m(e);return u(D,t)||u(R,t)};for(o in D)(a=(r=l[o])&&r.prototype)?y(a).TypedArrayConstructor=r:O=!1;for(o in R)(a=(r=l[o])&&r.prototype)&&(y(a).TypedArrayConstructor=r);if((!O||!d(S)||S===Function.prototype)&&(S=function(){throw A("Incorrect invocation")},O))for(o in D)l[o]&&g(l[o],S);if((!O||!I||I===T)&&(I=S.prototype,O))for(o in D)l[o]&&g(l[o].prototype,I);if(O&&N(L)!==I&&g(L,I),c&&!u(I,M))for(o in F=!0,C(I,M,{get:function(){return s(this)?this[E]:undefined}}),D)l[o]&&f(l[o],E,o);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:O,TYPED_ARRAY_TAG:F&&E,aTypedArray:function(e){if(W(e))return e;throw A("Target is not a typed array")},aTypedArrayConstructor:function(e){if(d(e)&&(!g||b(S,e)))return e;throw A(p(e)+" is not a typed array constructor")},exportTypedArrayMethod:function(e,t,n,o){if(c){if(n)for(var r in D){var a=l[r];if(a&&u(a.prototype,e))try{delete a.prototype[e]}catch(i){try{a.prototype[e]=t}catch(d){}}}I[e]&&!n||h(I,e,n?t:O&&w[e]||t,o)}},exportTypedArrayStaticMethod:function(e,t,n){var o,r;if(c){if(g){if(n)for(o in D)if((r=l[o])&&u(r,e))try{delete r[e]}catch(a){}if(S[e]&&!n)return;try{return h(S,e,n?t:O&&S[e]||t)}catch(a){}}for(o in D)!(r=l[o])||r[e]&&!n||h(r,e,t)}},getTypedArrayConstructor:function z(e){var t=N(e);if(s(t)){var n=k(t);return n&&u(n,P)?n.TypedArrayConstructor:z(t)}},isView:j,isTypedArray:W,TypedArray:S,TypedArrayPrototype:I}},10377:function(e,t,n){"use strict";var o=n(61770),r=n(90655),a=n(77849),i=n(65167),c=n(82429),l=n(87229),d=n(60495),s=n(39125),u=n(41706),m=n(94868),p=n(87543),f=n(76124),h=n(29209),C=n(56997),b=n(44958),N=n(94600).f,g=n(92723).f,V=n(8093),v=n(74337),_=n(93182),y=n(48797),k=c.PROPER,x=c.CONFIGURABLE,w=y.get,B=y.set,L="ArrayBuffer",S="DataView",I="Wrong index",T=o.ArrayBuffer,A=T,M=A&&A.prototype,E=o.DataView,P=E&&E.prototype,O=Object.prototype,F=o.Array,D=o.RangeError,R=r(V),j=r([].reverse),W=h.pack,z=h.unpack,U=function(e){return[255&e]},H=function(e){return[255&e,e>>8&255]},G=function(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]},q=function(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]},K=function(e){return W(e,23,4)},Y=function(e){return W(e,52,8)},$=function(e,t){g(e.prototype,t,{get:function(){return w(this)[t]}})},X=function(e,t,n,o){var r=f(n),a=w(e);if(r+t>a.byteLength)throw D(I);var i=w(a.buffer).bytes,c=r+a.byteOffset,l=v(i,c,c+t);return o?l:j(l)},Q=function(e,t,n,o,r,a){var i=f(n),c=w(e);if(i+t>c.byteLength)throw D(I);for(var l=w(c.buffer).bytes,d=i+c.byteOffset,s=o(+r),u=0;ute;)(Z=ee[te++])in A||l(A,Z,T[Z]);M.constructor=A}b&&C(P)!==O&&b(P,O);var ne=new E(new A(2)),oe=r(P.setInt8);ne.setInt8(0,2147483648),ne.setInt8(1,2147483649),!ne.getInt8(0)&&ne.getInt8(1)||d(P,{setInt8:function(e,t){oe(this,e,t<<24>>24)},setUint8:function(e,t){oe(this,e,t<<24>>24)}},{unsafe:!0})}else M=(A=function(e){u(this,M);var t=f(e);B(this,{bytes:R(F(t),0),byteLength:t}),a||(this.byteLength=t)}).prototype,P=(E=function(e,t,n){u(this,P),u(e,M);var o=w(e).byteLength,r=m(t);if(r<0||r>o)throw D("Wrong offset");if(r+(n=n===undefined?o-r:p(n))>o)throw D("Wrong length");B(this,{buffer:e,byteLength:n,byteOffset:r}),a||(this.buffer=e,this.byteLength=n,this.byteOffset=r)}).prototype,a&&($(A,"byteLength"),$(E,"buffer"),$(E,"byteLength"),$(E,"byteOffset")),d(P,{getInt8:function(e){return X(this,1,e)[0]<<24>>24},getUint8:function(e){return X(this,1,e)[0]},getInt16:function(e){var t=X(this,2,e,arguments.length>1?arguments[1]:undefined);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=X(this,2,e,arguments.length>1?arguments[1]:undefined);return t[1]<<8|t[0]},getInt32:function(e){return q(X(this,4,e,arguments.length>1?arguments[1]:undefined))},getUint32:function(e){return q(X(this,4,e,arguments.length>1?arguments[1]:undefined))>>>0},getFloat32:function(e){return z(X(this,4,e,arguments.length>1?arguments[1]:undefined),23)},getFloat64:function(e){return z(X(this,8,e,arguments.length>1?arguments[1]:undefined),52)},setInt8:function(e,t){Q(this,1,e,U,t)},setUint8:function(e,t){Q(this,1,e,U,t)},setInt16:function(e,t){Q(this,2,e,H,t,arguments.length>2?arguments[2]:undefined)},setUint16:function(e,t){Q(this,2,e,H,t,arguments.length>2?arguments[2]:undefined)},setInt32:function(e,t){Q(this,4,e,G,t,arguments.length>2?arguments[2]:undefined)},setUint32:function(e,t){Q(this,4,e,G,t,arguments.length>2?arguments[2]:undefined)},setFloat32:function(e,t){Q(this,4,e,K,t,arguments.length>2?arguments[2]:undefined)},setFloat64:function(e,t){Q(this,8,e,Y,t,arguments.length>2?arguments[2]:undefined)}});_(A,L),_(E,S),e.exports={ArrayBuffer:A,DataView:E}},21497:function(e,t,n){"use strict";var o=n(73502),r=n(312),a=n(10950),i=n(33099),c=Math.min;e.exports=[].copyWithin||function(e,t){var n=o(this),l=a(n),d=r(e,l),s=r(t,l),u=arguments.length>2?arguments[2]:undefined,m=c((u===undefined?l:r(u,l))-s,l-d),p=1;for(s0;)s in n?n[d]=n[s]:i(n,d),d+=p,s+=p;return n}},8093:function(e,t,n){"use strict";var o=n(73502),r=n(312),a=n(10950);e.exports=function(e){for(var t=o(this),n=a(t),i=arguments.length,c=r(i>1?arguments[1]:undefined,n),l=i>2?arguments[2]:undefined,d=l===undefined?n:r(l,n);d>c;)t[c++]=e;return t}},29074:function(e,t,n){"use strict";var o=n(36249).forEach,r=n(74640)("forEach");e.exports=r?[].forEach:function(e){return o(this,e,arguments.length>1?arguments[1]:undefined)}},15993:function(e,t,n){"use strict";var o=n(10950);e.exports=function(e,t){for(var n=0,r=o(t),a=new e(r);r>n;)a[n]=t[n++];return a}},49981:function(e,t,n){"use strict";var o=n(9341),r=n(76348),a=n(73502),i=n(63635),c=n(94535),l=n(49332),d=n(10950),s=n(61154),u=n(93247),m=n(52522),p=Array;e.exports=function(e){var t=a(e),n=l(this),f=arguments.length,h=f>1?arguments[1]:undefined,C=h!==undefined;C&&(h=o(h,f>2?arguments[2]:undefined));var b,N,g,V,v,_,y=m(t),k=0;if(!y||this===p&&c(y))for(b=d(t),N=n?new this(b):p(b);b>k;k++)_=C?h(t[k],k):t[k],s(N,k,_);else for(v=(V=u(t,y)).next,N=n?new this:[];!(g=r(v,V)).done;k++)_=C?i(V,h,[g.value,k],!0):g.value,s(N,k,_);return N.length=k,N}},89344:function(e,t,n){"use strict";var o=n(4254),r=n(312),a=n(10950),i=function(e){return function(t,n,i){var c,l=o(t),d=a(l),s=r(i,d);if(e&&n!=n){for(;d>s;)if((c=l[s++])!=c)return!0}else for(;d>s;s++)if((e||s in l)&&l[s]===n)return e||s||0;return!e&&-1}};e.exports={includes:i(!0),indexOf:i(!1)}},36249:function(e,t,n){"use strict";var o=n(9341),r=n(90655),a=n(83609),i=n(73502),c=n(10950),l=n(64711),d=r([].push),s=function(e){var t=1==e,n=2==e,r=3==e,s=4==e,u=6==e,m=7==e,p=5==e||u;return function(f,h,C,b){for(var N,g,V=i(f),v=a(V),_=o(h,C),y=c(v),k=0,x=b||l,w=t?x(f,y):n||m?x(f,0):undefined;y>k;k++)if((p||k in v)&&(g=_(N=v[k],k,V),e))if(t)w[k]=g;else if(g)switch(e){case 3:return!0;case 5:return N;case 6:return k;case 2:d(w,N)}else switch(e){case 4:return!1;case 7:d(w,N)}return u?-1:r||s?s:w}};e.exports={forEach:s(0),map:s(1),filter:s(2),some:s(3),every:s(4),find:s(5),findIndex:s(6),filterReject:s(7)}},93881:function(e,t,n){"use strict";var o=n(10261),r=n(4254),a=n(94868),i=n(10950),c=n(74640),l=Math.min,d=[].lastIndexOf,s=!!d&&1/[1].lastIndexOf(1,-0)<0,u=c("lastIndexOf"),m=s||!u;e.exports=m?function(e){if(s)return o(d,this,arguments)||0;var t=r(this),n=i(t),c=n-1;for(arguments.length>1&&(c=l(c,a(arguments[1]))),c<0&&(c=n+c);c>=0;c--)if(c in t&&t[c]===e)return c||0;return-1}:d},10112:function(e,t,n){"use strict";var o=n(39125),r=n(43741),a=n(64279),i=r("species");e.exports=function(e){return a>=51||!o((function(){var t=[];return(t.constructor={})[i]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},74640:function(e,t,n){"use strict";var o=n(39125);e.exports=function(e,t){var n=[][e];return!!n&&o((function(){n.call(null,t||function(){return 1},1)}))}},21038:function(e,t,n){"use strict";var o=n(7696),r=n(73502),a=n(83609),i=n(10950),c=TypeError,l=function(e){return function(t,n,l,d){o(n);var s=r(t),u=a(s),m=i(s),p=e?m-1:0,f=e?-1:1;if(l<2)for(;;){if(p in u){d=u[p],p+=f;break}if(p+=f,e?p<0:m<=p)throw c("Reduce of empty array with no initial value")}for(;e?p>=0:m>p;p+=f)p in u&&(d=n(d,u[p],p,s));return d}};e.exports={left:l(!1),right:l(!0)}},74337:function(e,t,n){"use strict";var o=n(312),r=n(10950),a=n(61154),i=Array,c=Math.max;e.exports=function(e,t,n){for(var l=r(e),d=o(t,l),s=o(n===undefined?l:n,l),u=i(c(s-d,0)),m=0;d0;)e[o]=e[--o];o!==a++&&(e[o]=n)}return e},i=function(e,t,n,o){for(var r=t.length,a=n.length,i=0,c=0;i1?arguments[1]:undefined);t=t?t.next:n.first;)for(o(t.value,t.key,this);t&&t.removed;)t=t.previous},has:function(e){return!!N(this,e)}}),a(p,n?{get:function(e){var t=N(this,e);return t&&t.value},set:function(e,t){return b(this,0===e?0:e,t)}}:{add:function(e){return b(this,e=0===e?0:e,e)}}),u&&o(p,"size",{get:function(){return C(this).size}}),s},setStrong:function(e,t,n){var o=t+" Iterator",r=h(t),a=h(o);d(e,t,(function(e,t){f(this,{type:o,target:e,state:r(e),kind:t,last:undefined})}),(function(){for(var e=a(this),t=e.kind,n=e.last;n&&n.removed;)n=n.previous;return e.target&&(e.last=n=n?n.next:e.state.first)?"keys"==t?{value:n.key,done:!1}:"values"==t?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(e.target=undefined,{value:undefined,done:!0})}),n?"entries":"values",!n,!0),s(t)}}},81995:function(e,t,n){"use strict";var o=n(90655),r=n(60495),a=n(49632).getWeakData,i=n(65522),c=n(5484),l=n(41706),d=n(47916),s=n(36249),u=n(77807),m=n(48797),p=m.set,f=m.getterFor,h=s.find,C=s.findIndex,b=o([].splice),N=0,g=function(e){return e.frozen||(e.frozen=new V)},V=function(){this.entries=[]},v=function(e,t){return h(e.entries,(function(e){return e[0]===t}))};V.prototype={get:function(e){var t=v(this,e);if(t)return t[1]},has:function(e){return!!v(this,e)},set:function(e,t){var n=v(this,e);n?n[1]=t:this.entries.push([e,t])},"delete":function(e){var t=C(this.entries,(function(t){return t[0]===e}));return~t&&b(this.entries,t,1),!!~t}},e.exports={getConstructor:function(e,t,n,o){var s=e((function(e,r){l(e,m),p(e,{type:t,id:N++,frozen:undefined}),r!=undefined&&d(r,e[o],{that:e,AS_ENTRIES:n})})),m=s.prototype,h=f(t),C=function(e,t,n){var o=h(e),r=a(i(t),!0);return!0===r?g(o).set(t,n):r[o.id]=n,e};return r(m,{"delete":function(e){var t=h(this);if(!c(e))return!1;var n=a(e);return!0===n?g(t)["delete"](e):n&&u(n,t.id)&&delete n[t.id]},has:function(e){var t=h(this);if(!c(e))return!1;var n=a(e);return!0===n?g(t).has(e):n&&u(n,t.id)}}),r(m,n?{get:function(e){var t=h(this);if(c(e)){var n=a(e);return!0===n?g(t).get(e):n?n[t.id]:undefined}},set:function(e,t){return C(this,e,t)}}:{add:function(e){return C(this,e,!0)}}),s}}},18291:function(e,t,n){"use strict";var o=n(59450),r=n(61770),a=n(90655),i=n(16851),c=n(73e3),l=n(49632),d=n(47916),s=n(41706),u=n(45744),m=n(5484),p=n(39125),f=n(98994),h=n(93182),C=n(75121);e.exports=function(e,t,n){var b=-1!==e.indexOf("Map"),N=-1!==e.indexOf("Weak"),g=b?"set":"add",V=r[e],v=V&&V.prototype,_=V,y={},k=function(e){var t=a(v[e]);c(v,e,"add"==e?function(e){return t(this,0===e?0:e),this}:"delete"==e?function(e){return!(N&&!m(e))&&t(this,0===e?0:e)}:"get"==e?function(e){return N&&!m(e)?undefined:t(this,0===e?0:e)}:"has"==e?function(e){return!(N&&!m(e))&&t(this,0===e?0:e)}:function(e,n){return t(this,0===e?0:e,n),this})};if(i(e,!u(V)||!(N||v.forEach&&!p((function(){(new V).entries().next()})))))_=n.getConstructor(t,e,b,g),l.enable();else if(i(e,!0)){var x=new _,w=x[g](N?{}:-0,1)!=x,B=p((function(){x.has(1)})),L=f((function(e){new V(e)})),S=!N&&p((function(){for(var e=new V,t=5;t--;)e[g](t,t);return!e.has(-0)}));L||((_=t((function(e,t){s(e,v);var n=C(new V,e,_);return t!=undefined&&d(t,n[g],{that:n,AS_ENTRIES:b}),n}))).prototype=v,v.constructor=_),(B||S)&&(k("delete"),k("has"),b&&k("get")),(S||w)&&k(g),N&&v.clear&&delete v.clear}return y[e]=_,o({global:!0,constructor:!0,forced:_!=V},y),h(_,e),N||n.setStrong(_,e,b),_}},35155:function(e,t,n){"use strict";var o=n(77807),r=n(75379),a=n(12488),i=n(92723);e.exports=function(e,t,n){for(var c=r(t),l=i.f,d=a.f,s=0;s"+l+""}},92413:function(e,t,n){"use strict";var o=n(80936).IteratorPrototype,r=n(48525),a=n(20471),i=n(93182),c=n(53481),l=function(){return this};e.exports=function(e,t,n,d){var s=t+" Iterator";return e.prototype=r(o,{next:a(+!d,n)}),i(e,s,!1,!0),c[s]=l,e}},87229:function(e,t,n){"use strict";var o=n(77849),r=n(92723),a=n(20471);e.exports=o?function(e,t,n){return r.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},20471:function(e){"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},61154:function(e,t,n){"use strict";var o=n(23986),r=n(92723),a=n(20471);e.exports=function(e,t,n){var i=o(t);i in e?r.f(e,i,a(0,n)):e[i]=n}},36849:function(e,t,n){"use strict";var o=n(90655),r=n(39125),a=n(79408).start,i=RangeError,c=Math.abs,l=Date.prototype,d=l.toISOString,s=o(l.getTime),u=o(l.getUTCDate),m=o(l.getUTCFullYear),p=o(l.getUTCHours),f=o(l.getUTCMilliseconds),h=o(l.getUTCMinutes),C=o(l.getUTCMonth),b=o(l.getUTCSeconds);e.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=d.call(new Date(-50000000000001))}))||!r((function(){d.call(new Date(NaN))}))?function(){if(!isFinite(s(this)))throw i("Invalid time value");var e=this,t=m(e),n=f(e),o=t<0?"-":t>9999?"+":"";return o+a(c(t),o?6:4,0)+"-"+a(C(e)+1,2,0)+"-"+a(u(e),2,0)+"T"+a(p(e),2,0)+":"+a(h(e),2,0)+":"+a(b(e),2,0)+"."+a(n,3,0)+"Z"}:d},81990:function(e,t,n){"use strict";var o=n(65522),r=n(2118),a=TypeError;e.exports=function(e){if(o(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw a("Incorrect hint");return r(this,e)}},66384:function(e,t,n){"use strict";var o=n(28859),r=n(92723);e.exports=function(e,t,n){return n.get&&o(n.get,t,{getter:!0}),n.set&&o(n.set,t,{setter:!0}),r.f(e,t,n)}},73e3:function(e,t,n){"use strict";var o=n(45744),r=n(92723),a=n(28859),i=n(58962);e.exports=function(e,t,n,c){c||(c={});var l=c.enumerable,d=c.name!==undefined?c.name:t;return o(n)&&a(n,d,c),c.global?l?e[t]=n:i(t,n):(c.unsafe?e[t]&&(l=!0):delete e[t],l?e[t]=n:r.f(e,t,{value:n,enumerable:!1,configurable:!c.nonConfigurable,writable:!c.nonWritable})),e}},60495:function(e,t,n){"use strict";var o=n(73e3);e.exports=function(e,t,n){for(var r in t)o(e,r,t[r],n);return e}},58962:function(e,t,n){"use strict";var o=n(61770),r=Object.defineProperty;e.exports=function(e,t){try{r(o,e,{value:t,configurable:!0,writable:!0})}catch(n){o[e]=t}return t}},11335:function(e,t,n){"use strict";var o=n(59450),r=n(76348),a=n(37249),i=n(82429),c=n(45744),l=n(92413),d=n(56997),s=n(44958),u=n(93182),m=n(87229),p=n(73e3),f=n(43741),h=n(53481),C=n(80936),b=i.PROPER,N=i.CONFIGURABLE,g=C.IteratorPrototype,V=C.BUGGY_SAFARI_ITERATORS,v=f("iterator"),_="keys",y="values",k="entries",x=function(){return this};e.exports=function(e,t,n,i,f,C,w){l(n,t,i);var B,L,S,I=function(e){if(e===f&&P)return P;if(!V&&e in M)return M[e];switch(e){case _:case y:case k:return function(){return new n(this,e)}}return function(){return new n(this)}},T=t+" Iterator",A=!1,M=e.prototype,E=M[v]||M["@@iterator"]||f&&M[f],P=!V&&E||I(f),O="Array"==t&&M.entries||E;if(O&&(B=d(O.call(new e)))!==Object.prototype&&B.next&&(a||d(B)===g||(s?s(B,g):c(B[v])||p(B,v,x)),u(B,T,!0,!0),a&&(h[T]=x)),b&&f==y&&E&&E.name!==y&&(!a&&N?m(M,"name",y):(A=!0,P=function(){return r(E,this)})),f)if(L={values:I(y),keys:C?P:I(_),entries:I(k)},w)for(S in L)(V||A||!(S in M))&&p(M,S,L[S]);else o({target:t,proto:!0,forced:V||A},L);return a&&!w||M[v]===P||p(M,v,P,{name:f}),h[t]=P,L}},89604:function(e,t,n){"use strict";var o=n(62660),r=n(77807),a=n(68438),i=n(92723).f;e.exports=function(e){var t=o.Symbol||(o.Symbol={});r(t,e)||i(t,e,{value:a.f(e)})}},33099:function(e,t,n){"use strict";var o=n(56279),r=TypeError;e.exports=function(e,t){if(!delete e[t])throw r("Cannot delete property "+o(t)+" of "+o(e))}},77849:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},50842:function(e,t,n){"use strict";var o=n(61770),r=n(5484),a=o.document,i=r(a)&&r(a.createElement);e.exports=function(e){return i?a.createElement(e):{}}},97989:function(e){"use strict";var t=TypeError;e.exports=function(e){if(e>9007199254740991)throw t("Maximum allowed index exceeded");return e}},13811:function(e,t,n){"use strict";var o=n(42630).match(/firefox\/(\d+)/i);e.exports=!!o&&+o[1]},15904:function(e){"use strict";e.exports="object"==typeof window&&"object"!=typeof Deno},86936:function(e,t,n){"use strict";var o=n(42630);e.exports=/MSIE|Trident/.test(o)},48715:function(e,t,n){"use strict";var o=n(42630),r=n(61770);e.exports=/ipad|iphone|ipod/i.test(o)&&r.Pebble!==undefined},25515:function(e,t,n){"use strict";var o=n(42630);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(o)},67745:function(e,t,n){"use strict";var o=n(61496),r=n(61770);e.exports="process"==o(r.process)},35016:function(e,t,n){"use strict";var o=n(42630);e.exports=/web0s(?!.*chrome)/i.test(o)},42630:function(e,t,n){"use strict";var o=n(54965);e.exports=o("navigator","userAgent")||""},64279:function(e,t,n){"use strict";var o,r,a=n(61770),i=n(42630),c=a.process,l=a.Deno,d=c&&c.versions||l&&l.version,s=d&&d.v8;s&&(r=(o=s.split("."))[0]>0&&o[0]<4?1:+(o[0]+o[1])),!r&&i&&(!(o=i.match(/Edge\/(\d+)/))||o[1]>=74)&&(o=i.match(/Chrome\/(\d+)/))&&(r=+o[1]),e.exports=r},86778:function(e,t,n){"use strict";var o=n(42630).match(/AppleWebKit\/(\d+)\./);e.exports=!!o&&+o[1]},59096:function(e){"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},59450:function(e,t,n){"use strict";var o=n(61770),r=n(12488).f,a=n(87229),i=n(73e3),c=n(58962),l=n(35155),d=n(16851);e.exports=function(e,t){var n,s,u,m,p,f=e.target,h=e.global,C=e.stat;if(n=h?o:C?o[f]||c(f,{}):(o[f]||{}).prototype)for(s in t){if(m=t[s],u=e.dontCallGetSet?(p=r(n,s))&&p.value:n[s],!d(h?s:f+(C?".":"#")+s,e.forced)&&u!==undefined){if(typeof m==typeof u)continue;l(m,u)}(e.sham||u&&u.sham)&&a(m,"sham",!0),i(n,s,m,e)}}},39125:function(e){"use strict";e.exports=function(e){try{return!!e()}catch(t){return!0}}},6531:function(e,t,n){"use strict";n(50044);var o=n(90655),r=n(73e3),a=n(50174),i=n(39125),c=n(43741),l=n(87229),d=c("species"),s=RegExp.prototype;e.exports=function(e,t,n,u){var m=c(e),p=!i((function(){var t={};return t[m]=function(){return 7},7!=""[e](t)})),f=p&&!i((function(){var t=!1,n=/a/;return"split"===e&&((n={}).constructor={},n.constructor[d]=function(){return n},n.flags="",n[m]=/./[m]),n.exec=function(){return t=!0,null},n[m](""),!t}));if(!p||!f||n){var h=o(/./[m]),C=t(m,""[e],(function(e,t,n,r,i){var c=o(e),l=t.exec;return l===a||l===s.exec?p&&!i?{done:!0,value:h(t,n,r)}:{done:!0,value:c(n,t,r)}:{done:!1}}));r(String.prototype,e,C[0]),r(s,m,C[1])}u&&l(s[m],"sham",!0)}},23507:function(e,t,n){"use strict";var o=n(98037),r=n(10950),a=n(97989),i=n(9341);e.exports=function c(e,t,n,l,d,s,u,m){for(var p,f=d,h=0,C=!!u&&i(u,m);h0&&o(p)?f=c(e,t,p,r(p),f,s-1)-1:(a(f+1),e[f]=p),f++),h++;return f}},57724:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){return Object.isExtensible(Object.preventExtensions({}))}))},10261:function(e,t,n){"use strict";var o=n(14687),r=Function.prototype,a=r.apply,i=r.call;e.exports="object"==typeof Reflect&&Reflect.apply||(o?i.bind(a):function(){return i.apply(a,arguments)})},9341:function(e,t,n){"use strict";var o=n(90655),r=n(7696),a=n(14687),i=o(o.bind);e.exports=function(e,t){return r(e),t===undefined?e:a?i(e,t):function(){return e.apply(t,arguments)}}},14687:function(e,t,n){"use strict";var o=n(39125);e.exports=!o((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},38349:function(e,t,n){"use strict";var o=n(90655),r=n(7696),a=n(5484),i=n(77807),c=n(53898),l=n(14687),d=Function,s=o([].concat),u=o([].join),m={},p=function(e,t,n){if(!i(m,t)){for(var o=[],r=0;r]*>)/g,s=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,n,o,u,m){var p=n+e.length,f=o.length,h=s;return u!==undefined&&(u=r(u),h=d),c(m,h,(function(r,c){var d;switch(i(c,0)){case"$":return"$";case"&":return e;case"`":return l(t,0,n);case"'":return l(t,p);case"<":d=u[l(c,1,-1)];break;default:var s=+c;if(0===s)return r;if(s>f){var m=a(s/10);return 0===m?r:m<=f?o[m-1]===undefined?i(c,1):o[m-1]+i(c,1):r}d=o[s-1]}return d===undefined?"":d}))}},61770:function(e,t,n){"use strict";var o=function(e){return e&&e.Math==Math&&e};e.exports=o("object"==typeof globalThis&&globalThis)||o("object"==typeof window&&window)||o("object"==typeof self&&self)||o("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},77807:function(e,t,n){"use strict";var o=n(90655),r=n(73502),a=o({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return a(r(e),t)}},31645:function(e){"use strict";e.exports={}},66791:function(e,t,n){"use strict";var o=n(61770);e.exports=function(e,t){var n=o.console;n&&n.error&&(1==arguments.length?n.error(e):n.error(e,t))}},29093:function(e,t,n){"use strict";var o=n(54965);e.exports=o("document","documentElement")},17041:function(e,t,n){"use strict";var o=n(77849),r=n(39125),a=n(50842);e.exports=!o&&!r((function(){return 7!=Object.defineProperty(a("div"),"a",{get:function(){return 7}}).a}))},29209:function(e){"use strict";var t=Array,n=Math.abs,o=Math.pow,r=Math.floor,a=Math.log,i=Math.LN2;e.exports={pack:function(e,c,l){var d,s,u,m=t(l),p=8*l-c-1,f=(1<>1,C=23===c?o(2,-24)-o(2,-77):0,b=e<0||0===e&&1/e<0?1:0,N=0;for((e=n(e))!=e||e===Infinity?(s=e!=e?1:0,d=f):(d=r(a(e)/i),e*(u=o(2,-d))<1&&(d--,u*=2),(e+=d+h>=1?C/u:C*o(2,1-h))*u>=2&&(d++,u/=2),d+h>=f?(s=0,d=f):d+h>=1?(s=(e*u-1)*o(2,c),d+=h):(s=e*o(2,h-1)*o(2,c),d=0));c>=8;)m[N++]=255&s,s/=256,c-=8;for(d=d<0;)m[N++]=255&d,d/=256,p-=8;return m[--N]|=128*b,m},unpack:function(e,t){var n,r=e.length,a=8*r-t-1,i=(1<>1,l=a-7,d=r-1,s=e[d--],u=127&s;for(s>>=7;l>0;)u=256*u+e[d--],l-=8;for(n=u&(1<<-l)-1,u>>=-l,l+=t;l>0;)n=256*n+e[d--],l-=8;if(0===u)u=1-c;else{if(u===i)return n?NaN:s?-Infinity:Infinity;n+=o(2,t),u-=c}return(s?-1:1)*n*o(2,u-t)}}},83609:function(e,t,n){"use strict";var o=n(90655),r=n(39125),a=n(61496),i=Object,c=o("".split);e.exports=r((function(){return!i("z").propertyIsEnumerable(0)}))?function(e){return"String"==a(e)?c(e,""):i(e)}:i},75121:function(e,t,n){"use strict";var o=n(45744),r=n(5484),a=n(44958);e.exports=function(e,t,n){var i,c;return a&&o(i=t.constructor)&&i!==n&&r(c=i.prototype)&&c!==n.prototype&&a(e,c),e}},44790:function(e,t,n){"use strict";var o=n(90655),r=n(45744),a=n(42878),i=o(Function.toString);r(a.inspectSource)||(a.inspectSource=function(e){return i(e)}),e.exports=a.inspectSource},49632:function(e,t,n){"use strict";var o=n(59450),r=n(90655),a=n(31645),i=n(5484),c=n(77807),l=n(92723).f,d=n(94600),s=n(25586),u=n(65067),m=n(8220),p=n(57724),f=!1,h=m("meta"),C=0,b=function(e){l(e,h,{value:{objectID:"O"+C++,weakData:{}}})},N=e.exports={enable:function(){N.enable=function(){},f=!0;var e=d.f,t=r([].splice),n={};n[h]=1,e(n).length&&(d.f=function(n){for(var o=e(n),r=0,a=o.length;rN;N++)if((V=S(e[N]))&&d(h,V))return V;return new f(!1)}C=s(e,b)}for(v=C.next;!(_=r(v,C)).done;){try{V=S(_.value)}catch(I){m(C,"throw",I)}if("object"==typeof V&&V&&d(h,V))return V}return new f(!1)}},80261:function(e,t,n){"use strict";var o=n(76348),r=n(65522),a=n(36750);e.exports=function(e,t,n){var i,c;r(e);try{if(!(i=a(e,"return"))){if("throw"===t)throw n;return n}i=o(i,e)}catch(l){c=!0,i=l}if("throw"===t)throw n;if(c)throw i;return r(i),n}},80936:function(e,t,n){"use strict";var o,r,a,i=n(39125),c=n(45744),l=n(48525),d=n(56997),s=n(73e3),u=n(43741),m=n(37249),p=u("iterator"),f=!1;[].keys&&("next"in(a=[].keys())?(r=d(d(a)))!==Object.prototype&&(o=r):f=!0),o==undefined||i((function(){var e={};return o[p].call(e)!==e}))?o={}:m&&(o=l(o)),c(o[p])||s(o,p,(function(){return this})),e.exports={IteratorPrototype:o,BUGGY_SAFARI_ITERATORS:f}},53481:function(e){"use strict";e.exports={}},10950:function(e,t,n){"use strict";var o=n(87543);e.exports=function(e){return o(e.length)}},28859:function(e,t,n){"use strict";var o=n(39125),r=n(45744),a=n(77807),i=n(77849),c=n(82429).CONFIGURABLE,l=n(44790),d=n(48797),s=d.enforce,u=d.get,m=Object.defineProperty,p=i&&!o((function(){return 8!==m((function(){}),"length",{value:8}).length})),f=String(String).split("String"),h=e.exports=function(e,t,n){"Symbol("===String(t).slice(0,7)&&(t="["+String(t).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(t="get "+t),n&&n.setter&&(t="set "+t),(!a(e,"name")||c&&e.name!==t)&&m(e,"name",{value:t,configurable:!0}),p&&n&&a(n,"arity")&&e.length!==n.arity&&m(e,"length",{value:n.arity});try{n&&a(n,"constructor")&&n.constructor?i&&m(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=undefined)}catch(r){}var o=s(e);return a(o,"source")||(o.source=f.join("string"==typeof t?t:"")),e};Function.prototype.toString=h((function(){return r(this)&&u(this).source||l(this)}),"toString")},73346:function(e){"use strict";var t=Math.expm1,n=Math.exp;e.exports=!t||t(10)>22025.465794806718||t(10)<22025.465794806718||-2e-17!=t(-2e-17)?function(e){var t=+e;return 0==t?t:t>-1e-6&&t<1e-6?t+t*t/2:n(t)-1}:t},92647:function(e,t,n){"use strict";var o=n(61303),r=Math.abs,a=Math.pow,i=a(2,-52),c=a(2,-23),l=a(2,127)*(2-c),d=a(2,-126);e.exports=Math.fround||function(e){var t,n,a=+e,s=r(a),u=o(a);return sl||n!=n?u*Infinity:u*n}},12153:function(e){"use strict";var t=Math.log,n=Math.LOG10E;e.exports=Math.log10||function(e){return t(e)*n}},28010:function(e){"use strict";var t=Math.log;e.exports=Math.log1p||function(e){var n=+e;return n>-1e-8&&n<1e-8?n-n*n/2:t(1+n)}},61303:function(e){"use strict";e.exports=Math.sign||function(e){var t=+e;return 0==t||t!=t?t:t<0?-1:1}},9275:function(e){"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var o=+e;return(o>0?n:t)(o)}},34063:function(e,t,n){"use strict";var o,r,a,i,c,l,d,s,u=n(61770),m=n(9341),p=n(12488).f,f=n(61777).set,h=n(25515),C=n(48715),b=n(35016),N=n(67745),g=u.MutationObserver||u.WebKitMutationObserver,V=u.document,v=u.process,_=u.Promise,y=p(u,"queueMicrotask"),k=y&&y.value;k||(o=function(){var e,t;for(N&&(e=v.domain)&&e.exit();r;){t=r.fn,r=r.next;try{t()}catch(n){throw r?i():a=undefined,n}}a=undefined,e&&e.enter()},h||N||b||!g||!V?!C&&_&&_.resolve?((d=_.resolve(undefined)).constructor=_,s=m(d.then,d),i=function(){s(o)}):N?i=function(){v.nextTick(o)}:(f=m(f,u),i=function(){f(o)}):(c=!0,l=V.createTextNode(""),new g(o).observe(l,{characterData:!0}),i=function(){l.data=c=!c})),e.exports=k||function(e){var t={fn:e,next:undefined};a&&(a.next=t),r||(r=t,i()),a=t}},58822:function(e,t,n){"use strict";var o=n(67581);e.exports=o&&!!Symbol["for"]&&!!Symbol.keyFor},67581:function(e,t,n){"use strict";var o=n(64279),r=n(39125);e.exports=!!Object.getOwnPropertySymbols&&!r((function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&o&&o<41}))},37494:function(e,t,n){"use strict";var o=n(61770),r=n(45744),a=n(44790),i=o.WeakMap;e.exports=r(i)&&/native code/.test(a(i))},16002:function(e,t,n){"use strict";var o=n(7696),r=function(e){var t,n;this.promise=new e((function(e,o){if(t!==undefined||n!==undefined)throw TypeError("Bad Promise constructor");t=e,n=o})),this.resolve=o(t),this.reject=o(n)};e.exports.f=function(e){return new r(e)}},96794:function(e,t,n){"use strict";var o=n(71857),r=TypeError;e.exports=function(e){if(o(e))throw r("The method doesn't accept regular expressions");return e}},46329:function(e,t,n){"use strict";var o=n(61770).isFinite;e.exports=Number.isFinite||function(e){return"number"==typeof e&&o(e)}},90119:function(e,t,n){"use strict";var o=n(61770),r=n(39125),a=n(90655),i=n(95372),c=n(56404).trim,l=n(93966),d=a("".charAt),s=o.parseFloat,u=o.Symbol,m=u&&u.iterator,p=1/s(l+"-0")!=-Infinity||m&&!r((function(){s(Object(m))}));e.exports=p?function(e){var t=c(i(e)),n=s(t);return 0===n&&"-"==d(t,0)?-0:n}:s},80280:function(e,t,n){"use strict";var o=n(61770),r=n(39125),a=n(90655),i=n(95372),c=n(56404).trim,l=n(93966),d=o.parseInt,s=o.Symbol,u=s&&s.iterator,m=/^[+-]?0x/i,p=a(m.exec),f=8!==d(l+"08")||22!==d(l+"0x16")||u&&!r((function(){d(Object(u))}));e.exports=f?function(e,t){var n=c(i(e));return d(n,t>>>0||(p(m,n)?16:10))}:d},35350:function(e,t,n){"use strict";var o=n(77849),r=n(90655),a=n(76348),i=n(39125),c=n(21417),l=n(41543),d=n(89328),s=n(73502),u=n(83609),m=Object.assign,p=Object.defineProperty,f=r([].concat);e.exports=!m||i((function(){if(o&&1!==m({b:1},m(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=m({},e)[n]||c(m({},t)).join("")!=r}))?function(e,t){for(var n=s(e),r=arguments.length,i=1,m=l.f,p=d.f;r>i;)for(var h,C=u(arguments[i++]),b=m?f(c(C),m(C)):c(C),N=b.length,g=0;N>g;)h=b[g++],o&&!a(p,C,h)||(n[h]=C[h]);return n}:m},48525:function(e,t,n){"use strict";var o,r=n(65522),a=n(86328),i=n(59096),c=n(31645),l=n(29093),d=n(50842),s=n(95541),u=s("IE_PROTO"),m=function(){},p=function(e){return"