diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index 6617c5aafcee..943e70c8814f 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -33,6 +33,7 @@ #define MAP_RUNTIME "USS Runtime" #define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" // Highpop Only #define MAP_NEW_VARADERO "New Varadero"//ice colony underground but as its own map +#define MAP_ISAACS_LAMENT "Isaac's Lament" #define MAP_CHINOOK "Chinook 91 GSO" //admin level #define GAMEMODE_WHISKEY_OUTPOST "Whiskey Outpost" @@ -348,6 +349,7 @@ #define WALL_BONE_RESIN "bone_resin" #define WALL_CAVE "cavewall" #define WALL_WOOD "wood" +#define WALL_WOOD_PLAIN "wood_plain" #define WALL_GOLD "gold" #define WALL_CULT "cult" #define WALL_STONE "stone" diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index 541d95d28189..287c751864fd 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -79,6 +79,8 @@ #define SCAPE_PL_WIND list('sound/soundscape/wind1.ogg','sound/soundscape/wind2.ogg') #define SCAPE_PL_LV522_OUTDOORS list('sound/soundscape/lv522/outdoors/wind1.ogg','sound/soundscape/lv522/outdoors/wind2.ogg','sound/soundscape/lv522/outdoors/wind3.ogg',) #define SCAPE_PL_LV522_INDOORS list('sound/soundscape/lv522/indoors/indoor_wind.ogg','sound/soundscape/lv522/indoors/indoor_wind2.ogg') +#define SCAPE_PL_LV873_OUTDOORS list('sound/soundscape/thunderclap1.ogg', 'sound/soundscape/thunderclap2.ogg', 'sound/soundscape/lv522/outdoors/wind1.ogg','sound/soundscape/lv522/outdoors/wind2.ogg','sound/soundscape/lv522/outdoors/wind3.ogg') +#define SCAPE_PL_LV873_INDOORS list('sound/soundscape/lv522/indoors/indoor_wind.ogg','sound/soundscape/lv522/indoors/indoor_wind2.ogg') #define SCAPE_PL_CAVE list('sound/soundscape/rocksfalling1.ogg', 'sound/soundscape/rocksfalling2.ogg') #define SCAPE_PL_ELEVATOR_MUSIC list('sound/soundscape/medbay1.ogg','sound/soundscape/medbay2.ogg', 'sound/soundscape/medbay3.ogg') #define SCAPE_PL_THUNDER list('sound/soundscape/thunderclap1.ogg', 'sound/soundscape/thunderclap2.ogg') diff --git a/code/__DEFINES/weather.dm b/code/__DEFINES/weather.dm index c67575f80720..1c50f1057490 100644 --- a/code/__DEFINES/weather.dm +++ b/code/__DEFINES/weather.dm @@ -5,6 +5,7 @@ #define PROB_WEATHER_SOROKYNE 100 //Map specific defines go here. #define PROB_WEATHER_BIG_RED 30 #define PROB_WEATHER_LV624 30 +#define PROB_WEATHER_ISAACS_LAMENT 100 #define PROB_WEATHER_NEW_VARADERO 100 #define WEATHER_TYPE_NO_WEATHER 0 diff --git a/code/datums/weather/weather_map_holders/isaacs_lament.dm b/code/datums/weather/weather_map_holders/isaacs_lament.dm new file mode 100644 index 000000000000..4f6f4e492e57 --- /dev/null +++ b/code/datums/weather/weather_map_holders/isaacs_lament.dm @@ -0,0 +1,16 @@ +/datum/weather_ss_map_holder/isaacs_lement + name = "Isaac's Lament Map Holder" + + min_time_between_events = 20 MINUTES + no_weather_turf_icon_state = "strata_clearsky" + + potential_weather_events = list( + /datum/weather_event/light_rain, + /datum/weather_event/heavy_rain, + ) + +/datum/weather_ss_map_holder/isaacs_lement/should_affect_area(area/A) + return !CEILING_IS_PROTECTED(A.ceiling, CEILING_GLASS) + +/datum/weather_ss_map_holder/isaacs_lement/should_start_event() + return prob(PROB_WEATHER_ISAACS_LAMENT) diff --git a/code/game/area/Isaacs_Lament.dm b/code/game/area/Isaacs_Lament.dm new file mode 100644 index 000000000000..947e0e1e566e --- /dev/null +++ b/code/game/area/Isaacs_Lament.dm @@ -0,0 +1,497 @@ +//LV-873 AREAS--------------------------------------// + +/area/lv873 + icon = 'icons/turf/area_strata.dmi' + icon_state = "base_ico" + can_build_special = TRUE + powernet_name = "ground" + minimap_color = MINIMAP_AREA_COLONY + +//parent types + +/area/lv873/indoors + name = "Isaac's Lament - Indoors" + icon_state = "shed_x_ag" + ceiling = CEILING_METAL //because this is a PARENT TYPE and you should not be using it and should also be changing the icon!!! + soundscape_playlist = SCAPE_PL_LV873_INDOORS + + +/area/lv873/outdoors + name = "Isaac's Lament - Outdoors" + icon_state = "path" + ceiling = CEILING_NONE //because this is a PARENT TYPE and you should not be using it and should also be changing the icon!!! + soundscape_playlist = SCAPE_PL_LV873_OUTDOORS + +/area/lv873/oob + name = "Isaac's Lament - Out Of Bounds" + icon_state = "ag_e" + ceiling = CEILING_MAX + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + +/area/lv873/oob/w_y_vault + name = "Isaac's Lament - Weyland Secure Vault" + icon_state = "shed_x_ag" + +//LZ1 + +/area/lv873/landing_zone_1 + name = "Isaac's Lament - Landing Zone One" + icon_state = "landingzone_1" + is_resin_allowed = FALSE + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + +//LZ2 + +/area/lv873/landing_zone_2 + name = "Isaac's Lament - Landing Zone Two" + icon_state = "landingzone_2" + is_resin_allowed = FALSE + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + +//Outdoors + +/area/lv873/outdoors/landing_zones_disembark + name = "Isaac's Lament - Landing Zones Disembarkation Road" + +/area/lv873/outdoors/bungalow_manager_exterior + name = "Isaac's Lament - WeyYu Colonial Manager's Bungalow Exterior" + +/area/lv873/outdoors/welcome_center_exterior/west + name = "WeyYu Welcome Center - West Exterior" + +/area/lv873/outdoors/welcome_center_exterior/east + name = "WeyYu Welcome Center - East Exterior" + +/area/lv873/outdoors/gated_community_exterior + name = "Isaac's Lament - WeyYu Gated Community Exterior" + +/area/lv873/outdoors/hospital/break_garden + name = "Jeppson's Memorial Hospital - Break Garden" + +/area/lv873/outdoors/hospital/road_north_west + name = "Jeppson's Memorial Hospital - North West Road Entrance" + +/area/lv873/outdoors/hospital/road_north_east + name = "Jeppson's Memorial Hospital - North East Road Entrance" + +/area/lv873/outdoors/uscm_garrison_exterior/fenced + name = "USCM Garrison - Fenced Exterior" + +/area/lv873/outdoors/uscm_garrison_exterior/entrance + name = "USCM Garrison - Entrance Exterior" + +/area/lv873/outdoors/cmb/exterior + name = "Colonial Marshals Bureau - Exterior" + +/area/lv873/outdoors/flooded_streets/west + name = "Flooded Streets - West" + +/area/lv873/outdoors/flooded_streets/east + name = "Flooded Streets - East" + +/area/lv873/outdoors/flooded_streets/waste_treatment + name = "Isaac's Lament - Flooded Waste Treatment Facility Exterior" + +/area/lv873/outdoors/colony_streets/west + name = "Isaac's Lament - Colony Streets West" + +/area/lv873/outdoors/colony_streets/southwest + name = "Isaac's Lament - Colony Streets South-West" + +/area/lv873/outdoors/colony_streets/south + name = "Isaac's Lament - Colony Streets South" + +/area/lv873/outdoors/colony_streets/southeast + name = "Isaac's Lament - Colony Streets South-East" + +/area/lv873/outdoors/colony_streets/east + name = "Isaac's Lament - Colony Streets East" + +/area/lv873/outdoors/colony_streets/northeast + name = "Isaac's Lament - Colony Streets North-East" + +/area/lv873/outdoors/lone_buildings/gas_n_gear + name = "Issac's Lament - Gas N' Gear Exterior" + +/area/lv873/outdoors/lone_buildings/weyyu_hostel + name = "Issac's Lament - Weyland-Yutani Hostel Exterior" + +/area/lv873/outdoors/lone_buildings/cargo_lz + name = "Issac's Lament - Cargo Landing Zone Exterior" + +//Indoors + +/area/lv873/indoors/bungalow_manager + name = "Isaac's Lament - WeyYu Colonial Manager's Bungalow" + icon_state = "outpost_canteen_0" + +/area/lv873/indoors/aerospace_control + name = "Isaac's Lament - Landing Zones' Aerospace Control" + icon_state = "outpost_gen_0" + requires_power = FALSE + +/area/lv873/indoors/lz_sec_checkpoint + name = "Isaac's Lament - Landing Zones' Security Checkpoint" + icon_state = "outpost_sec_4" + +/area/lv873/indoors/welcome_center/offices + name = "WeyYu Welcome Center - Offices" + icon_state = "offices" + +/area/lv873/indoors/welcome_center/lobby + name = "WeyYu Welcome Center - Lobby" + icon_state = "dorms_lobby" + +/area/lv873/indoors/welcome_center/canteen + name = "WeyYu Welcome Center - Canteen" + icon_state = "dorms_canteen" + +/area/lv873/indoors/hospital/lobby + name = "Jeppson's Memorial Hospital - Hallway" + icon_state = "outpost_med_hall" + +/area/lv873/indoors/hospital/reception + name = "Jeppson's Memorial Hospital - Reception" + icon_state = "outpost_med_recp" + +/area/lv873/indoors/hospital/outpatients_and_icu + name = "Jeppson's Memorial Hospital - Intensive Care Unit and Outpatients" + icon_state = "outpost_med_recovery" + +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom + name = "Jeppson's Memorial Hospital - Storage, Laundryoom and Breakroom" + icon_state = "outpost_med_stock" + +/area/lv873/indoors/hospital/operating_rooms + name = "Jeppson's Memorial Hospital - Operating Rooms" + icon_state = "outpost_med_or" + +/area/lv873/indoors/hospital/garage + name = "Jeppson's Memorial Hospital - Paramedics Garage" + icon_state = "garage" + +/area/lv873/indoors/hospital/research/floor + name = "Jeppson's Memorial Hospital - Research Floor" + icon_state = "outpost_med_chem" + +/area/lv873/indoors/hospital/research/toilets + name = "Jeppson's Memorial Hospital - Research Toilets" + icon_state = "outpost_med_chem" + +/area/lv873/indoors/hospital/research/offices + name = "Jeppson's Memorial Hospital - Research Managers Offices" + icon_state = "outpost_med_chem" + +/area/lv873/indoors/hospital/research/reception + name = "Jeppson's Memorial Hospital - Research Reception" + icon_state = "outpost_med_chem" + +/area/lv873/indoors/gated_community/residence_bunkhouse + name = "Jeppson's Memorial Hospital - Staff Residence Bunkhouse" + icon_state = "shed_2_ag" + +/area/lv873/indoors/gated_community/head_of_corporate_engineering + name = "Weyland Yutani Gated Community - Head of Engineering House" + icon_state = "outpost_canteen_1" + +/area/lv873/indoors/gated_community/head_of_corporate_security + name = "Weyland Yutani Gated Community - Head of Security House" + icon_state = "outpost_canteen_2" + +/area/lv873/indoors/gated_community/director_of_corporate_research + name = "Weyland Yutani Gated Community - Director of Research House" + icon_state = "outpost_canteen_3" + +/area/lv873/indoors/gated_community/director_of_coporate_relations + name = "Weyland Yutani Gated Community - Director of Corporate Relations House" + icon_state = "outpost_canteen_4" + +/area/lv873/indoors/uscm_garrison/recruitment_office + name = "USCM Garrison - Recruitment Office" + icon_state = "ug_jung_mine_1" + +/area/lv873/indoors/uscm_garrison/garrison_bunks + name = "USCM Garrison - Garrison Bunks" + icon_state = "ug_jung_mine_2" + +/area/lv873/indoors/uscm_garrison/armory + name = "USCM Garrison - Armory" + icon_state = "ug_jung_mine_3" + +/area/lv873/indoors/uscm_garrison/io_office + name = "USCM Garrison - Third Fleet Intelligence Office" + icon_state = "hive_0" + +/area/lv873/indoors/flooded/weymart + name = "Flooded Area - Weymart" + icon_state = "shed_4_ug" + +/area/lv873/indoors/flooded/waste_station + name = "Flooded Area - Waste Water Station" + icon_state = "outpost_engi_0" + +/area/lv873/indoors/flooded/waste_silos + name = "Flooded Area - Waste Water Silos" + icon_state = "disposal" + +/area/lv873/indoors/flooded/west_slums + name = "Flooded Area - West Slums" + icon_state = "shed_7_ug" + +/area/lv873/indoors/flooded/west_apartments + name = "Flooded Area - West Apartments" + icon_state = "shed_5_ug" + +/area/lv873/indoors/flooded/east_apartments + name = "Flooded Area - East Apartments" + icon_state = "shed_6_ug" + +/area/lv873/indoors/flooded/telecomms + name = "Flooded Area - Engineering Telecomms" + icon_state = "tcomms2" + +/area/lv873/indoors/operations/reception + name = "Operations - Reception" + icon_state = "outpost_admin_0" + +/area/lv873/indoors/operations/offices/northwest + name = "Operations - Northwest Offices" + icon_state = "outpost_admin_1" + +/area/lv873/indoors/operations/offices/southwest + name = "Operations - Southwest Offices" + icon_state = "outpost_admin_2" + +/area/lv873/indoors/operations/offices/east + name = "Operations - East Offices" + icon_state = "outpost_admin_3" + +/area/lv873/indoors/operations/hallway/west + name = "Operations - West Hallway and Bathrooms" + icon_state = "shed_1_ug" + +/area/lv873/indoors/operations/hallway/north + name = "Operations - North Central Hallway" + icon_state = "shed_2_ug" + +/area/lv873/indoors/operations/hallway/south + name = "Operations - South Central Hallway" + icon_state = "shed_3_ug" + +/area/lv873/indoors/operations/serverroom + name = "Operations - Server Room" + icon_state = "tcomms1" + +/area/lv873/indoors/operations/lockerroom + name = "Operations - Locker Room" + icon_state = "outpost_admin_4" + +/area/lv873/indoors/operations/xenobiological_research + name = "Operations - Xenobiological Research" + icon_state = "outpost_med_chem" + +/area/lv873/indoors/operations/maintenance/north + name = "Operations - North Maintenance" + icon_state = "outpost_maint" + +/area/lv873/indoors/operations/maintenance/south + name = "Operations - South Maintenance" + icon_state = "outpost_maint" + +/area/lv873/indoors/marshals/reception + name = "Colonial Marshals Bureau - Reception" + icon_state = "security_station" + +/area/lv873/indoors/marshals/garage + name = "Colonial Marshals Bureau - Garage" + icon_state = "security_station" + +/area/lv873/indoors/marshals/interrogation + name = "Colonial Marshals Bureau - Interrogation Room" + icon_state = "security_station" + +/area/lv873/indoors/marshals/marshalsoffice + name = "Colonial Marshals Bureau - Marshals Office" + icon_state = "security_station" + +/area/lv873/indoors/marshals/mainhall + name = "Colonial Marshals Bureau - Main Building" + icon_state = "security_station" + +/area/lv873/indoors/marshals/cells + name = "Colonial Marshals Bureau - Cellblock" + icon_state = "security_station" + +/area/lv873/indoors/marshals/barracks + name = "Colonial Marshals Bureau - Barracks" + icon_state = "security_station" + +/area/lv873/indoors/marshals/storage + name = "Colonial Marshals Bureau - Storage Shed" + icon_state = "security_station" + +/area/lv873/indoors/power_station + name = "Power Station - Main Building" + icon_state = "outpost_engi_1" + +/area/lv873/indoors/corpo_armory + name = "Corporate Emergency Armory" + icon_state = "rdecks_sec" + +/area/lv873/indoors/ss_athens + name = "SS Athens - Ship" + icon_state = "rdecks" + +/area/lv873/indoors/southwest/slums + name = "Southwest - Slums and Houses" + icon_state = "sewers" + +/area/lv873/indoors/south/slums + name = "South - Slums and Houses" + icon_state = "sewers1" + +/area/lv873/indoors/southeast/slums + name = "Southeast - Slums and Houses" + icon_state = "sewers2" + +/area/lv873/indoors/east/slums + name = "East - Slums and Houses" + icon_state = "sewers3" + +/area/lv873/indoors/northeast/slums + name = "Northeast - Slums and Houses" + icon_state = "sewers4" + +/area/lv873/indoors/lone_buildings + icon_state = "shed_x_ag" + +/area/lv873/indoors/lone_buildings/recruiter_house + name = "Issac's Lament - West - Recruiter's House" + icon_state = "shed_1_ag" + +/area/lv873/indoors/lone_buildings/gas_n_gear + name = "Issac's Lament - West - Gas N' Gear" + icon_state = "shed_2_ag" + +/area/lv873/indoors/lone_buildings/army_surplus + name = "Issac's Lament - West - Army Surplus" + icon_state = "shed_3_ag" + +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house + name = "Issac's Lament - West - Engineer's House" + icon_state = "shed_4_ag" + +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse + name = "Issac's Lament - West - Bunkhouse" + icon_state = "shed_5_ag" + +/area/lv873/indoors/lone_buildings/screenwriter_house + name = "Issac's Lament - West - Screenwriter's House" + icon_state = "shed_6_ag" + +/area/lv873/indoors/lone_buildings/clf_house + name = "Issac's Lament - West - CLF Insurrectionist's House" + icon_state = "shed_7_ag" + +/area/lv873/indoors/lone_buildings/multidoor_garage + name = "Issac's Lament - West - Multi-Door Garage" + icon_state = "shed_8_ag" + +/area/lv873/indoors/lone_buildings/liq_r_mart + name = "Issac's Lament - West - Liq-R-Mart" + icon_state = "shed_8_ag" + +/area/lv873/indoors/lone_buildings/weyyu_hostel + name = "Issac's Lament - South-West - Weyland-Yutani Hostel" + icon_state = "shed_1_ag" + +/area/lv873/indoors/lone_buildings/goon_and_chef_house + name = "Issac's Lament - South-West - Two Bedroom House" + icon_state = "shed_2_ag" + +/area/lv873/indoors/lone_buildings/neils_arcade + name = "Issac's Lament - South-West - Neil's Arcade" + icon_state = "shed_3_ag" + +/area/lv873/indoors/lone_buildings/travel_agency + name = "Issac's Lament - South-West - Wey-Yu Travel Agency" + icon_state = "shed_4_ag" + +/area/lv873/indoors/lone_buildings/cheeseburger + name = "Issac's Lament - South-West - Stacy's All You Can Eat Burgers" + icon_state = "shed_5_ag" + +/area/lv873/indoors/lone_buildings/chinese + name = "Issac's Lament - South-West - Chinese Takeout" + icon_state = "shed_6_ag" + +/area/lv873/indoors/lone_buildings/internet_cafe + name = "Issac's Lament - South-West - Internet Cafe" + icon_state = "shed_7_ag" + +/area/lv873/indoors/lone_buildings/clf_communications + name = "Issac's Lament - South-West - CLF Communications Building" + icon_state = "shed_8_ag" + +/area/lv873/indoors/lone_buildings/trapped_house + name = "Issac's Lament - South - Trapped House" + icon_state = "shed_1_ag" + +/area/lv873/indoors/lone_buildings/farm_shack + name = "Issac's Lament - South - Andrew's Organic Farm Shack" + icon_state = "shed_2_ag" + +/area/lv873/indoors/lone_buildings/school + name = "Issac's Lament - South - School" + icon_state = "shed_3_ag" + +/area/lv873/indoors/lone_buildings/polemuseum + name = "Issac's Lament - South-East - Pole Museum" + icon_state = "shed_1_ag" + +/area/lv873/indoors/lone_buildings/cargo_lz + name = "Issac's Lament - South-East - Cargo Landing Pad" + icon_state = "outpost_gen_1" + +/area/lv873/indoors/lone_buildings/laundromat + name = "Issac's Lament - East - Laundromat" + icon_state = "shed_1_ag" + +/area/lv873/indoors/lone_buildings/jurossushi + name = "Issac's Lament - East - Little Juro's Sushi Bistro" + icon_state = "shed_2_ag" + +/area/lv873/indoors/lone_buildings/pizza + name = "Issac's Lament - East - Pizza Galaxy" + icon_state = "shed_3_ag" + +/area/lv873/indoors/lone_buildings/insurance + name = "Issac's Lament - East - Insurance Salesman" + icon_state = "shed_4_ag" + +/area/lv873/indoors/lone_buildings/flooded + name = "Issac's Lament - East - Flooded House" + icon_state = "shed_5_ag" + +/area/lv873/indoors/lone_buildings/flynns_bar + name = "Issac's Lament - North-East - Flynn's Bar" + icon_state = "shed_1_ag" + +/area/lv873/indoors/lone_buildings/mechanic_shop + name = "Issac's Lament - North-East - Mechanic's Shop" + icon_state = "shed_2_ag" + +/area/lv873/indoors/lone_buildings/weymart + name = "Issac's Lament - North-East - Wey-Mart" + icon_state = "shed_3_ag" + +/area/lv873/indoors/lone_buildings/clf_barracks + name = "Issac's Lament - North-East - CLF Barracks" + icon_state = "shed_4_ag" + +/area/lv873/indoors/lone_buildings/tcomms + name = "Issac's Lament - North-East - Telecommunications Tower" + icon_state = "tcomms3" diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 00f0ad16220c..c4eb2d9f9b71 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -1026,6 +1026,12 @@ icon_state = "wy_headset" initial_keys = list(/obj/item/device/encryptionkey/WY, /obj/item/device/encryptionkey/cmb) +/obj/item/device/radio/headset/distress/CMB/ICC/limited + name = "\improper Damaged ICC Liaison Headset" + desc = "An expensive headset used by The Interstellar Commerce Commission. This one in particular has a liaison chip with the CMB. It also is damaged, so the channels are: ; - CMB, :o - Colony, :y - Weyland-Yutani." + icon_state = "wy_headset" + initial_keys = list(/obj/item/device/encryptionkey/WY, /obj/item/device/encryptionkey/colony) + /obj/item/device/radio/headset/almayer/highcom name = "USCM High Command headset" desc = "Issued to members of USCM High Command and their immediate subordinates. Channels are as follows: :v - marine command, :p - military police, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel, :z - HighCom" diff --git a/code/game/objects/prop.dm b/code/game/objects/prop.dm index ac94e8ab03b4..1b6c20af2302 100644 --- a/code/game/objects/prop.dm +++ b/code/game/objects/prop.dm @@ -286,8 +286,12 @@ /obj/item/prop/magazine/boots/n054 name = "Boots!: Issue No.54" - desc = "The only official USCM magazine, the headline reads 'ARMAT strikes back against litigants in M41A-MK2 self cleaning case'" + desc = "The only official USCM magazine, the headline reads 'ARMAT strikes back against litigants in M41A-MK2 self cleaning case.'" /obj/item/prop/magazine/boots/n055 name = "Boots!: Issue No.55" desc = "The only official USCM magazine, the headline reads 'TEN tips to keep your UD4 cockpit both safer and more relaxing.'" + +/obj/item/prop/magazine/boots/n080 + name = "Boots!: Issue No.80" + desc = "The only official USCM magazine, the headline reads 'Ten Ways To Extend Your Barrel Before Your CO Notices.'" diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 0e4a20cf989a..be0471923720 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -752,9 +752,16 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. health -= dam healthcheck(src) - /obj/structure/flora/jungle/thickbush/jungle_plant icon_state = "plant_1" desc = "Looks like some of that fruit might be edible." icon_tag = "plant" variations = 7 + +/obj/structure/flora/jungle/hedge + name = "dense hedge" + desc = "Pretty thick hedge, it'll take something sharp and a lot of determination to clear away." + icon = 'icons/obj/structures/props/jungleplants.dmi' + layer = BUSH_LAYER + icon_state = "hedge" + health = 300 diff --git a/code/game/objects/structures/landing_signs.dm b/code/game/objects/structures/landing_signs.dm index 9e9e83928c54..7b90f81ea464 100644 --- a/code/game/objects/structures/landing_signs.dm +++ b/code/game/objects/structures/landing_signs.dm @@ -59,3 +59,9 @@ name = "Chigusa Shipyard Sign" desc = "A large sign that reads 'Chigusa Shipyard - Subsidary of Weyland-Yutani Corporation'. Acid burns checker the sign like buckshot." icon_state = "laz_sign" //TODO make unique icon. + +/obj/structure/lz_sign/isaacs_lament + name = "Isaac's Lament Sign" + desc = "A large sign for Isaac's Lament exhorting its values and organisations. It is smeared in blood and grafitti saying: Liar." + icon = 'icons/obj/structures/props/landing_signs_128_64.dmi' + icon_state = "isaacs_lament" diff --git a/code/game/objects/structures/mineral_doors.dm b/code/game/objects/structures/mineral_doors.dm index 0fd22361c67b..c3e6a21ee815 100644 --- a/code/game/objects/structures/mineral_doors.dm +++ b/code/game/objects/structures/mineral_doors.dm @@ -201,6 +201,7 @@ /obj/structure/mineral_door/wood mineralType = "wood" hardness = 1 + icon_state = "wood" /obj/structure/mineral_door/wood/Open() isSwitchingStates = 1 @@ -236,3 +237,8 @@ opacity = FALSE state = 1 icon_state = "woodopen" + +/obj/structure/mineral_door/wood/open/Initialize() + . = ..() + + icon_state = "woodopen" diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 341fcb657080..6af8b30bba93 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -745,6 +745,16 @@ basestate = "wood_rwindow" window_frame = /obj/structure/window_frame/wood +/obj/structure/window/framed/wood/plain + icon_state = "wood_plain_window0" + basestate = "wood_plain_window" + window_frame = /obj/structure/window_frame/wood/plain + +/obj/structure/window/framed/wood/reinforced/plain + icon_state = "wood_plain_rwindow0" + basestate = "wood_plain_rwindow" + window_frame = /obj/structure/window_frame/wood/plain + //Strata windows /obj/structure/window/framed/strata diff --git a/code/game/objects/structures/window_frame.dm b/code/game/objects/structures/window_frame.dm index ae40be1472ad..0c3c5741131d 100644 --- a/code/game/objects/structures/window_frame.dm +++ b/code/game/objects/structures/window_frame.dm @@ -212,6 +212,10 @@ icon_state = "wood_window0_frame" basestate = "wood_window" +/obj/structure/window_frame/wood/plain + icon_state = "wood_plain_window0_frame" + basestate = "wood_plain_window" + /obj/structure/window_frame/prison icon_state = "prison_rwindow0_frame" basestate = "prison_rwindow" diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index 8d9ded899a70..f61c05693c4f 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -385,6 +385,150 @@ if("gbcorner") GLOB.turf_edgeinfo_cache["gbcorner"] = GLOB.edgeinfo_corner +/turf/open/gm/dirt/brown + name = "dirt" + icon = 'icons/turf/ground_map_dirt.dmi' + icon_state = "desert" + baseturfs = /turf/open/gm/dirt/brown + minimap_color = MINIMAP_DIRT + +/turf/open/gm/road + name = "dirt road" + icon = 'icons/turf/ground_map_dirt.dmi' + icon_state = "browndirt_road" + baseturfs = /turf/open/gm/road + minimap_color = MINIMAP_DIRT + +/turf/open/gm/grass/dirt + name = "grass" + icon = 'icons/turf/ground_map_dirt.dmi' + icon_state = "grass1" + baseturfs = /turf/open/gm/grass + scorchable = "grass1" + +/turf/open/gm/grass/dirt/grass2 + icon_state = "grass2" + +/turf/open/gm/grass/dirt/grassbeach + icon_state = "grassbeach" + +/turf/open/gm/grass/dirt/grassbeach/north + +/turf/open/gm/grass/dirt/grassbeach/south + dir = 1 + +/turf/open/gm/grass/dirt/grassbeach/west + dir = 4 + +/turf/open/gm/grass/dirt/grassbeach/east + dir = 8 + +/turf/open/gm/grass/dirt/gbcorner/ + icon_state = "gbcorner" + +/turf/open/gm/grass/dirt/gbcorner/north_west + +/turf/open/gm/grass/dirt/gbcorner/south_east + dir = 1 + +/turf/open/gm/grass/dirt/gbcorner/south_west + dir = 4 + +/turf/open/gm/grass/dirt/gbcorner/north_east + dir = 8 + +/turf/open/gm/coast/dirt + name = "coastline" + icon = 'icons/turf/ground_map_dirt.dmi' + icon_state = "beach" + baseturfs = /turf/open/gm/coast + supports_surgery = FALSE + +/turf/open/gm/coast/dirt/north + +/turf/open/gm/coast/dirt/south + dir = 1 + +/turf/open/gm/coast/dirt/west + dir = 4 + +/turf/open/gm/coast/dirt/east + dir = 8 + +/turf/open/gm/coast/dirt/beachcorner + icon_state = "beachcorner" + +/turf/open/gm/coast/dirt/beachcorner/north_west + +/turf/open/gm/coast/dirt/beachcorner/north_east + dir = 1 + +/turf/open/gm/coast/dirt/beachcorner/south_east + dir = 4 + +/turf/open/gm/coast/dirt/beachcorner/south_west + dir = 8 + +/turf/open/gm/coast/dirt/beachcorner2 + icon_state = "beachcorner2" + +/turf/open/gm/coast/dirt/beachcorner2/north_west + +/turf/open/gm/coast/dirt/beachcorner2/north_east + dir = 1 + +/turf/open/gm/coast/dirt/beachcorner2/south_west + dir = 4 + +/turf/open/gm/coast/dirt/beachcorner2/south_east + dir = 8 + +/turf/open/gm/dirtgrassborder/dirt + name = "grass" + icon = 'icons/turf/ground_map_dirt.dmi' + icon_state = "grassdirt_edge" + baseturfs = /turf/open/gm/dirtgrassborder + scorchable = "grass1" + +/turf/open/gm/dirtgrassborder/dirt/north + +/turf/open/gm/dirtgrassborder/dirt/south + dir = 1 + +/turf/open/gm/dirtgrassborder/dirt/west + dir = 4 + +/turf/open/gm/dirtgrassborder/dirt/east + dir = 8 + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner + icon_state = "grassdirt_corner" + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east + dir = 1 + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east + dir = 4 + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west + dir = 8 + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2 + icon_state = "grassdirt_corner2" + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east + dir = 1 + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east + dir = 4 + +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west + dir = 8 + /turf/open/gm/dirt2 name = "dirt" icon_state = "dirt" @@ -719,6 +863,7 @@ /turf/open/asphalt/cement name = "concrete" icon_state = "cement5" + /turf/open/asphalt/cement_sunbleached name = "concrete" icon_state = "cement_sunbleached5" diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm index 7b26854737cc..4a85ff8c76dc 100644 --- a/code/game/turfs/walls/wall_types.dm +++ b/code/game/turfs/walls/wall_types.dm @@ -517,7 +517,14 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) if(neighbors_list in list(EAST|WEST)) var/r1 = rand(0,10) //Make a random chance for this to happen if(r1 >= 9) - overlays += image(icon, icon_state = "wood_variant") + overlays += image(icon, icon_state = "[icon_state]_variant") // [icon_state] exists to make it capable to vary plain walls as well (either it'll be "wood" or "plain_wood") + +/turf/closed/wall/wood/plain + name = "plain wood wall" + icon = 'icons/turf/walls/wood_plain.dmi' + icon_state = "wood_plain" + walltype = WALL_WOOD_PLAIN + baseturfs = /turf/open/floor/wood //Colorable rocks. Looks like moonsand. @@ -570,6 +577,14 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) walltype = WALL_JUNGLE_UPDATED //Not a metal wall hull = 1 +/turf/closed/wall/strata_ice/jungle/isaacs + name = "jungle vegetation" + icon = 'icons/turf/walls/junglewalls_v3.dmi' + icon_state = "jungle_veg" + desc = "Exceptionally dense vegetation that you can't see through." + walltype = WALL_JUNGLE_UPDATED //Not a metal wall + hull = 1 + /turf/closed/wall/strata_outpost_ribbed //this guy is our reinforced replacement name = "ribbed outpost walls" icon = 'icons/turf/walls/strata_outpost.dmi' diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index f41c8d6f971b..136df999538e 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -133,6 +133,12 @@ html_link = "images/9/94/New_Varadero.png" color = "red" +/obj/item/map/isaacs_lament_map + name = "\improper Isaac's Lament map" + desc = "An old map provided by Weyland-Yutani for the colony of Isaac's Lament on LV-873" + html_link = "images/9/94/New_Varadero.png" + color = "grey" + GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /proc/setup_all_maps() @@ -149,7 +155,8 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) MAP_CORSAT = new /obj/item/map/corsat(), MAP_KUTJEVO = new /obj/item/map/kutjevo_map(), MAP_LV522_CHANCES_CLAIM = new /obj/item/map/lv522_map(), - MAP_NEW_VARADERO = new /obj/item/map/new_varadero() + MAP_NEW_VARADERO = new /obj/item/map/new_varadero(), + MAP_ISAACS_LAMENT = new /obj/item/map/isaacs_lament_map() ) //used by marine equipment machines to spawn the correct map. diff --git a/code/modules/gear_presets/survivors/isaacs_lament/preset_isaacs_lament.dm b/code/modules/gear_presets/survivors/isaacs_lament/preset_isaacs_lament.dm new file mode 100644 index 000000000000..32e83bc5b441 --- /dev/null +++ b/code/modules/gear_presets/survivors/isaacs_lament/preset_isaacs_lament.dm @@ -0,0 +1,122 @@ +/datum/equipment_preset/survivor/scientist/isaacs + name = "Survivor - Isaac's Lament Xenobiologist" + assignment = "Isaac's Lament Xenobiologist" + +/datum/equipment_preset/survivor/scientist/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/jan(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/researcher(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + ..() + +/datum/equipment_preset/survivor/colonial_marshal/isaacs + name = "Survivor - Isaac's Lament CMB Deputy" + assignment = "Isaac's Lament CMB Deputy" + +/datum/equipment_preset/survivor/colonial_marshal/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/sec/hos(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + ..() + +/datum/equipment_preset/survivor/trucker/isaacs + name = "Survivor - Isaac's Lament Heavy Vehicle Operator" + assignment = "Isaac's Lament Heavy Vehicle Operator" + +/datum/equipment_preset/survivor/trucker/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/vest/tan(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + ..() + +/datum/equipment_preset/survivor/engineer/isaacs + name = "Survivor - Isaac's Lament Engineer" + assignment = "Isaac's Lament Engineer" + +/datum/equipment_preset/survivor/engineer/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/khaki(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + ..() + +/datum/equipment_preset/survivor/uscm/isaacs + name = "Survivor - Isaac's Lament United States Colonial Marine Corps Lieutenant" + assignment = "USCM Base Commander" + paygrade = PAY_SHORT_MO1 + +/datum/equipment_preset/survivor/uscm/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/marine/o1(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/lighter/zippo/black(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/bomber(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/bridge(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar/havana(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/dress(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/document(new_human), WEAR_R_STORE) + ..() + +/datum/equipment_preset/survivor/doctor/isaacs + name = "Survivor - Isaac's Lament Doctor" + assignment = "Isaac's Lament Doctor" + +/datum/equipment_preset/survivor/doctor/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/blue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human.back), WEAR_IN_BACK) + ..() + +/datum/equipment_preset/survivor/security/isaacs + name = "Survivor - Isaac's Lament Security Guard" + assignment = "Weyland-Yutani Security Guard" + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + +/datum/equipment_preset/survivor/security/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/brown(new_human), WEAR_FEET) + ..() + +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/isaacs + name = "Survivor - Isaac's Lament Interstellar Commerce Commission Agent" + assignment = "Interstellar Commerce Commission Customs Inspector" + +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/ICC/limited(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_R_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white(new_human), WEAR_HEAD) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + ..() + +/datum/equipment_preset/survivor/corporate/isaacs + name = "Survivor - Isaac's Lament Corporate Liaison" + assignment = "Isaac's Lament Corporate Liaison" + +/datum/equipment_preset/survivor/corporate/isaacs/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/bulletproof(new_human), WEAR_JACKET) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown(new_human), WEAR_FEET) + ..() diff --git a/colonialmarines.dme b/colonialmarines.dme index b69a03136b78..9a26119cd2f1 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -698,6 +698,7 @@ #include "code\datums\weather\weather_events\sorokyne.dm" #include "code\datums\weather\weather_map_holders\big_red.dm" #include "code\datums\weather\weather_map_holders\faction_clash.dm" +#include "code\datums\weather\weather_map_holders\isaacs_lament.dm" #include "code\datums\weather\weather_map_holders\lv522_chances_claim.dm" #include "code\datums\weather\weather_map_holders\lv624.dm" #include "code\datums\weather\weather_map_holders\new_varadero.dm" @@ -734,6 +735,7 @@ #include "code\game\area\Corsat.dm" #include "code\game\area\DesertDam.dm" #include "code\game\area\IceColony.dm" +#include "code\game\area\Isaacs_Lament.dm" #include "code\game\area\kutjevo.dm" #include "code\game\area\LV522_Chances_Claim.dm" #include "code\game\area\LV624.dm" @@ -1783,6 +1785,7 @@ #include "code\modules\gear_presets\survivors\corsat\preset_corsat.dm" #include "code\modules\gear_presets\survivors\fiorina_sciannex\preset_fiorina_sciannex.dm" #include "code\modules\gear_presets\survivors\fiorina_sciannex\riot_in_progress_insert_fiorina_nightmare.dm" +#include "code\modules\gear_presets\survivors\isaacs_lament\preset_isaacs_lament.dm" #include "code\modules\gear_presets\survivors\kutjevo\preset_kutjevo.dm" #include "code\modules\gear_presets\survivors\lv_522\forcon_survivors.dm" #include "code\modules\gear_presets\survivors\lv_624\clfship_insert_lv624.dm" diff --git a/icons/obj/structures/doors/mineral_doors.dmi b/icons/obj/structures/doors/mineral_doors.dmi index f9e025ccf0e9..eb1c398f3219 100644 Binary files a/icons/obj/structures/doors/mineral_doors.dmi and b/icons/obj/structures/doors/mineral_doors.dmi differ diff --git a/icons/obj/structures/doors/personaldoor.dmi b/icons/obj/structures/doors/personaldoor.dmi index 8c52745dcb46..b6a01b9499c2 100644 Binary files a/icons/obj/structures/doors/personaldoor.dmi and b/icons/obj/structures/doors/personaldoor.dmi differ diff --git a/icons/obj/structures/props/jungleplants.dmi b/icons/obj/structures/props/jungleplants.dmi index 8deb736accdb..dc58c0f4135b 100644 Binary files a/icons/obj/structures/props/jungleplants.dmi and b/icons/obj/structures/props/jungleplants.dmi differ diff --git a/icons/obj/structures/props/landing_signs_128_64.dmi b/icons/obj/structures/props/landing_signs_128_64.dmi new file mode 100644 index 000000000000..6cb1ade60b02 Binary files /dev/null and b/icons/obj/structures/props/landing_signs_128_64.dmi differ diff --git a/icons/turf/ground_map.dmi b/icons/turf/ground_map.dmi index 944293c2c423..c95f0328907a 100644 Binary files a/icons/turf/ground_map.dmi and b/icons/turf/ground_map.dmi differ diff --git a/icons/turf/ground_map_dirt.dmi b/icons/turf/ground_map_dirt.dmi new file mode 100644 index 000000000000..c141562b8260 Binary files /dev/null and b/icons/turf/ground_map_dirt.dmi differ diff --git a/icons/turf/walls/junglewalls_v3.dmi b/icons/turf/walls/junglewalls_v3.dmi index c3905c580c23..fbadf03ac002 100644 Binary files a/icons/turf/walls/junglewalls_v3.dmi and b/icons/turf/walls/junglewalls_v3.dmi differ diff --git a/icons/turf/walls/window_frames.dmi b/icons/turf/walls/window_frames.dmi index 5fbe51615e98..5e83557194ee 100644 Binary files a/icons/turf/walls/window_frames.dmi and b/icons/turf/walls/window_frames.dmi differ diff --git a/icons/turf/walls/windows.dmi b/icons/turf/walls/windows.dmi index c162b83e661c..2842c8631239 100644 Binary files a/icons/turf/walls/windows.dmi and b/icons/turf/walls/windows.dmi differ diff --git a/icons/turf/walls/wood_plain.dmi b/icons/turf/walls/wood_plain.dmi new file mode 100644 index 000000000000..7d5403129eb5 Binary files /dev/null and b/icons/turf/walls/wood_plain.dmi differ diff --git a/icons/turf/walls/wood_plain2.dmi b/icons/turf/walls/wood_plain2.dmi new file mode 100644 index 000000000000..5b458f76275f Binary files /dev/null and b/icons/turf/walls/wood_plain2.dmi differ diff --git a/map_config/maps.txt b/map_config/maps.txt index 885b1e76faad..1c0f91a2e08a 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -60,5 +60,8 @@ endmap map new_varadero endmap +map isaacs_lament +endmap + map whiskey_outpost_v2 endmap diff --git a/maps/isaacs_lament.json b/maps/isaacs_lament.json new file mode 100644 index 000000000000..07e5f2571b50 --- /dev/null +++ b/maps/isaacs_lament.json @@ -0,0 +1,45 @@ +{ + "map_name": "Isaac's Lament", + "map_path": "map_files/Isaacs_Lament", + "map_file": "Isaacs_Lament.dmm", + "webmap_url": "LV-873", + "weather_holder": "/datum/weather_ss_map_holder/isaacs_lament", + "survivor_types": [ + "/datum/equipment_preset/survivor/scientist/isaacs", + "/datum/equipment_preset/survivor/colonial_marshal/isaacs", + "/datum/equipment_preset/survivor/trucker/isaacs", + "/datum/equipment_preset/survivor/engineer/isaacs", + "/datum/equipment_preset/survivor/uscm/isaacs", + "/datum/equipment_preset/survivor/doctor/isaacs", + "/datum/equipment_preset/survivor/security/isaacs", + "/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/isaacs", + "/datum/equipment_preset/survivor/corporate/isaacs", + "/datum/equipment_preset/survivor/goon", + "/datum/equipment_preset/survivor/clf", + "/datum/equipment_preset/survivor/civilian" + ], + "defcon_triggers": [ + 3750, + 2600, + 1450, + 875, + 0.0 + ], + "map_item_type": "/obj/item/map/isaacs_lament_map", + "announce_text": "An automated distress signal has been received from the rural colony settlement of Isaac's Lament, on the border world of LV-873. A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", + "monkey_types": [ + "farwa", + "monkey", + "neaera", + "stok" + ], + "traits": [{ "Ground": true }], + "camouflage": "jungle", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} diff --git a/maps/map_files/Isaacs_Lament/Isaacs_Lament.dmm b/maps/map_files/Isaacs_Lament/Isaacs_Lament.dmm new file mode 100644 index 000000000000..dac73d163ac4 --- /dev/null +++ b/maps/map_files/Isaacs_Lament/Isaacs_Lament.dmm @@ -0,0 +1,120003 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aah" = ( +/obj/structure/surface/rack, +/obj/item/trash/eat, +/obj/item/reagent_container/food/snacks/wy_chips/pepper{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"aam" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"aaE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Makeshift Telecommunications Hut" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"aaZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"abd" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 12 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"abs" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"abz" = ( +/obj/structure/safe, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"abM" = ( +/obj/item/paper/crumpled, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"abU" = ( +/obj/structure/machinery/atm{ + pixel_y = 30 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"abW" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + pixel_y = 1; + name = "Isaacs Lament marshal's wanted list m-7 yr-2182"; + pixel_x = -7 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "suspicious persons list m-7 yr-2182"; + pixel_x = 7 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/offices/northwest) +"ace" = ( +/obj/item/spacecash/c10, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"aci" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"acl" = ( +/obj/item/paper/crumpled, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"aco" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/southeast) +"acB" = ( +/obj/item/trash/eat, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"acP" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/northeast) +"acT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/serverroom) +"adj" = ( +/turf/open/floor, +/area/lv873/indoors/southeast/slums) +"adv" = ( +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Emergency Tower Lockdown"; + id = "tower" + }, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Aerospace Traffic Control Tower" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"adA" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"adB" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/organ/brain{ + anchored = 1; + pixel_x = -2 + }, +/obj/item/organ/brain{ + anchored = 1; + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/milk, +/obj/structure/machinery/shower{ + desc = "A fridge has been shoved into the emergency shower space."; + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/strata{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/lv873/indoors/southwest/slums) +"adG" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/trash/wy_chips_pepper, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"adK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"adQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/south) +"adY" = ( +/obj/item/prop/alien/hugger, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"aea" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"aen" = ( +/obj/structure/window_frame/colony, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"aes" = ( +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"aex" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southeast) +"aeO" = ( +/obj/item/newspaper, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aeS" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/east) +"aeX" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"afa" = ( +/obj/structure/machinery/door_control{ + pixel_x = 25; + pixel_y = 17; + id = "gasngear_garage"; + name = "long rest storage shutter control" + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"afm" = ( +/obj/item/ammo_magazine/revolver/small{ + max_rounds = 0; + pixel_y = -8; + current_rounds = 0 + }, +/obj/item/ammo_magazine/revolver/small{ + max_rounds = 0; + pixel_y = -8; + current_rounds = 0 + }, +/obj/item/weapon/gun/revolver/small{ + pixel_y = -5 + }, +/obj/structure/bed/chair/wheelchair{ + dir = 8; + name = "worn wheelchair with USCM patch"; + desc = "You imagine many-a recruitment nco has shook a boot from this chair saying the corps made him the man he is today." + }, +/obj/item/clothing/head/beret/cm/squadberet, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"afs" = ( +/obj/structure/surface/table/woodentable, +/obj/item/clipboard, +/obj/effect/landmark/objective_landmark/science, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -11; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -11; + pixel_y = -6 + }, +/obj/item/tool/screwdriver{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"afL" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"afM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"afN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"afO" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"afU" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"afX" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/west) +"agg" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/m94/signal{ + pixel_y = 6 + }, +/obj/item/storage/box/m94/signal{ + pixel_y = 2 + }, +/obj/item/storage/box/m94/signal{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"agz" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25; + density = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25; + density = 0 + }, +/obj/item/folder/red, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"agB" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/flooded/west_slums) +"agR" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"agW" = ( +/obj/item/tool/weldingtool/largetank, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"ahc" = ( +/obj/structure/prop/dam/truck, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"ahf" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/west) +"ahn" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/flooded_streets/east) +"ahx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"ahC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1; + layer = 3.2; + pixel_y = 15 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"ahM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"ahR" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"ahU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"ahW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"aiE" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "shed_garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"aiK" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"aiY" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southeast) +"ajK" = ( +/obj/item/shard, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"ajL" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/item/device/cassette_tape/ocean{ + pixel_y = 12 + }, +/obj/item/clothing/under/swimsuit/red, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"ajU" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets to the one and only Souto World."; + name = "\improper Tickets to Souto World"; + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ajW" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/ashtray/glass, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"ajX" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/south) +"akv" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"akx" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"akD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"akK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -4 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 4 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"alc" = ( +/turf/open/floor{ + dir = 10; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"alj" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"alH" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8; + icon_state = "logo_c" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"alT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"amg" = ( +/obj/structure/fence, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/cmb/exterior) +"amG" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"amJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"amM" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 15 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"amQ" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"amY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"anh" = ( +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"anx" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/dam/truck/mining{ + pixel_y = 6; + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"anL" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/obj/item/tool/screwdriver, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"anZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"aok" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/offices/northwest) +"aoL" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/bed/bedroll, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"aoR" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/clf_house) +"aph" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/hospital/break_garden) +"api" = ( +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"apG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Cargo Landing Zone Inspection Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"aqi" = ( +/obj/item/trash/plate, +/obj/item/light_bulb/tube, +/obj/effect/landmark/objective_landmark/close, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"aqq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"aqt" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/south/slums) +"aqw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/eftpos, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"aqM" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/under/swimsuit/green, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"ara" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/west) +"arm" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor, +/area/lv873/indoors/southeast/slums) +"arq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"arE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"arM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"arR" = ( +/obj/structure/largecrate/black_market/clf_supplies, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"asb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "west_nexus_garage"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"asd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"asq" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"asr" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"asu" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10 + }, +/obj/item/pipe{ + dir = 4; + layer = 3.5; + pixel_x = -23; + pixel_y = -12 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"asv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"asy" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8; + pixel_x = -8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"asE" = ( +/obj/structure/prop/server_equipment/broken, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"asL" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"asZ" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"ata" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Reception" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"atF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"atK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -31 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"atX" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"auY" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"avc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"avj" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/cmb/exterior) +"avt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"avy" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/southeast) +"avz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Hostel Corporate Room 4"; + welded = 1; + icon_state = "door_deny" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"avJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/item/weapon/baseballbat/metal, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/south) +"avQ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/turf/open/floor{ + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"avW" = ( +/obj/structure/surface/table, +/obj/item/map/current_map, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"awf" = ( +/obj/item/spacecash/c20{ + pixel_x = 8; + pixel_y = -9 + }, +/obj/item/trash/pistachios, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"awl" = ( +/obj/structure/bed/bedroll{ + dir = 10; + pixel_y = -1; + pixel_x = -3 + }, +/obj/item/bedsheet/hop, +/obj/effect/decal/cleanable/vomit, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"awm" = ( +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"awn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"awJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/borntokill, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"awS" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/soft/trucker, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"axw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/northeast) +"axW" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"ayc" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"ayL" = ( +/obj/structure/closet, +/obj/item/storage/pouch/survival/synth, +/obj/item/storage/pouch/tools/synth, +/obj/item/clothing/under/colonist/wy_joliet_shopsteward, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"ayP" = ( +/obj/structure/surface/rack, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/oob) +"azb" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"azB" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"azH" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper{ + icon_state = "paper_stack"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"azR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"aAc" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/under/marine/veteran/UPP/civi3, +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/southwest/slums) +"aAk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"aAG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"aAL" = ( +/obj/item/trash/cigbutt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"aBc" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/northeast/slums) +"aBo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"aBx" = ( +/obj/item/stack/cable_coil, +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"aCa" = ( +/obj/structure/sign/prop2{ + pixel_y = 32 + }, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_y = 14 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"aCc" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"aCw" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"aCG" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/wood, +/area/lv873/oob) +"aCI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"aCX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"aDh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"aDi" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"aDv" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"aDI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = 15; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/lockerroom) +"aDQ" = ( +/obj/item/trash/crushed_cup, +/obj/item/spacecash/c10, +/obj/structure/machinery/light_construct, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"aDY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"aEh" = ( +/obj/item/stack/sheet/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"aEo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/stamp{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"aER" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor{ + icon_state = "bot" + }, +/area/lv873/indoors/marshals/mainhall) +"aEX" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + name = "Rockin' Robin 2300 Jukebox"; + icon_state = "jukebox"; + icon = 'icons/obj/structures/props/misc.dmi'; + pixel_x = -5; + pixel_y = 16; + desc = "This jukebox only takes quarters,and you seem to be out of them at the moment." + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"aFd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"aFe" = ( +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"aFg" = ( +/turf/open/gm/coast/dirt/north, +/area/lv873/outdoors/flooded_streets/east) +"aFn" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "shed_garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = -34; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"aFB" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/bungalow_manager) +"aFI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"aFJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/appletart{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 11; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -10; + pixel_y = -5 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"aFN" = ( +/obj/structure/sign/safety/coffee{ + pixel_x = -17 + }, +/obj/structure/machinery/vending/coffee{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/structure/transmitter/colony_net{ + phone_category = "Power Station"; + phone_id = "Power Station Main Desk"; + pixel_y = 30; + pixel_x = 9 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"aFQ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "WYArmory"; + name = "\improper Company Emergency Armory Lockdown" + }, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"aGd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/lv873/indoors/marshals/cells) +"aGw" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"aGK" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"aGM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meatball, +/obj/item/reagent_container/food/snacks/meatball{ + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aHe" = ( +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"aHg" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"aHi" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"aHj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/superbiteburger, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"aHJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"aIh" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southeast) +"aIs" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"aIx" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 7; + pixel_y = 18 + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"aIy" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"aIz" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"aIV" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/flooded_streets/east) +"aJa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"aJe" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"aJk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/weapon/baseballbat/metal, +/obj/structure/machinery/light/small, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"aJm" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"aJB" = ( +/obj/item/trash/cigbutt, +/obj/item/clothing/glasses/sunglasses/prescription, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"aJG" = ( +/obj/structure/window, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"aJI" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"aJV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"aJX" = ( +/obj/item/trash/crushed_cup, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"aKc" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Businesses"; + phone_id = "Wey-Net Cafe" + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"aKf" = ( +/obj/effect/decal/hefa_cult_decals/d96{ + pixel_y = -17; + pixel_x = -14; + color = "#FF0000" + }, +/obj/item/paper/crumpled/bloody{ + info = "A list of various demands, one of which is the removal of all USCMC Personnel from the planet"; + pixel_y = 18; + pixel_x = 15 + }, +/obj/item/tool/candle{ + pixel_y = 10; + pixel_x = 10 + }, +/obj/item/tool/candle{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"aKx" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -24; + pixel_y = 6 + }, +/obj/structure/sign/safety/north{ + pixel_x = -24; + pixel_y = -6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"aKF" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"aKI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"aLn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"aLv" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"aLE" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/weapon/gun/boltaction{ + layer = 2.9; + pixel_x = -4 + }, +/obj/item/trash/USCMtray{ + layer = 5; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aLK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"aLQ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/swimsuit/purple, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"aME" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aMF" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"aMI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"aML" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/pistol/m4a3{ + name = "\improper M4A2 service pistol"; + pixel_y = 4; + pixel_x = -2; + accuracy_mult_unwielded = 0.9 + }, +/obj/item/weapon/gun/pistol/m4a3{ + name = "\improper M4A2 service pistol"; + pixel_y = -5; + pixel_x = -2; + accuracy_mult_unwielded = 0.9 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"aNe" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"aNn" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"aNs" = ( +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"aNz" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"aNG" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aNZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"aOi" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"aOm" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/tcomms) +"aOo" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/school) +"aOE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/serverroom) +"aOJ" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"aOR" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"aPh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/hospital/road_north_east) +"aPi" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"aPk" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"aPn" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"aPq" = ( +/obj/item/frame/rack, +/obj/item/trash/boonie, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"aPt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"aPB" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/item/clothing/gloves/grey, +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/east/slums) +"aPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"aQs" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"aQt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"aQy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"aQN" = ( +/obj/structure/flora/pottedplant{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"aQS" = ( +/turf/open/gm/dirt/brown{ + icon_state = "desert0" + }, +/area/lv873/oob) +"aQU" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8; + pixel_x = -8 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"aQV" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"aRl" = ( +/obj/structure/machinery/washing_machine{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/structure/machinery/washing_machine{ + pixel_x = 12; + pixel_y = 21 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"aRq" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel3b" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"aRM" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weymart) +"aRR" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"aRT" = ( +/obj/structure/machinery/telecomms/server, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"aRZ" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/obj/item/folder/red, +/obj/item/folder/red, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"aSx" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Liam's Automobile Repair Shop" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"aSC" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"aSI" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"aSQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"aST" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "tunnel_garage_2"; + name = "\improper Church Shutters" + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 8 + }, +/area/lv873/indoors/south/slums) +"aTf" = ( +/obj/item/ammo_casing/cartridge, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"aTK" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 11; + pixel_y = -8 + }, +/obj/item/device/flashlight/flare/on, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"aTU" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"aUt" = ( +/turf/open/asphalt/cement, +/area/lv873/oob) +"aUw" = ( +/obj/structure/sign/safety/ladder{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet/alt{ + pixel_x = 10; + pixel_y = 26 + }, +/turf/open/floor/plating{ + dir = 9; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"aUB" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/clf_communications) +"aUO" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/weymart) +"aUT" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -6; + pixel_y = 0 + }, +/obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/pinup{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"aVp" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"aVy" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"aVH" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platebot" + }, +/area/lv873/indoors/power_station) +"aVK" = ( +/obj/structure/cable, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4"; + layer = 2.81 + }, +/obj/structure/machinery/power/apc, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"aWe" = ( +/obj/effect/spider/stickyweb, +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"aWs" = ( +/obj/structure/largecrate/lisa, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"aWG" = ( +/obj/item/device/assembly/mousetrap, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aWJ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"aWP" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"aXt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aXu" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/west) +"aXI" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "power_station"; + name = "garage door opener"; + pixel_x = 22; + pixel_y = 4; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/oob) +"aYf" = ( +/obj/structure/sign/safety/security{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/landing_zones_disembark) +"aYs" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"aYx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"aYL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"aYR" = ( +/obj/item/stool{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"aZj" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/oob) +"aZm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"aZy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/southwest) +"bak" = ( +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"bap" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"bav" = ( +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"bay" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/landing_zones_disembark) +"baM" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor/wood, +/area/lv873/oob) +"baQ" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/oob) +"bbd" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"bbm" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"bbn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"bbo" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/west) +"bbR" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 0 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"bbS" = ( +/obj/structure/sign/double/barsign{ + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"bcu" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_y = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"bcy" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"bcB" = ( +/obj/structure/urinal{ + pixel_y = 21 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bcC" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"bcI" = ( +/obj/structure/flora/jungle/hedge{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"bcV" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/oob) +"bdc" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13; + pixel_x = 11 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 13; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"bdg" = ( +/turf/closed/wall, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"bdt" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "marshal_garage_1"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"bdJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/csandwich, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"bdT" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/landing_zones_disembark) +"bdX" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/trash/chunk{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"bew" = ( +/obj/item/stool, +/obj/item/clothing/head/hardhat, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"beB" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"beC" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"beD" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"beT" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southeast) +"beW" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"beX" = ( +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"bfg" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"bfs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"bfH" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/condiment/enzyme{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"bfV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/item/shard, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/offices/southwest) +"bgf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/bluemalt{ + pixel_x = -3; + pixel_y = 20 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"bgk" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"bgU" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"bhh" = ( +/turf/open/gm/coast/dirt/south, +/area/lv873/outdoors/flooded_streets/east) +"bho" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/item/shard, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"bhp" = ( +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"bht" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"bhy" = ( +/obj/structure/surface/rack, +/obj/item/device/cassette_tape/hiphop, +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"bhA" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25; + density = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25; + density = 0 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"bic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"bit" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"biz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + name = "\improper Liam's Automobile Repair Shop Garage" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"biZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"bjg" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"bjm" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/northeast) +"bjo" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"bjG" = ( +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/paper/crumpled, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"bjQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"bjS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/flamer_tank{ + pixel_x = -7 + }, +/obj/item/ammo_magazine/flamer_tank{ + pixel_x = 7; + pixel_y = 0 + }, +/obj/item/ammo_magazine/flamer_tank{ + pixel_y = 8 + }, +/obj/item/ammo_magazine/flamer_tank{ + pixel_y = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"bkC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"bkO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/hallway/north) +"bkS" = ( +/obj/structure/machinery/microwave, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"blf" = ( +/obj/item/stack/sheet/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"blw" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"blP" = ( +/obj/item/trash/cigbutt{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"blU" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"bmd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"bme" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner" + }, +/area/lv873/oob) +"bmE" = ( +/obj/structure/toilet{ + pixel_y = 16; + name = "blocked toilet" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"bmF" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"bmO" = ( +/obj/item/tool/candle{ + pixel_y = 10; + layer = 3.03 + }, +/obj/item/tool/candle{ + pixel_y = -10; + pixel_x = -10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"bmS" = ( +/obj/structure/toilet{ + pixel_y = 16; + name = "blocked toilet" + }, +/obj/item/paper/crumpled{ + pixel_y = 18 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bmX" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"bnf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bng" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/oob) +"bnk" = ( +/obj/structure/machinery/power/port_gen/pacman/super{ + desc = "A portable generator for emergency backup power. This one is still murmuring along." + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"bnp" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/west) +"bnG" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"bon" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"bov" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"boy" = ( +/obj/structure/prop/fishing/line/long, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"boP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/mirror{ + pixel_y = -27 + }, +/obj/item/facepaint/lipstick, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"boR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"boT" = ( +/obj/item/shard, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"bpo" = ( +/obj/item/device/cassette_tape/ocean{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"bpx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"bpU" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/east) +"bpY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/pizza) +"bpZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Weyland-Yutani Gold Insurance"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"bqd" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"bqg" = ( +/obj/structure/surface/table, +/obj/item/prop/tableflag/uscm, +/obj/item/prop/tableflag{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"brb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/item/clothing/mask/surgical, +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"brj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"brH" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"brI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"brQ" = ( +/obj/item/stack/rods, +/obj/structure/prop/invuln/pipe_water{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 14; + pixel_x = 2; + layer = 2.9; + name = "water pipe segment" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"brV" = ( +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/hunk{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bsa" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/landing_zones_disembark) +"bsD" = ( +/obj/structure/prop/ice_colony/flamingo, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"bsK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/hunk{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"bsO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"btf" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_y = 0 + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"bti" = ( +/obj/structure/machinery/m56d_hmg/mg_turret, +/turf/open/floor/wood, +/area/lv873/oob) +"bty" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"btA" = ( +/obj/structure/window/framed/colony, +/turf/open/floor, +/area/lv873/indoors/southeast/slums) +"btF" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/east) +"bun" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -15; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"bus" = ( +/obj/item/paper/crumpled{ + pixel_y = 18 + }, +/obj/item/tool/match, +/obj/item/trash/cigbutt{ + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"buB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"buV" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"bva" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 0 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"bve" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"bvJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"bvL" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"bvT" = ( +/obj/structure/surface/rack, +/obj/item/toy/prize/durand, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"bwp" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"bwu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"bwC" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"bwE" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"bwH" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"bxh" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/south/slums) +"bxl" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"bxA" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"bxV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"bxZ" = ( +/obj/structure/surface/table, +/obj/item/clothing/accessory/stethoscope, +/obj/item/device/eftpos, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"byk" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = 1 + }, +/obj/item/clothing/under/pj/red, +/obj/item/storage/fancy/cigar, +/obj/item/storage/fancy/cigar/matchbook/brown, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"byH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"byL" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/east) +"bzj" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"bAn" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/machinery/light, +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/lobby) +"bAr" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4; + name = "worn wheelchair with USCM patch"; + desc = "You imagine a recruitment nco has shook many-a boot from this chair saying the corps made him the man he is today." + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"bAE" = ( +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"bAP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"bAQ" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"bAZ" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"bBb" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/obj/structure/bed/chair, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"bBh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"bBk" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/northeast) +"bBr" = ( +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"bBt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"bBw" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"bBF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/serverroom) +"bBT" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_1) +"bCd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/packet/high_explosive{ + pixel_y = 6 + }, +/obj/item/storage/box/packet/high_explosive{ + pixel_y = -3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/armory) +"bCg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"bCL" = ( +/obj/item/trash/sosjerky, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"bCN" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"bCQ" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"bCS" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"bDe" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/northeast) +"bDm" = ( +/obj/item/trash/cigbutt{ + pixel_y = 7 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"bDo" = ( +/obj/structure/girder, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/indoors/southwest/slums) +"bDw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"bDx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"bDB" = ( +/obj/item/newspaper{ + pixel_y = 3; + name = "suspicious persons list m-7 yr-2182"; + pixel_x = -8 + }, +/obj/effect/landmark/objective_landmark/far{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"bEu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"bEC" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"bEM" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"bEO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/joey{ + desc = "A defunct Seegson-brand Working Joe, it's days cleaning the floors of the Welcome Center are over until someone repairs it." + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"bEQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"bET" = ( +/obj/structure/curtain/red, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"bFb" = ( +/obj/structure/filingcabinet, +/obj/item/newspaper{ + name = "flight logs m-3 yr-2182" + }, +/obj/item/newspaper{ + name = "flight logs m-6 yr-2182" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"bFn" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"bFr" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/cognac{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/cognac{ + pixel_y = 2; + pixel_x = 2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"bFO" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"bFP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "uscm_armory"; + name = "\improper Secure USCMC Armory" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/armory) +"bGT" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bHf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Jeppson's Memorial Hospital Courtyard" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"bHJ" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/west) +"bHK" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"bHQ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"bHW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"bHZ" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/item/folder/red, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"bIc" = ( +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"bIl" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"bIL" = ( +/obj/item/device/flashlight/on, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"bJC" = ( +/obj/item/trash/cigbutt, +/obj/item/weapon/broken_glass, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"bKj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"bKm" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/west) +"bKp" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"bKv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/xeno, +/obj/item/storage/belt/security/MP/CMB, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"bKx" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"bKP" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window{ + pixel_y = 0 + }, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "wy_compound_gate"; + name = "gate opener"; + pixel_y = -10; + req_one_access_txt = "2;3;12;19" + }, +/obj/item/paper_bin{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/tool/pen, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "wy_compound_storage"; + name = "storage opener"; + pixel_y = -17; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bKU" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"bLf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/beaker/sulphuric{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/device/assembly/igniter{ + pixel_x = -9 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"bLj" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"bLv" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/manipulator/nano, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"bLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"bLO" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"bLW" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"bMd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"bMv" = ( +/obj/structure/machinery/telecomms/server, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"bMA" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 6; + pixel_y = 17 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"bMD" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/effect/landmark/xeno_spawn, +/obj/item/storage/fancy/cigar{ + layer = 4.15; + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/bedsheet/hos, +/turf/open/floor/wood, +/area/lv873/oob) +"bMF" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"bNf" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"bNn" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/flooded_streets/west) +"bNp" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/poster/hunk{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"bNr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Makeshift Telecommunications Hut"; + locked = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"bNB" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"bNS" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"bNW" = ( +/obj/structure/largecrate{ + pixel_y = 17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"bNX" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 8 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"bOd" = ( +/obj/structure/bed/chair/wood/wings, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southwest) +"bOi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 7 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"bOk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"bOm" = ( +/obj/structure/largecrate/random/secure, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"bOS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"bOV" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"bPj" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/southeast) +"bPk" = ( +/obj/structure/machinery/microwave, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"bPF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"bPJ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"bPM" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 4 + }, +/area/lv873/outdoors/flooded_streets/west) +"bQd" = ( +/obj/structure/sign/safety/security{ + pixel_y = 27 + }, +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 27 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lz_sec_checkpoint) +"bQg" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"bQE" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/marshalsoffice) +"bQJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"bQL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"bQT" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"bQY" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/gated_community_exterior) +"bRf" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bRk" = ( +/obj/structure/largecrate/supply/medicine, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"bRI" = ( +/obj/effect/decal/cleanable/blood{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"bRP" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/clothing/under/rank/janitor, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"bRR" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bSy" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/north) +"bSJ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/liaison_suit/brown, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"bSP" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"bSS" = ( +/obj/structure/janitorialcart, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"bTb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Evidence Room" + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"bTi" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"bTo" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 7 + }, +/obj/item/trash/plate{ + pixel_y = 13; + pixel_x = 1 + }, +/obj/item/trash/plate{ + pixel_y = 15; + pixel_x = 1 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"bTt" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"bTu" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"bTx" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 6; + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = -7 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"bTR" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"bTV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"bTZ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/landing_zone_2) +"bUv" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"bUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c"; + name = "steam pipe"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"bUR" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"bUT" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"bVd" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/east) +"bVj" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset/distress/CLF, +/turf/open/floor/wood, +/area/lv873/oob) +"bVn" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"bVx" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/travel_agency) +"bVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"bVL" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southwest) +"bVP" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"bWa" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "cargo_garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = -22; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"bWh" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = -6 + }, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = 7 + }, +/obj/item/explosive/grenade/custom/ied, +/turf/open/floor/wood, +/area/lv873/oob) +"bWp" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/item/weapon/gun/rifle/m41a/corporate{ + current_mag = null + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"bWu" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"bWy" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/southwest/slums) +"bWG" = ( +/obj/item/trash/eat, +/obj/item/frame/table/wood/poor, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"bWI" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/lv873/oob) +"bWO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"bWX" = ( +/obj/item/trash/chips, +/obj/item/trash/burger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"bWY" = ( +/obj/structure/mineral_door/wood/open{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"bXb" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/lv873/indoors/ss_athens) +"bXk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "wy_compound_gate"; + name = "\improper Weyland-Yutani Hostel Gate"; + use_power = 0 + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bXl" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/mob/living/simple_animal/mouse/gray, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"bXn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/shard, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"bXB" = ( +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"bXC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"bXD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"bXZ" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/sign/poster/propaganda{ + pixel_x = 32 + }, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_y = 8; + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 5; + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 5; + pixel_x = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"bYc" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"bYj" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/obj/structure/mirror{ + pixel_y = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"bYG" = ( +/turf/closed/wall, +/area/lv873/indoors/welcome_center/lobby) +"bYP" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"bYU" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"bYW" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic{ + pixel_y = 12 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/oob) +"bYZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_y = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 15 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/xenobiological_research) +"bZo" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"bZs" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"bZy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/lockerroom) +"bZK" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"bZX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"caq" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"car" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/operations/offices/northwest) +"cas" = ( +/obj/item/tool/weldpack{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"caJ" = ( +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"cbi" = ( +/obj/structure/tunnel, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"cbn" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/landing_zone_2) +"cbI" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/west) +"cbK" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"cbS" = ( +/obj/structure/tunnel, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"ccg" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"ccl" = ( +/obj/structure/window{ + pixel_y = 31 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"ccA" = ( +/obj/item/shard, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"cdd" = ( +/obj/item/attachable/bayonet/upp_replica, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"cdr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/hallway/north) +"cdu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "power_station"; + name = "\improper Power Station Shutters" + }, +/turf/open/gm/road, +/area/lv873/indoors/power_station) +"cdz" = ( +/obj/structure/prop/dam/truck/damaged, +/obj/structure/largecrate/random/mini/wooden{ + pixel_y = 23; + pixel_x = 14 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"cdJ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"cdK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/maintenance/south) +"cdL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window{ + pixel_y = 0 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"cdO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"cdP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"cdU" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"cdW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"ceb" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/southwest) +"ceg" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"cep" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 10; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cer" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"ceK" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ceR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/glasses/regular/hipster, +/obj/item/clothing/head/manager{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"ceY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"cfi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"cfs" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/hospital/road_north_west) +"cfA" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"cfB" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"cfO" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"cga" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"cgm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"cgF" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"cgN" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"cgP" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Emergency Tower Lockdown"; + id = "tower"; + dir = 8 + }, +/turf/open/floor/plating, +/area/lv873/indoors/aerospace_control) +"chb" = ( +/obj/structure/cargo_container/watatsumi/mid, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"chh" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"chD" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"chF" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"chK" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/south) +"chQ" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + layer = 3.01 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/tool/soap{ + pixel_y = 0 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"chZ" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/army_surplus) +"ciM" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/cmb/exterior) +"ciS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"cjb" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/stack/sheet/metal, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"cjF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"cjN" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"ckn" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"ckq" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"ckt" = ( +/obj/item/paper/crumpled{ + pixel_x = 16; + pixel_y = 14 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"ckv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "west_gate"; + name = "\improper Western Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"ckB" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/operations/offices/southwest) +"ckJ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/closet/walllocker{ + pixel_x = -32 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/folder, +/obj/item/prop/magazine/book/spacebeast, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/clf_house) +"clw" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/weymart) +"clB" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"clL" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato{ + pixel_x = 5; + pixel_y = 14 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"cmC" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"cmF" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/hospital/break_garden) +"cmI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"cmQ" = ( +/obj/structure/machinery/telecomms/server, +/obj/structure/cable{ + icon_state = "1-9" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"cmS" = ( +/obj/structure/surface/table, +/obj/item/book/manual/surgery, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_y = 18; + pixel_x = -8; + layer = 3.03 + }, +/obj/item/stack/medical/advanced/ointment{ + pixel_y = 18; + pixel_x = 6 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"cmU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"cmW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"cnv" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"cnK" = ( +/obj/structure/bed, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"cnN" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"cnQ" = ( +/turf/open/gm/coast/dirt/beachcorner/north_west, +/area/lv873/outdoors/colony_streets/east) +"cog" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"coA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/wet_sign, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"coC" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigar{ + pixel_y = 12 + }, +/obj/item/tool/lighter/random{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"coJ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"cpa" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"cpf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"cpi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 10 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"cps" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"cpC" = ( +/obj/structure/holohoop{ + pixel_y = 26 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"cpK" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"cpU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/hallway/south) +"cqe" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"cqg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/milk, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"cqw" = ( +/turf/open/gm/dirt/brown{ + icon_state = "desert3" + }, +/area/lv873/oob) +"cqA" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/northeast) +"cqF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"cqM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Gas-n'-Gear"; + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"crb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"cre" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 19 + }, +/obj/structure/machinery/space_heater{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"crh" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/under/swimsuit/black, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"crE" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = 3; + name = "\improper M37A1 pump shotgun"; + accuracy_mult = 1 + }, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = -6; + name = "\improper M37A1 pump shotgun"; + accuracy_mult = 1 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"crG" = ( +/turf/closed/wall, +/area/lv873/indoors/power_station) +"csf" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"css" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southeast) +"csE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"ctb" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"cug" = ( +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"cuj" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/jacket/marine/bomber{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"cuk" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"cup" = ( +/obj/structure/cable{ + icon_state = "9-10" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"cuv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"cuA" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/reception) +"cuE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"cvc" = ( +/obj/structure/sign/prop2{ + pixel_y = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"cvv" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/operations/serverroom) +"cvE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Businesses"; + phone_id = "Liq-R-Mart" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"cvL" = ( +/obj/structure/fence, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/south) +"cvO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/ashtray/bronze{ + pixel_y = 0; + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cvU" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/sign/poster{ + desc = "Wawaweewa."; + icon_state = "poster17"; + name = "magazine"; + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"cvV" = ( +/obj/structure/filingcabinet, +/obj/item/disk, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"cvW" = ( +/obj/structure/machinery/telecomms/server, +/obj/structure/cable, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"cwf" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/south) +"cwl" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cwM" = ( +/obj/item/paper{ + icon_state = "paper_stack"; + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cwY" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/northeast/slums) +"cxe" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = -3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"cxv" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = -12 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = 7 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = -2 + }, +/obj/item/bedsheet/ce, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -10; + pixel_y = 21 + }, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"cxD" = ( +/obj/structure/fence, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"cya" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv873/indoors/operations/offices/southwest) +"cyd" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/prop/helmetgarb/gunoil{ + pixel_y = 2 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/weapon/gun/rifle/type71/carbine{ + pixel_x = -13; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cyn" = ( +/turf/open/floor{ + icon_state = "bot" + }, +/area/lv873/indoors/marshals/mainhall) +"cyp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/armory) +"cys" = ( +/obj/structure/machinery/telecomms/bus, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"cyu" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/hand/r_hand, +/obj/item/prop/colony/used_flare, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"cyC" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"cyE" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2"; + pixel_x = -8 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"cyS" = ( +/obj/structure/filingcabinet, +/obj/item/disk, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"czd" = ( +/obj/item/stack/cable_coil, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"czs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/burger{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cheeseburger) +"czA" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"czG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/liaison_suit/brown, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"cAa" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"cAc" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"cAf" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"cAj" = ( +/obj/item/tool/kitchen/knife, +/obj/item/clothing/head/chefhat, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"cAt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/lv873/oob) +"cAI" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/flamer_tank{ + pixel_x = 7 + }, +/obj/item/ammo_magazine/flamer_tank{ + pixel_y = 8 + }, +/obj/item/ammo_magazine/flamer_tank{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"cBu" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"cBG" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"cBI" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/weapon/gun/rifle/m16, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"cBK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"cBN" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"cBV" = ( +/obj/item/bedsheet/captain, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"cCg" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"cCw" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = -8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"cCx" = ( +/obj/structure/window, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"cCA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"cCD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"cCE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"cCO" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"cDe" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/power_station) +"cDt" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"cDA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -32 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"cDK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Flynn's Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"cDL" = ( +/obj/structure/janitorialcart, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"cDQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"cEg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"cEn" = ( +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"cET" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"cEU" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"cFp" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"cFz" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/surgery/scalpel, +/obj/item/clothing/head/surgery, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/operating_rooms) +"cFB" = ( +/obj/structure/surface/table, +/obj/item/newspaper{ + name = "report on waste treatment storage conditions m-7 yr-2182" + }, +/obj/item/tool/pen/blue, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"cFC" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"cFG" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Cargo Landing Zone ICC Inspector's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"cFT" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip1-" + }, +/obj/structure/prop/cash_register/broken, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"cGd" = ( +/obj/item/trash/chunk, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"cGB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/coast/dirt/beachcorner2/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"cGM" = ( +/obj/structure/window/framed/colony, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"cGQ" = ( +/obj/item/stack/sheet/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"cGV" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"cHr" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"cHF" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"cHY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"cID" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"cIE" = ( +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/southwest) +"cIF" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"cIJ" = ( +/obj/structure/surface/rack, +/obj/item/prop/helmetgarb/helmet_gasmask{ + pixel_x = 5 + }, +/obj/item/prop/helmetgarb/helmet_gasmask{ + pixel_x = -5 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/armory) +"cIR" = ( +/obj/structure/filingcabinet, +/obj/item/folder/black, +/obj/item/folder, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"cIW" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"cJg" = ( +/obj/item/toy/inflatable_duck, +/obj/item/pipe{ + dir = 9; + pixel_y = 20 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"cKa" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"cKd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"cKw" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"cKB" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/gated_community_exterior) +"cKI" = ( +/obj/structure/surface/rack, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"cKK" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_2) +"cKY" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southwest) +"cLa" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel1a" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"cLu" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"cLv" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"cLB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"cLF" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/sign/poster/propaganda{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"cLP" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_x = 1; + pixel_y = 18 + }, +/obj/structure/bed/bedroll{ + dir = 6; + pixel_x = 2; + pixel_y = 12 + }, +/obj/structure/bed/bedroll{ + dir = 9; + pixel_y = -6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"cMa" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"cMf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"cMh" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/east) +"cMs" = ( +/obj/item/trash/hotdog, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cMI" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"cMW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"cNi" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"cNt" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"cNx" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/south) +"cNM" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/south) +"cOn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"cOC" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"cOG" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/school) +"cOI" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"cOT" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"cPn" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"cPv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"cPx" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/oob) +"cPK" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"cPM" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"cPO" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"cPQ" = ( +/obj/item/stack/sheet/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"cPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"cQj" = ( +/obj/structure/surface/table, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"cQK" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/marine{ + pixel_y = 5 + }, +/obj/item/storage/belt/marine{ + pixel_y = -5 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"cRa" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"cRd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/mirror{ + pixel_y = -27 + }, +/obj/item/clothing/under/swimsuit/blue, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"cRi" = ( +/obj/structure/surface/rack, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/storage/pill_bottle/tramadol{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/item/storage/pill_bottle/kelotane{ + pixel_y = -3; + pixel_x = 5 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"cRk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"cRp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"cRq" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/west) +"cRr" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + locked = 1; + name = "\improper Jeppson's Memorial Hospital ICU" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"cRy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"cRY" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/east) +"cSg" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/east) +"cSC" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip2" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"cSG" = ( +/obj/structure/prop/dam/truck/mining, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"cSI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"cSL" = ( +/obj/item/light_bulb/tube, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"cSN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"cSQ" = ( +/obj/item/tool/mop{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"cSS" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"cST" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"cSW" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/tool/pen{ + pixel_x = 2 + }, +/obj/item/ashtray/bronze{ + pixel_y = 0; + pixel_x = -8 + }, +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = -6 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/offices/east) +"cSY" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -9; + pixel_y = 17 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"cTc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"cTl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"cTo" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"cTs" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" + }, +/area/lv873/indoors/ss_athens) +"cTy" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner" + }, +/area/lv873/outdoors/colony_streets/south) +"cTC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"cTE" = ( +/turf/open/floor/wood, +/area/lv873/oob) +"cTF" = ( +/obj/structure/flora/jungle/hedge{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"cTJ" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"cTU" = ( +/obj/item/trash/barcardine, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"cTZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"cUi" = ( +/obj/structure/fence, +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/cmb/exterior) +"cUn" = ( +/obj/item/weapon/gun/shotgun/pump{ + name = "\improper broken M37A2 pump shotgun"; + current_mag = null + }, +/obj/item/ammo_casing/shell{ + icon_state = "shell_9_1" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/cmcap/boonie, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/north) +"cUE" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/east) +"cUG" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"cUY" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/labcoat, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"cVa" = ( +/obj/item/trash/cigbutt, +/obj/item/shard, +/obj/item/trash/plate, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"cVb" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"cVj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster/safety{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"cVk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"cVx" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"cVJ" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"cWb" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"cWC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/corporate, +/obj/item/newspaper{ + pixel_y = 0; + name = "half-finished correspondence on corporate relations and image in the Isaacs Lament colony m-7 yr-2182" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"cWI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"cWS" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"cWT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"cWZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"cXf" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/structure/machinery/light_construct, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"cXp" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"cXz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/lockerroom) +"cXL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"cXO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/wo_supplies/guns/common/m4a3{ + pixel_x = -3 + }, +/obj/item/ammo_magazine/pistol{ + pixel_x = 3 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"cXW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "bot" + }, +/area/lv873/indoors/marshals/mainhall) +"cYg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"cYl" = ( +/obj/item/trash/kepler, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"cYn" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 34; + pixel_y = 0 + }, +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Weyland-Yutani Welcome Center"; + phone_id = "Offices" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"cYW" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/laundromat) +"cYY" = ( +/obj/structure/largecrate/random/mini, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"cZg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"cZR" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"cZY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"daf" = ( +/obj/structure/largecrate/supply/supplies/sandbags, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"dak" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"daq" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"daO" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Businesses"; + phone_id = "Flynn's Bar" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/flynns_bar) +"daU" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/structure/sign/poster/hunk{ + pixel_y = 32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"dbj" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/west) +"dbq" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/microwave{ + pixel_y = 4; + icon_state = "mwbloodyo"; + desc = "A microwave in which a casserole seems to have detonated. a note is taped onto the button saying: fryman you fool! When this is over, your head will roll." + }, +/obj/item/trash/plate{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"dbw" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/east) +"dbH" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"dbQ" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/plating, +/area/lv873/indoors/southeast/slums) +"dbY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"dce" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/school) +"dcj" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"dcr" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"dcw" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel1b"; + pixel_y = 20 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"dcS" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"dda" = ( +/obj/item/toy/bikehorn/rubberducky, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ddE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/east) +"ddS" = ( +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ddV" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"dea" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/garage) +"ded" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"def" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"deh" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"dep" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/oob) +"dey" = ( +/turf/closed/wall, +/area/lv873/indoors/marshals/mainhall) +"deN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"deR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-9" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"deT" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"deX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/maintenance/south) +"deY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"dfa" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/arm/r_arm, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dft" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_r_w" + }, +/area/lv873/indoors/ss_athens) +"dfy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/clothing/glasses/sunglasses/prescription, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"dfC" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/obj/item/folder, +/obj/item/folder, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"dfW" = ( +/obj/structure/machinery/telecomms/processor, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"dgj" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"dgm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"dgw" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/landing_zones_disembark) +"dgB" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"dgR" = ( +/obj/structure/surface/rack, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"dgT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"dgU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + layer = 2.98 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"dhe" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/cargo_lz) +"dhf" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"dhp" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/corpo_armory) +"dhJ" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"dhP" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"dhQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = -7 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"dhY" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"dib" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"diJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"diQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"diR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"diV" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"djf" = ( +/obj/item/stool{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/item/circuitboard{ + pixel_x = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"djg" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel/laser/advanced{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/device/healthanalyzer{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"djp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = -5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"djt" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = 7 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = 2 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = -2 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"dju" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"djx" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"djR" = ( +/obj/structure/prop/dam/truck, +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_y = 26; + pixel_x = 17 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"djS" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"djV" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/item/book/manual/engineering_construction{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/carpet{ + icon_state = "bcarpet01" + }, +/area/lv873/indoors/southwest/slums) +"djX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Corporate Hostel Room 3" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"dkf" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"dkO" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"dkP" = ( +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"dkV" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"dla" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "northeast_gate"; + name = "\improper North-Eastern Gate" + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lz_sec_checkpoint) +"dlb" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"dlr" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"dly" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Intelligence Officer's Bunk" + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"dlK" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"dlM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"dma" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/colony/game, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"dmk" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"dmo" = ( +/obj/structure/filingcabinet, +/obj/item/disk, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"dmw" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/gibspawner/robot, +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"dmB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/offices/northwest) +"dmC" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/plating, +/area/lv873/indoors/south/slums) +"dmF" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"dmI" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"dmJ" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/oob) +"dmM" = ( +/obj/structure/surface/table, +/obj/item/trash/burger, +/obj/item/trash/burger, +/obj/item/trash/burger, +/obj/item/storage/fancy/egg_box, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"dnt" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"dnS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/neils_arcade) +"dnU" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/hospital/road_north_east) +"dnX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"doi" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/bungalow_manager_exterior) +"dot" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/transmitter/colony_net{ + dir = 4; + pixel_x = -15; + phone_category = "Businesses"; + phone_id = "Army Surplus" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"doU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "east_gate"; + name = "\improper Eastern Gate" + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/hospital/reception) +"dpp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"dpq" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/lv873/indoors/marshals/cells) +"dpy" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"dpN" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/chinese) +"dqa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"dqf" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"dqi" = ( +/obj/structure/machinery/telecomms/allinone/interceptor, +/obj/item/device/radio/headset/distress/CLF{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"dql" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"dqS" = ( +/obj/item/prop/helmetgarb/spent_slug, +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"dqX" = ( +/turf/closed/wall, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"dro" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_y = 9; + pixel_x = -5 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_x = -4 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"drD" = ( +/obj/structure/cable{ + icon_state = "8-10" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"drE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -8 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"drI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/machinery/computer/general_air_control{ + dir = 4; + pixel_y = -10 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"dse" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"dsn" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Security Checkpoint" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/reception) +"dsE" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"dsO" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"dsY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"dtp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "east_gate"; + name = "\improper Eastern Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/hospital/reception) +"dtw" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/organ/brain/xeno, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"dtx" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"dtE" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/lobby) +"dua" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 7; + pixel_x = -1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 16; + pixel_x = -1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"dug" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/clf_house) +"dum" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"dus" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c"; + pixel_x = 5; + pixel_y = 6; + name = "pneumatic delivery system pipe"; + layer = 2.31 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4"; + pixel_x = -8; + pixel_y = -7 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = -7; + pixel_x = 15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"duw" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"duB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"duG" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/flora/bush/ausbushes/var3/brflowers{ + pixel_y = 13 + }, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"duH" = ( +/obj/structure/stairs, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"duN" = ( +/obj/structure/prop/tower, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/oob) +"dvd" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dvz" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"dvM" = ( +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/device/radio/headset/distress, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"dvN" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Businesses"; + phone_id = "Laurie's Laundromat" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"dwm" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"dwr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/pistol/b92fs{ + pixel_y = 8 + }, +/obj/item/weapon/gun/pistol/m1911{ + pixel_y = 3 + }, +/obj/item/weapon/gun/pistol/m4a3{ + pixel_y = -4; + pixel_x = -1 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = -12; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"dws" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dwu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"dwF" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/flooded_streets/west) +"dwG" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"dwN" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "WYArmory"; + name = "\improper Corporate Emergency Armory" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/indoors/corpo_armory) +"dxb" = ( +/obj/item/tool/crowbar/red{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"dxj" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"dxH" = ( +/turf/open/floor{ + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"dxR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/prop/alien/hugger, +/obj/item/explosive/grenade/slug/baton, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/uscm/directional, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"dxS" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"dxV" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 4 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/paper_bin/wy{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dyj" = ( +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "A board of week old sushi."; + icon_state = "sushiboard"; + name = "sushi" + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 11 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/kitchen/rollingpin{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"dyk" = ( +/turf/open/floor/almayer/uscm/directional, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"dyp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"dyC" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"dyH" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/structure/window{ + pixel_y = 31 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"dyY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/east/slums) +"dzk" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Morgue" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"dzw" = ( +/obj/structure/flora/jungle/hedge{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"dzI" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"dAh" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"dAk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"dAl" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/flooded/east_apartments) +"dAm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/recruiter_house) +"dAt" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dAB" = ( +/obj/structure/closet/bodybag, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"dAE" = ( +/obj/structure/toilet, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"dAF" = ( +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"dAK" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"dAO" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Memorial Hospital"; + phone_id = "Break Room" + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"dAV" = ( +/obj/item/trash/cheesie, +/obj/item/trash/kepler, +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"dAZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"dBI" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/maintenance/south) +"dBK" = ( +/obj/structure/largecrate/black_market, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"dBR" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/emergency{ + pixel_y = -7 + }, +/obj/item/reagent_container/hypospray/autoinjector/emergency{ + pixel_y = 2 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"dCD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Break Room" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"dCJ" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/north) +"dCQ" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"dCZ" = ( +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/south) +"dDz" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/hospital/road_north_east) +"dDA" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/lobby) +"dDW" = ( +/turf/open/floor/plating, +/area/lv873/indoors/power_station) +"dEj" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"dEk" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/item/toy/bikehorn/rubberducky, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"dEm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"dEp" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8; + icon_state = "logo_c" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"dEB" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"dEI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"dFn" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/hospital/break_garden) +"dFu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"dGd" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 6; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/landing_zone_2) +"dGe" = ( +/obj/item/clothing/under/blackskirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"dGp" = ( +/obj/item/paper{ + icon_state = "paper_stack" + }, +/obj/item/paper{ + icon_state = "paper_stack"; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/paper{ + icon_state = "paper_stack"; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"dGJ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/folder/black, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"dGK" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"dGO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_x = 5 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"dHe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"dHV" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"dIr" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"dIx" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25; + density = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25; + density = 0 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"dIM" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/lighter, +/turf/open/floor/carpet, +/area/lv873/indoors/northeast/slums) +"dJb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"dJl" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Corporate Administrator's Bungalow" + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"dJq" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"dJt" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"dJu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"dJP" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/sign/poster/propaganda{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"dJQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"dJR" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"dJV" = ( +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"dKf" = ( +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"dKD" = ( +/obj/item/tool/weldingtool/simple, +/obj/item/clothing/head/welding{ + pixel_y = -5 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"dKP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/hallway/west) +"dKQ" = ( +/obj/structure/target, +/obj/item/clothing/head/headband/rambo, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/cmb/exterior) +"dLk" = ( +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"dLm" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"dLq" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"dLu" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"dLE" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"dLJ" = ( +/obj/item/ashtray/bronze{ + pixel_y = 0; + pixel_x = -8 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "CMB Office"; + phone_id = "Marshal's Office"; + pixel_x = 4 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/marshals/marshalsoffice) +"dLL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper North-East Power Substation" + }, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"dLR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = 1 + }, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = 7 + }, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = -5 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"dLV" = ( +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"dLZ" = ( +/obj/structure/surface/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/east/slums) +"dMB" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"dMX" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/southwest) +"dNa" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/trash/cigbutt{ + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"dNZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"dOk" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/northeast) +"dOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/trash/cigbutt, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"dOr" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"dOQ" = ( +/obj/structure/filingcabinet{ + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"dOZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/trash/hotdog, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"dPB" = ( +/obj/item/paper/crumpled{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dPI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/item/device/eftpos{ + pixel_x = 5; + pixel_y = -7 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"dPL" = ( +/obj/item/clothing/head/soft/trucker/red, +/obj/item/trash/cigbutt, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"dPR" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/north) +"dQl" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"dQM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"dRH" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + pixel_y = 7; + pixel_x = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"dRO" = ( +/obj/structure/bed/chair, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"dRS" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"dSf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -17 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"dSg" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"dSn" = ( +/obj/structure/surface/table{ + flipped = 1 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"dSE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/helmet/marine{ + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/marine{ + pixel_y = -5 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"dSJ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/prop/invuln/pipe_water{ + name = "toilet water"; + desc = "Looks like the toilet is leaking." + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"dSO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"dTM" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"dUa" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"dUe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"dUg" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"dUL" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"dUU" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"dUV" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"dVf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/welcome_center/canteen) +"dVj" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"dVD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"dVF" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"dVJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/north) +"dWb" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"dWd" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"dWf" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/northeast) +"dWg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1; + name = "\improper Power Station" + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/power_station) +"dWh" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"dWo" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"dWy" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/reception) +"dWI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"dWL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/storage/pouch/cassette, +/obj/item/device/cassette_tape/cargocrate, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/offices/southwest) +"dXd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"dXt" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"dXy" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"dXX" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/hallway/west) +"dXY" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/garage) +"dYt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/power_station) +"dYE" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"dYL" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel1a"; + pixel_y = 20 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/east_apartments) +"dYR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper The Pole Museum" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"dZn" = ( +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"dZH" = ( +/obj/item/clothing/under/shorts/red{ + name = "red trunks" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"eah" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/lockerroom) +"eai" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"eak" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"eaq" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/wood, +/area/lv873/oob) +"eaQ" = ( +/obj/item/trash/uscm_mre, +/obj/structure/cable{ + icon_state = "8-10" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"eaT" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"ebc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -8 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ebw" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"ebR" = ( +/turf/closed/shuttle/ert, +/area/lv873/indoors/ss_athens) +"ecd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"eci" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/mineral/osmium{ + pixel_y = 14 + }, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ecE" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ecG" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"ecJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"ecL" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"ecQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"ecX" = ( +/obj/item/prop/alien/hugger, +/obj/item/tool/kitchen/knife{ + pixel_y = -15 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"ecZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southeast) +"edo" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"edG" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"edL" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"edN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window, +/obj/item/folder/black, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"edU" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"edV" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"edY" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = -16; + pixel_y = -7 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"eej" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/jar{ + anchored = 1; + layer = 3.1; + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/organ/brain{ + anchored = 1; + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"eeo" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"eeu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"eew" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/coast/dirt/north, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"eeO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southeast) +"eeR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"eeS" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"efb" = ( +/obj/structure/sign/safety/bathmens{ + pixel_y = -32; + pixel_x = 7 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"eff" = ( +/turf/closed/wall, +/area/lv873/oob) +"efh" = ( +/obj/item/tool/weldingtool/simple, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"efl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"efY" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"egi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/spacecash/c10{ + pixel_y = 0 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"egu" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"egv" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"egw" = ( +/obj/structure/machinery/telecomms/server, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"egA" = ( +/obj/structure/largecrate/random, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"egP" = ( +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/south/slums) +"ehb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/hallway/south) +"ehd" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/flooded_streets/west) +"ehA" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv873/indoors/operations/hallway/west) +"ehE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ehS" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/clf_barracks) +"ehY" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/landing_zone_2) +"eid" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"eiA" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/east/slums) +"eiG" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = -8; + pixel_y = 16 + }, +/obj/item/tool/soap{ + pixel_x = -12 + }, +/turf/open/floor/strata{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/lv873/indoors/southwest/slums) +"eiP" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"eiU" = ( +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"ejj" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"ejp" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/item/toy/plush/farwa{ + pixel_x = -15; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"ejr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/greenglow, +/obj/item/organ/brain{ + anchored = 1; + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/jar{ + anchored = 1; + layer = 3.1; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/reagent_container/dropper{ + pixel_x = -3; + pixel_y = -10 + }, +/obj/structure/machinery/computer/crew/alt{ + dir = 4; + pixel_x = 14; + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"ejw" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/hospital/road_north_east) +"ejE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/marshals/marshalsoffice) +"ejF" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/south) +"ejI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"ejS" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"eki" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"ekj" = ( +/turf/closed/wall, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"ekl" = ( +/turf/closed/wall/r_wall, +/area/lv873/outdoors/colony_streets/west) +"ekp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/cognac{ + pixel_y = 10; + pixel_x = -4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"ekq" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/east) +"ekB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"ekF" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"ekG" = ( +/obj/structure/fence, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"ekP" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "fullgrass_1" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"elc" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/oob) +"eld" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"ell" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door"; + welded = 1; + icon_state = "door_welded" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"elo" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"elz" = ( +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"elS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"elU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"emj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 10; + pixel_y = 15 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"emv" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"emV" = ( +/obj/structure/cargo_container/watatsumi/left, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"enb" = ( +/obj/item/trash/cigbutt{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/trash/cigbutt{ + pixel_y = 10; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"enf" = ( +/turf/open/floor/carpet{ + icon_state = "bcarpet07" + }, +/area/lv873/indoors/welcome_center/offices) +"eni" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"enj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pole Museum Management Office" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"env" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/landing_zone_2) +"enB" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"enM" = ( +/obj/structure/urinal{ + pixel_y = 21 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"enN" = ( +/obj/structure/sign/safety/coffee{ + pixel_y = -32 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 16; + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"enQ" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4; + layer = 2.991 + }, +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"eop" = ( +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"eor" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/south/slums) +"eoB" = ( +/obj/structure/window/framed/colony, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/lv873/indoors/hospital/research/floor) +"eoD" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"eoF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/item/trash/burger{ + pixel_y = -6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"eoK" = ( +/obj/structure/surface/rack, +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"eoL" = ( +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/cells) +"epq" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"epR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southeast) +"epV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/vehicles/crawler{ + dir = 1; + icon_state = "crawler_crate_alt2"; + pixel_y = 12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"epX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + pixel_y = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 8; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 8; + pixel_y = 8; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"eqb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"eqc" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/flooded_streets/west) +"eqf" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"eqs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"eqC" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"eqQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"erz" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"esa" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"esb" = ( +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"esv" = ( +/obj/item/shard, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/east) +"esD" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"esE" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/cmb/exterior) +"esF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"esI" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"esO" = ( +/obj/structure/surface/table{ + flipped = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"esT" = ( +/obj/item/reagent_container/food/snacks/cheesewedge/mature, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"eta" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/pj/red, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"etd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/tableflag{ + pixel_x = -8 + }, +/obj/item/prop/tableflag/uscm, +/obj/item/prop/tableflag/uscm2{ + pixel_x = 8 + }, +/obj/structure/sign/prop1{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"eto" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = 32 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"etx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"etN" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"euj" = ( +/obj/item/storage/box/m56d/m2c, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"eul" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/northeast/slums) +"eum" = ( +/obj/item/tool/soap/syndie{ + pixel_y = -9; + pixel_x = 8; + desc = "A bar of soap. Smells of strawberry." + }, +/obj/item/tool/soap/nanotrasen{ + pixel_y = -6; + pixel_x = 8; + desc = "A Weyland-Yutani brand bar of soap. Smells of lilac." + }, +/obj/item/tool/soap/deluxe{ + pixel_x = 8; + pixel_y = -3; + desc = "A cheap bar of soap. Smells of oranges." + }, +/obj/item/tool/soap{ + pixel_x = 8; + desc = "A cheap bar of soap. Smells of some flower." + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/bungalow_manager) +"euv" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/microwave{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"euw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"euG" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"euM" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"euR" = ( +/obj/structure/sign/safety/fridge{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"euZ" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"evf" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"evt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigar/matchbook/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"evu" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/landing_zone_2) +"evK" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"evT" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ewg" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41a/training{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/m41a/training{ + pixel_y = -2 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ewo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"ewp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + pixel_y = 6 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"ewr" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"ewJ" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + pixel_y = 3; + pixel_x = -4 + }, +/obj/item/trash/plate{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/reagent_container/food/snacks/fishburger{ + pixel_y = 13; + pixel_x = 5 + }, +/obj/item/tool/candle{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/item/ashtray/plastic{ + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/trash/cigbutt{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"ewK" = ( +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"ewX" = ( +/obj/item/stool, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"exa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research/colony{ + name = "\improper Jeppson's Memorial Hospital Research Wing" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"exd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/north) +"exf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"exk" = ( +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/obj/item/device/cassette_tape/hiphop{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/device/cassette_tape/indie, +/turf/open/floor/carpet{ + icon_state = "bcarpet01" + }, +/area/lv873/indoors/southeast/slums) +"exm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/gibspawner/robot, +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"exu" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"exB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/trash/chunk{ + pixel_y = -4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"exI" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 1; + pixel_x = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"exL" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"eyb" = ( +/turf/open/gm/coast/dirt/east, +/area/lv873/outdoors/flooded_streets/west) +"eyd" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/east) +"eyh" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"eym" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/southwest) +"ezd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"ezl" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"ezn" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/landing_zone_2) +"ezv" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/landing_zone_2) +"ezC" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A rather tasteless polyester tiger rug. "; + dir = 4; + icon_state = "WhiteAlt"; + name = "fake tiger rug"; + pixel_y = -9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"ezZ" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Emergency Tower Lockdown"; + dir = 8; + id = "tower" + }, +/turf/open/floor/plating, +/area/lv873/indoors/aerospace_control) +"eAo" = ( +/obj/structure/flora/jungle/hedge{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"eAB" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"eAD" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"eAV" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/landing_zones_disembark) +"eBi" = ( +/obj/item/weapon/gun/pistol/skorpion{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"eBq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"eBJ" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"eBX" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"eCc" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"eCu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"eCE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"eCG" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + name = "Display Synthetic"; + icon_state = "Synthetic_Template"; + icon = 'icons/mob/humans/species/r_synthetic.dmi' + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_y = 12 + }, +/obj/item/clothing/under/colonist/workwear/khaki{ + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"eCW" = ( +/obj/item/stool{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"eCX" = ( +/obj/effect/acid_hole, +/turf/closed/wall, +/area/lv873/indoors/northeast/slums) +"eDa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pizza Galaxy Kitchen"; + dir = 1 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"eDt" = ( +/obj/item/frame/rack, +/obj/item/spacecash/c1, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"eDD" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"eDE" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"eDL" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cheeseburger) +"eDV" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"eEn" = ( +/obj/vehicle/multitile/van, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"eEI" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"eFi" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southwest) +"eFv" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"eFF" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"eFN" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"eGC" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"eHm" = ( +/turf/open/gm/coast/dirt/beachcorner/north_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"eHp" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3" + }, +/area/lv873/indoors/ss_athens) +"eHH" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"eIa" = ( +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"eIh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"eIy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/offices) +"eIC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"eJb" = ( +/obj/item/trash/chips, +/obj/item/trash/buritto, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"eJe" = ( +/obj/item/tool/pen/clicky, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"eJn" = ( +/obj/structure/surface/rack, +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/toy/deck{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/toy/deck{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"eJH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"eJL" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"eJR" = ( +/obj/item/trash/cheesie, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"eKa" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/item/storage/fancy/cigar/matchbook/wy_gold, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"eKv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/baton, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"eKA" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/landing_zone_1) +"eKB" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/northeast) +"eKG" = ( +/obj/item/paper/crumpled/bloody, +/obj/item/paper/crumpled{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/paper/crumpled/bloody/csheet{ + pixel_y = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"eKS" = ( +/obj/structure/largecrate/random/mini{ + pixel_y = 24 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"eLh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"eLp" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"eLw" = ( +/obj/structure/flora/pottedplant/random, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"eLz" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/cable{ + icon_state = "4-9" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"eLL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/offices/east) +"eLQ" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/oob) +"eLS" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"eMj" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"eMu" = ( +/obj/effect/decal/cleanable/blood{ + pixel_y = 12 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"eMv" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_y = 1; + pixel_x = 4 + }, +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"eMw" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"eMA" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/item/light_bulb/tube{ + pixel_y = 14 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"eNp" = ( +/obj/item/trash/falcon_drone, +/obj/item/tool/wrench{ + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"eNt" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"eNG" = ( +/turf/open/gm/coast/dirt/beachcorner/north_west, +/area/lv873/outdoors/flooded_streets/east) +"eOb" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"eOf" = ( +/obj/structure/bed/chair/wood/wings, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"eOi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat/fish/crab/shelled{ + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/meat/fish/squid{ + pixel_y = 6; + pixel_x = -5 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"eOG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/prop2{ + pixel_y = -32 + }, +/obj/item/ashtray/bronze{ + pixel_x = -8 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 12; + pixel_x = -3 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"eOK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/trading_card{ + pixel_y = 9; + pixel_x = -8; + layer = 3 + }, +/obj/item/toy/trading_card{ + pixel_y = 9; + pixel_x = -4; + layer = 3.01 + }, +/obj/item/toy/trading_card{ + pixel_y = 9; + layer = 3.03 + }, +/obj/item/toy/trading_card{ + pixel_y = 9; + pixel_x = 4; + layer = 3.04 + }, +/obj/item/toy/trading_card{ + pixel_y = -6; + pixel_x = 8; + layer = 3.06 + }, +/obj/item/toy/trading_card{ + pixel_y = -6; + pixel_x = 4; + layer = 3.07 + }, +/obj/item/toy/trading_card{ + pixel_y = -6; + layer = 3.08 + }, +/obj/item/toy/trading_card{ + pixel_y = -6; + pixel_x = -4; + layer = 3.09 + }, +/obj/item/toy/trading_card{ + pixel_y = -6; + pixel_x = -8; + layer = 3.10 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/item/toy/trading_card{ + pixel_y = 9; + pixel_x = 8; + layer = 3.05 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"eOZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southeast) +"ePk" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"ePt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"ePI" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three{ + pixel_y = -3 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"eQo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"eQD" = ( +/obj/structure/coatrack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"eQQ" = ( +/obj/structure/prop/static_tank/water{ + pixel_y = 18 + }, +/obj/structure/prop/static_tank/water{ + layer = 3.2; + pixel_y = -2 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/oob) +"eRc" = ( +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"eRE" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/offices) +"eRG" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southeast) +"eRI" = ( +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"eSq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"eSv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"eSw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 2 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 4 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 6 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"eSC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"eTw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/invuln/pipe_water{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 14; + pixel_x = -10; + layer = 2.9; + name = "water pipe segment" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"eTy" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/cable_coil/orange, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"eUh" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"eUw" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"eUI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/faxmachine/corporate, +/obj/item/newspaper{ + name = "report on unknown xenoplanet species m-6 yr-2182" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"eVb" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/landing_zone_1) +"eVt" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/south) +"eVu" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"eVF" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/hospital/break_garden) +"eVG" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"eWw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cup, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"eWz" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/southwest/slums) +"eWC" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"eWE" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_1) +"eWX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"eXg" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/landing_zones_disembark) +"eXl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = -8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"eXA" = ( +/obj/item/clothing/shoes/marine/upp, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"eXD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper USCMC Recruiter's House"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"eXI" = ( +/obj/structure/machinery/cm_vending/sorted/walkman, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"eXV" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"eXZ" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/mineral/iron{ + pixel_y = 15 + }, +/obj/item/stack/sheet/mineral/silver, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"eYb" = ( +/obj/structure/largecrate/random/case, +/obj/structure/prop/server_equipment/laptop, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"eYj" = ( +/obj/structure/filingcabinet, +/obj/item/disk, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"eYt" = ( +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"eYC" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"eYI" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/laundromat) +"eZe" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_black_t_up" + }, +/area/lv873/indoors/ss_athens) +"eZk" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"eZt" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/ammo_magazine/shotgun/beanbag{ + pixel_y = -7; + pixel_x = 7 + }, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -7; + pixel_x = -9 + }, +/obj/item/weapon/gun/shotgun/combat{ + name = "\improper rusty MK221 tactical shotgun"; + desc = "This is a rusty Weyland-Yutani MK221 Shotgun, a semi-automatic shotgun with a quick fire rate."; + damage_mult = 0.8; + accuracy_mult = 0.5; + accuracy_mult_unwielded = 0.5 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"eZA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"eZO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"fao" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/west) +"fap" = ( +/obj/structure/surface/rack, +/obj/item/trash/hotdog, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"faE" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"faI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"fbb" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"fbg" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"fbA" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"fcc" = ( +/obj/structure/bed/stool{ + pixel_x = 9 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"fcf" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"fcs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = 9; + name = "colony PDT-L tracker computer"; + icon_state = "console"; + icon = 'icons/obj/structures/machinery/ares.dmi' + }, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = -6; + name = "colony security records computer"; + icon_state = "security" + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"fcC" = ( +/obj/structure/surface/rack, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner" + }, +/area/lv873/oob) +"fcI" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"fcN" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"fcR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/item/paper_bin/wy{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -4; + pixel_y = -5 + }, +/obj/item/tool/pen/clicky{ + pixel_y = 5; + pixel_x = 3; + layer = 3.10 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"fcV" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"fda" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"fdm" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/oob) +"fdo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/obj/item/tool/surgery/drapes{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"fdM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"feC" = ( +/obj/structure/urinal{ + pixel_y = 21 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"feG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"feV" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/landing_zones_disembark) +"ffb" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ffd" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"ffu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"ffB" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"ffQ" = ( +/turf/open/floor{ + icon_state = "chapel" + }, +/area/lv873/indoors/south/slums) +"ffR" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/flooded) +"fge" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/east) +"fgp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"fgJ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"fhg" = ( +/obj/structure/cable{ + icon_state = "2-6" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"fhn" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"fhE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"fhJ" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"fhR" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"fia" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"fib" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"fig" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 10; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"fiu" = ( +/obj/structure/prop/power_transformer, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fiv" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/offices/east) +"fiw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/indoors/east/slums) +"fiM" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/snacks/grown/goldapple{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/tool/candle{ + pixel_y = 10; + layer = 3.03 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"fiN" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"fiO" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic{ + pixel_y = 12 + }, +/obj/item/explosive/plastic, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"fjc" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"fjA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/item/storage/fancy/trading_card{ + pixel_y = 9; + pixel_x = -5 + }, +/obj/item/storage/fancy/trading_card{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"fjE" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"fjQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"fjZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/carpet, +/area/lv873/indoors/marshals/marshalsoffice) +"fkj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"fkw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"fkA" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/landing_zone_1) +"fkD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + locked = 1; + name = "\improper Garage Manway"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"fkE" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/flamer{ + pixel_y = 9 + }, +/obj/item/weapon/gun/flamer{ + pixel_y = 2 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"fkH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/southwest) +"fkJ" = ( +/turf/open/floor{ + icon_state = "whitebluecorner" + }, +/area/lv873/indoors/hospital/research/floor) +"flf" = ( +/obj/structure/machinery/light, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/indoors/operations/reception) +"flk" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"flK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_y = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"fmh" = ( +/obj/structure/machinery/power/port_gen/pacman/super{ + desc = "A portable generator for emergency backup power. This one is still murmuring along." + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/sign/safety/airtraffictower{ + pixel_x = 13; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_1) +"fmq" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"fmt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -2; + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -2; + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -5; + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -5; + pixel_x = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"fmE" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"fmW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8; + pixel_y = 12 + }, +/obj/structure/machinery/computer/general_air_control{ + dir = 8; + pixel_y = -2 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"fmY" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"fnb" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"fnZ" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/obj/structure/closet/bodybag, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"foh" = ( +/obj/structure/largecrate/random/mini/ammo, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"foj" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/colonist/workwear/green, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"fom" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 0 + }, +/obj/item/storage/briefcase, +/obj/effect/landmark/objective_landmark/close, +/obj/item/folder, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"fpl" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"fpy" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"fpB" = ( +/obj/item/stool, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"fpR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fpV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"fqk" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"fqB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bathmens{ + pixel_y = -32; + pixel_x = 7 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"fqY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 10; + pixel_y = 15 + }, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"frq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"frr" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/southwest/slums) +"frz" = ( +/turf/open/gm/coast/dirt/south, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"frG" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/prop/tableflag{ + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"frH" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot{ + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"frI" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/boots/n055{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/prop/magazine/boots/n055{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 8 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"fsb" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"fsi" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"fsN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"fsW" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"ftb" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"fto" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"ftr" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"fts" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/southeast/slums) +"ftw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"ftO" = ( +/obj/structure/surface/table, +/obj/item/trash/candle, +/obj/item/storage/bible{ + pixel_x = 17; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 4 + }, +/area/lv873/indoors/south/slums) +"ftT" = ( +/obj/structure/largecrate/hunter_games_ammo/mediocre, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"ftW" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_x = 1; + pixel_y = 18 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = -8; + pixel_y = 14 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"ftY" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 17 + }, +/obj/item/trash/wy_chips_pepper{ + pixel_x = -18; + pixel_y = 12 + }, +/obj/item/trash/eat{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/paper_bin{ + layer = 3.1; + pixel_x = 10; + pixel_y = 26 + }, +/obj/item/trash/crushed_cup, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"ftZ" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"fuc" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/obj/item/folder/white, +/obj/item/folder/red, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"fuh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/prize/mauler{ + pixel_x = 5; + pixel_y = 20 + }, +/obj/item/device/eftpos, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"fuu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/offices/east) +"fuw" = ( +/obj/structure/machinery/light, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"fux" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = 12; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/offices/northwest) +"fuI" = ( +/obj/structure/largecrate, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"fuK" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"fuO" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/pizza) +"fuQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/sign/poster/art{ + pixel_x = -25 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"fuX" = ( +/obj/item/shard, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"fvo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"fvZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"fwh" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"fwl" = ( +/obj/item/tool/kitchen/utensil/pspoon{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fwC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_y = 8 + }, +/obj/item/spacecash/c10, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"fwL" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/uscm_garrison/armory) +"fwS" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/jurossushi) +"fxE" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"fxI" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/colony_streets/south) +"fxN" = ( +/obj/structure/surface/rack, +/obj/item/paper/janitor{ + info = "A standard Travel Agency slogan about sending you somewhere 'exciting'." + }, +/obj/item/paper/janitor{ + pixel_x = 6; + info = "Tired of the jungle? Pay a visit to our snowy paradise on the planet of Ifrit! Now with a new Ski Resort in the making!" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"fxS" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/box/handcuffs, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"fxV" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"fyh" = ( +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"fyi" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southwest) +"fyk" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"fyH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/wood, +/area/lv873/oob) +"fyZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"fzi" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"fzk" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/gated_community_exterior) +"fzq" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel5a" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"fzr" = ( +/turf/open/gm/coast/dirt/south, +/area/lv873/indoors/flooded/west_apartments) +"fzF" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/surface/rack{ + density = 0; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup with the inscription, 'Big Bill Collins - First Place Willow Wisp Golf Course Tournament 2177 - Coldberry, Thedus'"; + name = "golf trophy"; + pixel_y = 31 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"fzQ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/m4a3{ + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/m4a3{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"fzT" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"fAz" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/plate{ + pixel_y = 9 + }, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"fAA" = ( +/obj/structure/bedsheetbin{ + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"fAJ" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/landing_zone_2) +"fBm" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fBD" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"fBL" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/dam/truck/cargo{ + pixel_y = 6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"fBW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/reception) +"fCc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"fCk" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel6c"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/oob) +"fCt" = ( +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"fCC" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"fCP" = ( +/obj/item/paper/crumpled, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/weapon/broken_bottle{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"fCT" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"fCV" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"fDr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Pizza Galaxy Diner" + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"fDB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/bathwomens{ + pixel_y = 32; + pixel_x = 7 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"fDJ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/ricepudding, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"fDK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"fDT" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"fEb" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/flooded/telecomms) +"fEd" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"fEj" = ( +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"fEm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"fEw" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fEI" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"fEP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c"; + pixel_y = -7; + pixel_x = -8 + }, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 25; + pixel_x = -8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + pixel_y = -7; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c"; + pixel_y = 8; + pixel_x = 7; + name = "water pipe"; + layer = 2.4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"fEV" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 7; + pixel_x = -10 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -1; + pixel_x = -10 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -6; + pixel_x = -9 + }, +/obj/item/trash/burger{ + pixel_x = 11 + }, +/obj/item/trash/hotdog, +/obj/item/trash/buritto{ + pixel_y = 9 + }, +/obj/item/trash/burger{ + pixel_y = -4; + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"fEW" = ( +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/obj/item/storage/fancy/cigar/matchbook/koorlander{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_y = -6; + pixel_x = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"fEZ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/east) +"fFi" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/south) +"fFk" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/prop/helmetgarb/gunoil{ + pixel_y = 3 + }, +/obj/item/tool/wrench{ + pixel_y = 13 + }, +/obj/item/paper/crumpled{ + pixel_x = -10; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"fFp" = ( +/obj/item/prop/colony/used_flare, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_2) +"fFw" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"fFN" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/southeast) +"fFQ" = ( +/obj/structure/window/framed/colony, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"fFY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"fGi" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"fGw" = ( +/obj/structure/surface/rack, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"fHi" = ( +/turf/open/floor/strata{ + dir = 6; + icon_state = "multi_tiles" + }, +/area/lv873/indoors/southwest/slums) +"fHq" = ( +/obj/structure/bed, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"fHY" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8; + pixel_y = 25 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"fIb" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 10 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4; + layer = 2.991 + }, +/obj/structure/surface/table/woodentable, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"fIh" = ( +/obj/item/frame/table/almayer, +/obj/item/shard, +/obj/structure/machinery/light_construct, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"fIu" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"fIS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"fJa" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/landing_zone_1) +"fJm" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"fJp" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"fJv" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/west) +"fJH" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"fJK" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"fJQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"fJV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"fKa" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"fKd" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"fKh" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"fKk" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/landing_zones_disembark) +"fKs" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"fLh" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"fLp" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"fLz" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"fLM" = ( +/obj/structure/barricade/handrail/sandstone/b{ + color = "#8CCE8F"; + dir = 8; + icon_state = "hr_stone_b"; + name = "plastic handrail" + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"fLS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fLT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"fLY" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"fMb" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"fMw" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/item/spacecash/c10{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"fMx" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"fMG" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"fMI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"fMN" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/lv873/indoors/hospital/outpatients_and_icu) +"fMP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 8; + layer = 3.2; + name = "Television set"; + network = null + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"fMS" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"fMW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "west_gate"; + name = "\improper Western Gate" + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"fNf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"fNn" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/cassette, +/obj/item/storage/pouch/cassette{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"fNp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/white{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/folder/black{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"fNq" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/closet/medical_wall{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"fOk" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"fOr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fOB" = ( +/obj/structure/machinery/floodlight, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fOK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/machinery/telecomms/hub{ + pixel_y = -1 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"fOM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"fPa" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fPg" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/outdoors/flooded_streets/west) +"fPi" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Weyland-Yutani Welcome Center"; + phone_id = "Restaurant 'On the House'" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"fPz" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"fPF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/west_apartments) +"fPJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"fPP" = ( +/obj/structure/prop/server_equipment/yutani_server/off, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"fPS" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"fQf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"fQl" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/almayer, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"fQt" = ( +/obj/item/frame/rack, +/obj/item/spacecash/c1{ + pixel_x = -10; + pixel_y = -9 + }, +/obj/item/trash/plate, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"fQC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bunkhouse" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"fQL" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"fRs" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "armysurplus_garage"; + name = "garage door opener"; + req_one_access_txt = "2;3;12;19"; + pixel_y = 32 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"fRu" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/lone_buildings/cheeseburger) +"fRx" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"fRy" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"fRQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 11; + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/hotdog, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"fRR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/curtain/medical{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"fRZ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8 + }, +/obj/structure/mirror{ + pixel_x = -25 + }, +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"fSq" = ( +/obj/structure/closet/crate/secure/mortar_ammo/mortar_kit, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fSv" = ( +/obj/structure/window_frame/hangar, +/obj/item/shard, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"fSA" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"fSE" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_1) +"fSF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"fSK" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fSZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/item/trash/crushed_cup{ + pixel_x = -5; + pixel_y = 14 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"fTh" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"fTk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/east) +"fTy" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/wood, +/area/lv873/oob) +"fTA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"fTF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"fTP" = ( +/obj/structure/machinery/door_control{ + pixel_x = -24; + pixel_y = 17; + id = "gasngear_garage"; + name = "long rest storage shutter control" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"fTT" = ( +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/door_control{ + pixel_x = -5; + pixel_y = 3; + name = "Emergency Tower Lockdown button"; + id = "tower" + }, +/obj/item/clothing/head/beret/eng, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"fTZ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fUn" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"fUo" = ( +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"fUJ" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + layer = 3.01 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/tool/soap{ + pixel_y = 0 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"fUK" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"fUV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_meal, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"fUX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/item/paper/crumpled{ + pixel_y = 18 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"fVf" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/shotgun/beanbag, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"fVq" = ( +/obj/structure/machinery/m56d_hmg/mg_turret, +/obj/structure/barricade/wooden, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fVF" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"fVH" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 6; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"fWd" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"fWl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"fWE" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell{ + dir = 8 + }, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"fWR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 8; + pixel_y = 0 + }, +/obj/structure/window, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"fXg" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"fXs" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -11; + pixel_y = 3 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fXw" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"fXF" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/east/slums) +"fXW" = ( +/obj/item/shard, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"fXY" = ( +/obj/item/reagent_container/food/snacks/cracker{ + pixel_x = -15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"fYo" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"fYB" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"fYE" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/flooded_streets/east) +"fYH" = ( +/obj/item/trash/chunk, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"fYK" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/hospital/road_north_west) +"fYM" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/magazine/boots/n054, +/obj/item/shard, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"fYO" = ( +/obj/structure/prop/tower, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"fYP" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 32 + }, +/obj/item/pipe{ + dir = 4; + layer = 3.5; + pixel_x = 1; + pixel_y = -12 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"fYU" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"fZa" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"fZK" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"fZL" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"fZM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"fZU" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"fZZ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"gae" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"gaj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "bungalow_gate"; + name = "\improper Executive Bunglalow Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/lz_sec_checkpoint) +"gaE" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"gbb" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/photocopier, +/obj/item/tool/surgery/scalpel{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"gbt" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"gbx" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/offices/northwest) +"gbI" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/absinthe{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"gbV" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = 1 + }, +/obj/item/clothing/under/suit_jacket/manager, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/liaison_suit/corporate_formal, +/obj/item/clothing/under/liaison_suit/ivy, +/obj/item/clothing/under/pj/red, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"gca" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"gch" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"gci" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/hospital/road_north_east) +"gcn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"gcA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"gcC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"gcU" = ( +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"gcX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"gdc" = ( +/obj/item/stack/sheet/wood, +/obj/item/reagent_container/food/snacks/donkpocket{ + name = "soaked Donk-pocket" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"gdz" = ( +/obj/item/frame/table/wood/poor, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"gdK" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"gdT" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"geO" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"geT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"gfa" = ( +/obj/item/tool/warning_cone{ + pixel_x = -14; + pixel_y = 18 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"gfi" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/iced_tea{ + pixel_y = 5; + pixel_x = -3 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"gfr" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"gfx" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"gfY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -6 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"ggb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor, +/area/lv873/indoors/southeast/slums) +"ggE" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/flaregun{ + pixel_y = 4 + }, +/obj/item/storage/belt/gun/flaregun{ + pixel_y = -4 + }, +/obj/item/weapon/gun/flare{ + pixel_y = 4 + }, +/obj/item/weapon/gun/flare{ + pixel_y = -4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"ggR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"ggW" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/disk, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ghi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"ghA" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/school) +"ghD" = ( +/obj/structure/sign/safety/radio_rad{ + pixel_x = -16; + pixel_y = -6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -16; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"ghH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"ghT" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"ghY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/prop/alien/hugger, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"giH" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"gjo" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"gju" = ( +/obj/structure/window, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_y = -5; + pixel_x = -8; + name = "colony outgoing communications computer" + }, +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_y = -5; + pixel_x = 9; + name = "colony telemetry computer" + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"gjI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door"; + welded = 1; + icon_state = "door_welded" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"gki" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"gkr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"gkU" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"gkV" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/hospital/break_garden) +"gld" = ( +/obj/item/trash/cigbutt, +/obj/item/frame/table/almayer, +/obj/item/stack/cable_coil, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"glf" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"glk" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"glB" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"glO" = ( +/obj/item/facepaint/lipstick/jade, +/obj/structure/mirror{ + pixel_y = 26 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"glP" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"gmv" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/reception) +"gmz" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip1-"; + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"gmG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"gmN" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"gmO" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"gmP" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/aerospace_control) +"gmW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp{ + pixel_x = 8; + pixel_y = 16 + }, +/obj/item/paper{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"gne" = ( +/turf/open/gm/dirt/brown{ + icon_state = "desert2" + }, +/area/lv873/oob) +"gnm" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"gns" = ( +/obj/item/trash/cigbutt, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"gnO" = ( +/obj/item/stack/tile/wood{ + amount = 25 + }, +/obj/structure/surface/table, +/obj/item/stack/tile/wood{ + amount = 25; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"gnS" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/west) +"gnU" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/lv873/indoors/ss_athens) +"goa" = ( +/obj/structure/grille, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"goh" = ( +/obj/item/trash/cigbutt, +/obj/item/stack/sheet/wood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/landmark/objective_landmark/close, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"gom" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"goD" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/east/slums) +"goG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"gpt" = ( +/obj/structure/machinery/power/apc, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"gqh" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/colony_streets/southwest) +"gqy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"gqI" = ( +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"gqX" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"grV" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"gse" = ( +/obj/item/spacecash/c10, +/turf/open/gm/coast/dirt/beachcorner2/south_west, +/area/lv873/indoors/flooded/west_apartments) +"gsD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"gsF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"gsI" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil{ + pixel_y = -5 + }, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"gsO" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"gtb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/prop/magazine/dirty/torn{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"gtm" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Businesses"; + phone_id = "Neil's Arcade" + }, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"gtJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"gtK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"gtQ" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"gtS" = ( +/obj/item/trash/boonie, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"guf" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/northeast) +"guk" = ( +/obj/item/clothing/head/soft/blue, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"gut" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/buritto{ + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"guJ" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"guM" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/barracks) +"guU" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 + }, +/area/lv873/indoors/ss_athens) +"gvc" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"gvo" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"gvH" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/west) +"gvJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/blood/empty, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"gvP" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"gvT" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/micro_laser/high, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"gwa" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"gwi" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/southwest) +"gwE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"gwH" = ( +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"gxd" = ( +/turf/open/gm/coast/dirt/beachcorner2/south_west, +/area/lv873/outdoors/flooded_streets/west) +"gxh" = ( +/obj/item/stool, +/obj/item/trash/hotdog, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"gxt" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"gxw" = ( +/obj/structure/bed{ + buckling_y = 13; + pixel_y = 13 + }, +/obj/structure/bed, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"gys" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"gyF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"gyO" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/operations/hallway/south) +"gyQ" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"gyV" = ( +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"gyY" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"gzd" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"gzX" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/jurossushi) +"gAa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"gAm" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"gAr" = ( +/obj/structure/surface/table, +/obj/item/book/manual/surgery, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_y = 18; + pixel_x = -8; + layer = 3.03 + }, +/obj/item/stack/medical/advanced/ointment{ + pixel_y = 18; + pixel_x = 6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"gAw" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"gAz" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Marshal's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/marshals/marshalsoffice) +"gAC" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"gAJ" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"gAN" = ( +/obj/structure/fence, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"gAO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"gAP" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/offices/southwest) +"gBv" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/item/stack/cable_coil, +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"gBx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"gBB" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/prop/alien/hugger, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"gBD" = ( +/obj/vehicle/powerloader/ft, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"gBH" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"gBJ" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/bungalow_manager_exterior) +"gBW" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 8 + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"gBY" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"gCl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pill_bottle/ultrazine, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"gCp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar{ + pixel_y = 6; + icon_state = "cigarcase0"; + storage_slots = 0 + }, +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 0; + max_storage_space = 0 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 9 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"gCC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "north_exit_gate"; + name = "\improper North Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"gCF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + layer = 3.25 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"gCG" = ( +/obj/item/shard, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"gCK" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/cmb/exterior) +"gCR" = ( +/obj/structure/window/framed/colony, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"gCS" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"gCX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gDj" = ( +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"gDo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gDr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + layer = 3.25 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"gDN" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"gDT" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/gibspawner/robot, +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"gDU" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"gDV" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/boots/n150, +/obj/item/tool/pen/red, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_y = 11 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"gEs" = ( +/obj/structure/closet/medical_wall{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"gEt" = ( +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -10 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/oob) +"gEz" = ( +/obj/structure/machinery/light, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"gFc" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/lv873/indoors/hospital/research/floor) +"gFi" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5 + }, +/obj/item/tool/surgery/drapes{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"gFP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/item/tool/stamp, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"gFT" = ( +/obj/structure/machinery/light, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/offices) +"gGi" = ( +/obj/structure/surface/rack, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/storage/pill_bottle/happy{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_y = -4 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"gGp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 6 + }, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"gGr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras{ + pixel_y = -4; + pixel_x = -18 + }, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Weyland-Yutani Welcome Center"; + phone_id = "Front Desk" + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"gGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"gGO" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"gHh" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"gHx" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/canteen) +"gHJ" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"gHL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/bungalow_manager_exterior) +"gIo" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/oob) +"gIF" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/lv873/indoors/ss_athens) +"gIG" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "west_nexus_garage"; + name = "garage door opener"; + pixel_x = -22; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -3 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"gIL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"gJa" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"gJc" = ( +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"gJn" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"gJq" = ( +/obj/structure/surface/rack{ + pixel_y = 0 + }, +/obj/item/storage/box/m94{ + pixel_y = 6 + }, +/obj/item/storage/box/m94{ + pixel_y = 2 + }, +/obj/item/storage/box/m94{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"gJJ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"gJK" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"gJM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"gJP" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southeast) +"gKg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gKh" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"gKw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Flynn's Bar Backroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"gKy" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell{ + dir = 1 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"gKz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"gKI" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"gKM" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = -8 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = 9 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"gLa" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"gLb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"gLs" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"gLw" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/oob) +"gLG" = ( +/obj/structure/machinery/telecomms/server, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"gMa" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"gMF" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"gMS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/oob) +"gMX" = ( +/obj/structure/machinery/door/airlock/engineering/colony{ + dir = 1; + name = "\improper Corporate Chief Technician's House" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"gMY" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4; + layer = 3.01 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"gMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/transmitter/colony_net{ + dir = 4; + pixel_x = -15; + phone_category = "Businesses"; + phone_id = "Wey-Yu Corporate Hostel Front Desk" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"gNe" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv873/indoors/lz_sec_checkpoint) +"gNf" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"gNo" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gNB" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"gNN" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/cmb/exterior) +"gNR" = ( +/turf/open/floor, +/area/lv873/indoors/marshals/garage) +"gOb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/magazine/dirty/torn, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"gOd" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/tcomms) +"gOo" = ( +/obj/item/ammo_magazine/pistol/skorpion, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"gOs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/canteen) +"gPk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/tool/surgery/scalpel{ + pixel_x = -1; + pixel_y = -11 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"gPv" = ( +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"gPw" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"gPQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/northeast) +"gQI" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"gRs" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"gRK" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"gRV" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 7 + }, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"gRZ" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gSH" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/east) +"gSS" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"gTs" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"gTt" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat{ + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"gTv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/boots/n160{ + name = "Editor's Copy of Boots!: Issue No.160" + }, +/obj/item/tool/pen/red/clicky, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"gTE" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "clf_garage_2"; + name = "garage door opener"; + pixel_x = 6; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "clf_garage_1"; + name = "garage door opener"; + pixel_x = -6; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"gUe" = ( +/obj/item/frame/table/almayer, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"gUg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"gUi" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"gUu" = ( +/turf/open/gm/road, +/area/lv873/outdoors/flooded_streets/west) +"gUX" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"gUY" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 38 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ + pixel_x = -7; + pixel_y = 33 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/prop/helmetgarb/rosary{ + layer = 4.3; + pixel_x = 20 + }, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/chapel_carpet, +/area/lv873/oob) +"gVa" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel2a"; + layer = 3.1; + pixel_y = 20 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"gVo" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"gVH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"gVP" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 5 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gVS" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/floor/wood, +/area/lv873/oob) +"gVZ" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southeast) +"gWk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + name = "\improper USCMC Marine Hall" + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"gWI" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"gXl" = ( +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -3; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/hospital/road_north_west) +"gXq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lz_sec_checkpoint) +"gYk" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/oob) +"gYm" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = 4; + pixel_y = 11 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"gYB" = ( +/obj/structure/window_frame/hangar, +/obj/effect/spawner/gibspawner/xeno, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"gYF" = ( +/obj/structure/surface/rack, +/obj/item/device/toner{ + pixel_y = 3 + }, +/obj/item/device/toner{ + pixel_y = -5 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"gYW" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"gYY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"gZi" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"gZy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"gZU" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"haa" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"had" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"hah" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/lz_sec_checkpoint) +"has" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"hau" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"hav" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"hay" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/lv873/oob) +"haV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"haZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"hbr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + dir = 9; + icon_state = "red" + }, +/area/lv873/indoors/marshals/interrogation) +"hbF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weymart) +"hbK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/donut/jelly{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"hbY" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"hcr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"hcv" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/wood, +/area/lv873/indoors/marshals/marshalsoffice) +"hcw" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"hcD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lz_sec_checkpoint) +"hcT" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"hdu" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"hdv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "packaged_food_store_shutters"; + name = "\improper McAlley's Packaged Food Stand Shutters" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"hdA" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/landing_zones_disembark) +"hdC" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"hdR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"hdT" = ( +/turf/open/gm/coast/dirt/beachcorner/south_west, +/area/lv873/outdoors/flooded_streets/west) +"hdY" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/oob) +"hen" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"hex" = ( +/obj/item/trash/tray, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"heP" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southwest) +"heV" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"hfC" = ( +/turf/open/gm/coast/dirt/beachcorner/north_east, +/area/lv873/outdoors/flooded_streets/east) +"hfD" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/curtain/red{ + pixel_x = -32 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"hgo" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"hgt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"hgu" = ( +/obj/structure/largecrate/random, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"hgM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"hgN" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 19 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"hgU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 5 + }, +/obj/item/tool/pen/fountain, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"hhN" = ( +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/structure/cable{ + icon_state = "5-8" + }, +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"hhQ" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"hhR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Research Wing Reception" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/reception) +"hhU" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/east/slums) +"hij" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_west, +/area/lv873/outdoors/flooded_streets/east) +"hiK" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/oob) +"hiP" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"hjm" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/colonist/workwear/green, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"hjI" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southeast) +"hjO" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"hjP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"hjV" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/maintenance/north) +"hkd" = ( +/obj/item/frame/rack, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"hks" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"hkF" = ( +/obj/item/ammo_magazine/m60{ + max_rounds = 0; + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"hkN" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"hlb" = ( +/obj/structure/bed/chair/comfy/black{ + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"hlf" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"hlh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/newspaper{ + name = "half-finished screenplay - working title: invisible aliens hunt down army badasses in the 20th century"; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"hlk" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"hlB" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/trapped_house) +"hlF" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/southeast) +"hlT" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/clf_barracks) +"hlU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"hmi" = ( +/obj/item/paper_bin/uscm, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"hmn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southeast) +"hmt" = ( +/obj/structure/fence, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"hmF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"hmL" = ( +/obj/structure/surface/rack, +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"hnc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laurie's Laundromat" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"hni" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"hnj" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"hnx" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/mainhall) +"hnB" = ( +/obj/structure/janitorialcart, +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"hnF" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_y = -32; + pixel_x = 7 + }, +/obj/structure/sign/safety/bathmens{ + pixel_y = 32; + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"hnH" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10"; + pixel_x = -2; + pixel_y = 12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"hnL" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"hoj" = ( +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"hoX" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"hpu" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"hpw" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"hpz" = ( +/obj/item/trash/liquidfood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"hpC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 16; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"hpX" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/lv873/indoors/hospital/research/floor) +"hqg" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"hqq" = ( +/obj/structure/sign/poster/clf{ + pixel_y = 31 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"hre" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/south) +"hrs" = ( +/obj/structure/prop/dam/truck/damaged{ + pixel_y = 6; + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"hru" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/operations/serverroom) +"hrC" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"hrO" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/snappops{ + pixel_y = 6 + }, +/obj/item/storage/box/snappops{ + pixel_y = 3 + }, +/obj/item/storage/box/snappops, +/obj/item/storage/box/snappops{ + pixel_y = -3 + }, +/obj/item/storage/box/snappops{ + pixel_y = -6 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"hrQ" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars{ + pixel_y = -3 + }, +/obj/item/device/binoculars{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"hsa" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"hsw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"hsA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/northeast/slums) +"hsE" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"hsG" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/southeast/slums) +"hsQ" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"hsS" = ( +/obj/item/trash/candy{ + pixel_y = 11 + }, +/obj/item/trash/cheesie, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"hsZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"hte" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "north_garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"htv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box/empty, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"htJ" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"htP" = ( +/obj/item/stack/sheet/metal, +/obj/item/frame/rack, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"huq" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/northeast) +"hus" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"hut" = ( +/obj/structure/filingcabinet, +/obj/item/newspaper{ + pixel_y = 0; + name = "hostel lodger list m7-2182" + }, +/obj/item/newspaper{ + pixel_y = 0; + name = "hostel lodger list m6-2182" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"huA" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"huF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor, +/area/lv873/indoors/power_station) +"huK" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/hospital/road_north_west) +"hvi" = ( +/obj/item/weapon/gun/m60{ + damage_mult = 0.5; + current_mag = null + }, +/obj/item/ammo_magazine/m60{ + max_rounds = 0; + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/militia/bucket, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"hvs" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"hvw" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"hvx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "north_exit_gate"; + name = "\improper North Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"hvI" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"hvV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"hwa" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/southeast) +"hwO" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"hwR" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/southwest) +"hwT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pizza Galaxy Kitchen" + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"hxg" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/mainhall) +"hxl" = ( +/obj/structure/surface/table, +/obj/item/pizzabox/meat{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"hxD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"hxS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/indoors/operations/hallway/south) +"hxX" = ( +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"hyh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"hyK" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/gated_community_exterior) +"hyN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 11 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"hyO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"hyQ" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 6; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/landing_zone_1) +"hyT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"hzi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"hzl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"hzz" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/faxmachine/uscm{ + pixel_y = 6 + }, +/obj/item/newspaper{ + pixel_y = -3; + name = "half-finished report on colonist disappearances and unknown hostile xeno species m7-2182"; + pixel_x = -6 + }, +/obj/item/newspaper{ + pixel_y = -3; + name = "correspondence on understrength uscm garrison and increasing gang activity m6-2182"; + pixel_x = 6 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"hzA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/camera, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"hzT" = ( +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = -6 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"hzX" = ( +/obj/item/weapon/gun/rifle/mar40/carbine{ + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"hAi" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/northeast) +"hAl" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y"; + name = "pneumatic delivery system pipe"; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"hAM" = ( +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Pole Museum"; + phone_id = "Manager's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"hAO" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"hBf" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"hBn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"hBW" = ( +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"hCg" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "gated_community"; + name = "gate button"; + pixel_x = -28; + pixel_y = 0; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/gated_community_exterior) +"hCq" = ( +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"hCv" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"hCG" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/colonist/workwear/pink, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"hCM" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_x = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"hCP" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"hDe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"hDj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/hospital/reception) +"hDm" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/canteen) +"hDw" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/hospital/road_north_east) +"hDz" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 5 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"hDD" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/chef{ + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/clothing/suit/chef/classic{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/head/chefhat{ + pixel_y = 7; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"hDQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"hDV" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/polemuseum) +"hEr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"hEx" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4; + layer = 2.991 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4; + layer = 2.991 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"hEF" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/west) +"hEI" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"hEJ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"hEU" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"hEZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/device/cassette_tape/ocean{ + pixel_x = 6 + }, +/obj/item/device/walkman, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"hFe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"hFn" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/west) +"hFr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"hFt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"hFz" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/obj/item/folder/yellow, +/obj/item/folder/black, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"hFA" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/cable_coil/orange, +/obj/item/stack/cable_coil/orange{ + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"hFV" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "west_gate"; + name = "gate button"; + pixel_x = -7; + pixel_y = 27; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"hGm" = ( +/obj/structure/fence, +/turf/open/gm/coast/dirt/beachcorner/south_east, +/area/lv873/outdoors/flooded_streets/east) +"hGr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = -10; + pixel_y = 9 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 12; + pixel_x = 5 + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_x = 10 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"hGs" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"hGv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"hGx" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/west) +"hGz" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "uscm_armory"; + name = "armory blast door opener"; + pixel_x = 9; + pixel_y = 11; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"hGB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"hGK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"hGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/reception) +"hHE" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel6c"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"hHG" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/travel_agency) +"hHO" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"hHQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/organ/eyes/prosthetic, +/obj/item/organ/liver/prosthetic, +/obj/item/reagent_container/food/drinks/soymilk, +/obj/item/reagent_container/food/snacks/grown/soybeans, +/obj/item/reagent_container/food/snacks/grown/soybeans, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"hHV" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"hIb" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"hIk" = ( +/obj/structure/sign/poster/blacklight{ + pixel_x = 32 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"hIp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"hIu" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"hII" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/marshalsoffice) +"hIT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/gm/road, +/area/lv873/oob) +"hJC" = ( +/obj/item/tool/crowbar/red, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"hJG" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/item/ammo_magazine/shotgun/beanbag{ + pixel_y = -7; + pixel_x = 6 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"hJL" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/prop/colony/game, +/turf/open/floor/wood, +/area/lv873/oob) +"hJP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"hJS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/absinthe{ + pixel_y = 3; + pixel_x = -7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 4; + pixel_x = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"hJX" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/item/trash/cigbutt{ + pixel_y = 11; + pixel_x = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"hKc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"hKm" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/stack/sheet/metal/small_stack, +/obj/item/stack/cable_coil{ + layer = 3.03; + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/stack/cable_coil{ + layer = 3.03; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"hKr" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"hKt" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"hKz" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 2.98; + pixel_x = -1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"hKI" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"hLa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"hLj" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel6b"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/oob) +"hLU" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/item/folder/white, +/obj/item/folder/red, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"hMT" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"hMY" = ( +/obj/structure/filingcabinet, +/obj/item/folder, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"hNa" = ( +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/cells) +"hNf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"hNq" = ( +/obj/structure/sign/safety/south{ + pixel_y = -32; + pixel_x = 1 + }, +/obj/structure/sign/safety/reception{ + pixel_y = -32; + pixel_x = 14 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"hNt" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/gibspawner/robot, +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"hNv" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"hOt" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"hOv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southeast) +"hOz" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 34 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"hOF" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/landing_zone_1) +"hOT" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"hPh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 9; + pixel_y = 26 + }, +/obj/structure/machinery/autodoc_console, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"hPk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"hPJ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"hPZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"hQf" = ( +/obj/item/clipboard, +/obj/item/tool/pen/clicky{ + pixel_y = 2; + pixel_x = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"hQi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"hQp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/xenoautopsy{ + pixel_y = 14; + name = "jar shelf" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"hQs" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"hQJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"hQQ" = ( +/obj/item/reagent_container/food/snacks/cheesewedge/extramature, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"hRp" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"hRz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + name = "\improper Liam's Automobile Repair Shop Breakroom" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"hRM" = ( +/obj/item/trash/cigbutt, +/obj/structure/sign/poster/blacklight{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/obj/effect/decal/hefa_cult_decals/d96{ + pixel_y = -17; + pixel_x = -14; + color = "#FF0000" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"hRQ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"hRR" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = -25 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"hRU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -10 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"hSf" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"hSl" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"hSn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/item/newspaper{ + name = "report on slum gang activity m-7 yr-2182" + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"hSu" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/item/spacecash/c100{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"hSv" = ( +/obj/effect/decal/remains/robot, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"hSx" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel4a" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"hTw" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -9; + pixel_y = 26 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"hUj" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/oob) +"hUk" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"hUn" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"hUp" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"hUs" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"hUv" = ( +/obj/item/trash/hotdog, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"hUZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + pixel_y = -7; + pixel_x = -25 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c"; + pixel_y = -7; + pixel_x = 7 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c"; + pixel_y = 8; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"hVf" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"hVj" = ( +/obj/effect/alien/weeds/node, +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"hVz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"hVA" = ( +/obj/structure/surface/rack, +/obj/item/tool/pen/clicky{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/tool/pen/green/clicky{ + pixel_y = 2; + pixel_x = -1 + }, +/obj/item/tool/pen/red/clicky{ + pixel_y = 2; + pixel_x = 4 + }, +/obj/item/tool/pen/red/clicky{ + pixel_y = -6; + pixel_x = 4 + }, +/obj/item/tool/pen/green/clicky{ + pixel_y = -6; + pixel_x = -1 + }, +/obj/item/tool/pen/clicky{ + pixel_y = -6; + pixel_x = -6 + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"hVN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"hVP" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southeast) +"hWa" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"hWh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/hallway/north) +"hWn" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced, +/obj/item/clothing/accessory/armband/engine, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"hWu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor{ + dir = 10; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"hWC" = ( +/turf/open/gm/road, +/area/lv873/outdoors/cmb/exterior) +"hWH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 9; + pixel_x = -1 + }, +/obj/item/tool/pen, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"hWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + pixel_y = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 8; + pixel_y = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"hWS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"hXl" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"hXn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"hXp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"hXF" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/southwest/slums) +"hXK" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"hYm" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/rebreather{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"hYt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"hYA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"hYD" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"hYI" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"hYX" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"hZa" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"hZb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"hZv" = ( +/obj/item/shard, +/turf/open/floor/carpet, +/area/lv873/indoors/northeast/slums) +"hZz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"hZI" = ( +/obj/item/bedsheet/captain, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"hZP" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"hZT" = ( +/obj/structure/surface/table, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"hZV" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"iat" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"iaH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"iaK" = ( +/obj/structure/prop/dam/truck/damaged, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"iaU" = ( +/obj/item/bedsheet/captain, +/obj/item/stack/sheet/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"iaW" = ( +/obj/item/stool, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"ibo" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"ibx" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"ibz" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/item/ashtray/plastic{ + pixel_x = -13; + pixel_y = 10 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"ibG" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + locked = 1; + name = "\improper Jeppson's Memorial Hospital Pharmacy" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"ibP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"ibS" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"ibZ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/flooded_streets/west) +"ica" = ( +/obj/structure/machinery/telecomms/receiver, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"ici" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/trash/wy_chips_pepper{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_x = 4; + pixel_y = 20 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"ick" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"ics" = ( +/obj/item/trash/cigbutt, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southwest) +"icw" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"icy" = ( +/obj/item/storage/bag/trash, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"icJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"icO" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Security Checkpoint" + }, +/turf/open/floor/wood, +/area/lv873/oob) +"idm" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/grown/orange{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/reagent_container/food/snacks/grown/orange{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/reagent_container/food/snacks/grown/orange{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/grown/orange{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"idp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"idu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"idz" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = 32 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"idK" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_y = 8 + }, +/obj/item/storage/box/gloves, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"iej" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"ieG" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"ieN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/flooded_streets/east) +"ifp" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"ifw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/broken, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"ifJ" = ( +/turf/closed/wall, +/area/lv873/indoors/southeast/slums) +"ifW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null + }, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"igs" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"igw" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/item/trash/crushed_cup, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"igJ" = ( +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"igM" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"ihj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"ihA" = ( +/turf/closed/wall/wood/plain, +/area/lv873/oob) +"ihH" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"ihM" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/landing_zone_1) +"ihO" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/cmb/exterior) +"ihT" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Weyland-Yutani Welcome Center 'Alexandria'" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"ihY" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/hospital/break_garden) +"iiC" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"iiO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"iiU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/glasses/regular/hipster, +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/lobby) +"ijh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = 9 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"ijj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"ijq" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"ijx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Weyland-Yutani Welcome Center 'Alexandria' Restaurant 'On the House'" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/canteen) +"ijC" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"ijJ" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"ijU" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/hospital/road_north_west) +"ikc" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"ikm" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"ikB" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/item/stack/rods, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"ikS" = ( +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"ikT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"ilc" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/south/slums) +"ilT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/hallway/west) +"ima" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/east) +"inc" = ( +/turf/closed/wall, +/area/lv873/indoors/flooded/weymart) +"ine" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/bar, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/absinthe{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = -1; + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"inh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + dir = 1; + locked = 1; + name = "\improper Garage Manway" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"ini" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 7 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"inn" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"iny" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Corporate Hostel Office"; + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"inA" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"inB" = ( +/obj/structure/machinery/space_heater/radiator{ + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"inD" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"inM" = ( +/obj/item/stool, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"inP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"inZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"ioi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"ioF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ioJ" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"ioK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 4; + pixel_x = 15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"ioP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"ipj" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -8; + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -8; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"ipp" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/xeno_spawn, +/obj/structure/sign/poster/clf{ + pixel_y = 31 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"ipw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"ipO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/reception) +"ipS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/vehicles/crawler{ + dir = 1; + icon_state = "crawler_covered_bed"; + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"iqg" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"iqw" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 29 + }, +/obj/structure/reagent_dispensers/fueltank/gas{ + pixel_y = 0 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"iqy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/mirror{ + pixel_y = -27 + }, +/obj/item/facepaint/lipstick/maroon, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"iqT" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"irg" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_y = 9 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/east/slums) +"irh" = ( +/turf/open/floor/wood, +/area/lv873/indoors/marshals/marshalsoffice) +"irq" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"irQ" = ( +/obj/item/storage/secure/safe{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/storage/secure/safe{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"isa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"isj" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/west) +"iss" = ( +/turf/open/gm/coast/dirt/north, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"isx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/snack_bowl, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_y = 14 + }, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"isB" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/east) +"isC" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"isM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + locked = 1; + name = "\improper Jeppson's Memorial Hospital Outpatient Care" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"itg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"ith" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"itm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"itH" = ( +/obj/structure/bed, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"itZ" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"iue" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"iug" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"iuo" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine/officer/intel, +/obj/item/clothing/suit/storage/marine/light, +/obj/item/clothing/head/helmet/marine/jungle, +/obj/item/storage/pouch/machete/full, +/turf/open/floor{ + dir = 4; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"iuJ" = ( +/obj/structure/largecrate/supply/explosives/mortar_flare, +/turf/open/floor/wood, +/area/lv873/oob) +"iuK" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"iuU" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = 3 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"iuV" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/northeast) +"iuY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"iuZ" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/obj/structure/bed/sofa/south/grey/left, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/clothing/head/chefhat{ + pixel_y = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"ivd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"ivi" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"ivu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + pixel_x = 9 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = 11 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/effect/landmark/objective_landmark/medium{ + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"ivL" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"ivV" = ( +/obj/structure/prop/dam/truck{ + dir = 4 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"iwf" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"iwj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" + }, +/area/lv873/indoors/ss_athens) +"iwy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"iwz" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/uscm_garrison/io_office) +"iwI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"ixo" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"ixz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 5; + pixel_x = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"ixE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"ixK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y"; + name = "pneumatic delivery system pipe"; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"ixN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/operations/offices/southwest) +"ixQ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"ixY" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/west) +"iya" = ( +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"iyb" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"iyd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"iye" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"iyg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"iyl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"iyC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/serverroom) +"iyF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"iyI" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"izd" = ( +/obj/item/tool/screwdriver, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"izl" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"izr" = ( +/obj/structure/machinery/shower{ + pixel_y = 19 + }, +/obj/structure/curtain{ + icon_state = "shower" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"izO" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/west) +"izY" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"iAe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"iAw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/applecakeslice, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"iAE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/hospital/break_garden) +"iAM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic{ + pixel_x = 9 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 16 + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 17; + layer = 3 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + desc = "A small computer hooked up into the ship's computer network. It appears to have a veteran message board logged in on it"; + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"iAP" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"iAS" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"iBd" = ( +/obj/structure/largecrate/random, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"iBg" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/east/slums) +"iBm" = ( +/obj/item/storage/bag/plasticbag, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"iBr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Steve's Wey-Net Cafe" + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"iBu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/coast/dirt/beachcorner/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"iBx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door"; + welded = 1; + icon_state = "door_welded" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"iBV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"iBY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"iCf" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"iCv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/prop/alien/hugger, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"iCC" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "cargo_ship_l"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 28; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"iCD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"iCP" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/folder/red, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"iCV" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/west) +"iDo" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"iEc" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"iEh" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/m4a3{ + pixel_y = 4 + }, +/obj/item/storage/belt/gun/m4a3{ + pixel_y = -5 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"iEj" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/plasteel/large_stack{ + pixel_y = 8 + }, +/obj/item/stack/sheet/plasteel/large_stack{ + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"iEw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -10 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"iEx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/pizza) +"iEE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + pixel_x = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = -15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/xenobiological_research) +"iEF" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/bungalow_manager_exterior) +"iEI" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_1) +"iFo" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/reception) +"iFv" = ( +/obj/structure/largecrate/supply/ammo/m41a{ + pixel_y = 12 + }, +/obj/structure/largecrate/supply/ammo/m41a{ + pixel_y = 21 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"iFw" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/phosphorus/clf{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/explosive/grenade/phosphorus/clf{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"iFM" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"iFQ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/rocket, +/obj/item/explosive/mine{ + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"iFS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"iGf" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/shotgun, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"iGI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"iGL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"iGY" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/serverroom) +"iGZ" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/machinery/vending/cigarette/colony{ + layer = 3.25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"iHb" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/landing_zone_1) +"iHU" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"iIe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"iIf" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/surgery, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"iIm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hospital_garage"; + name = "\improper Hospital Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"iIu" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"iIB" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/flooded_streets/west) +"iIN" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/barricade/handrail/sandstone/b{ + color = "#8CCE8F"; + dir = 4; + icon_state = "hr_stone_b"; + name = "plastic handrail" + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"iIO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"iJr" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"iJJ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"iJT" = ( +/obj/item/weapon/baseballbat/metal, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible/booze{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"iJZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + dir = 8; + pixel_y = 0 + }, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "uscm_garrison"; + name = "gate button"; + pixel_y = 12; + req_one_access_txt = "2;3;12;19" + }, +/obj/item/device/taperecorder{ + pixel_y = -5 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"iKb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + pixel_x = -9 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = -11 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = -9 + }, +/obj/effect/landmark/objective_landmark/medium{ + pixel_x = 5 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"iKd" = ( +/obj/item/stool, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"iKj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"iKl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 9; + pixel_y = -6 + }, +/obj/item/clipboard{ + pixel_x = -7 + }, +/obj/item/paper{ + pixel_x = -7 + }, +/obj/item/tool/pen/blue{ + pixel_x = -8 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"iKz" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze{ + pixel_y = 9 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 21; + pixel_x = 6 + }, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Businesses"; + phone_id = "Wey-Yu Travel Agency" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"iKB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/sign/poster{ + pixel_y = 34 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"iKC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -10; + pixel_y = 21 + }, +/obj/item/prop/colony/folded_bedroll{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/prop/colony/folded_bedroll{ + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/lv873/oob) +"iKQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/item/tool/shovel/etool/folded{ + pixel_y = -6; + pixel_x = 5 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"iKU" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/south/slums) +"iLj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"iLl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = 0; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"iLL" = ( +/obj/vehicle/powerloader, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"iMb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/oob) +"iMn" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"iME" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"iMP" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"iNe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"iNg" = ( +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"iNi" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"iNv" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = 7 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = -1 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_y = 3 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_y = -7 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"iNU" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"iNV" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/south) +"iOb" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/lz_sec_checkpoint) +"iOf" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"iOm" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = -17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"iOy" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"iOG" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/mainhall) +"iOI" = ( +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"iOK" = ( +/obj/structure/machinery/power/port_gen/pacman{ + pixel_y = -13 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/oob) +"iON" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"iOR" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"iOY" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/south) +"iPl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/indoors/hospital/research/floor) +"iPu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"iPy" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/trash/cigbutt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"iPM" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan1" + }, +/area/lv873/indoors/ss_athens) +"iPN" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"iPS" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/kepler, +/obj/item/trash/waffles, +/obj/item/trash/wy_chips_pepper, +/obj/item/trash/kepler/flamehot, +/obj/item/trash/crushed_cup, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"iQo" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"iQB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/snack_bowl, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"iQR" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"iRm" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"iRp" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"iRI" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/southwest) +"iRJ" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/obj/item/weapon/gun/shotgun/type23, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"iRN" = ( +/obj/item/spacecash/ewallet{ + pixel_y = 3; + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"iSa" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"iSd" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"iSj" = ( +/obj/item/stool{ + pixel_y = 12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"iSm" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"iSx" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/space_up{ + pixel_y = -3; + pixel_x = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"iSI" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"iSL" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"iSP" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"iSU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper South-Western Power Substation" + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"iTd" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"iTe" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"iTl" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/item/clothing/under/marine, +/obj/item/clothing/under/marine, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"iTw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/trash/burger{ + pixel_y = -6 + }, +/obj/item/trash/buritto, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"iTI" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"iTN" = ( +/obj/structure/bed/chair/office/dark, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"iTO" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/item/spacecash/c100{ + pixel_y = 10 + }, +/obj/item/toy/deck/uno{ + pixel_y = 14 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"iTX" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/bungalow_manager_exterior) +"iUh" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/neils_arcade) +"iUS" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/east/slums) +"iVb" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"iVc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"iVA" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m16{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/m16{ + pixel_y = 0 + }, +/obj/item/weapon/gun/rifle/m16{ + pixel_y = -7 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"iVG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"iWa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/indoors/operations/hallway/south) +"iWl" = ( +/obj/item/trash/eat, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"iWu" = ( +/obj/structure/cargo_container/grant/leftmid, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"iWD" = ( +/obj/item/stool{ + pixel_x = -17 + }, +/obj/item/stool{ + pixel_y = 5 + }, +/obj/item/stool{ + pixel_x = 15; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"iWG" = ( +/obj/structure/largecrate/random/case, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"iWY" = ( +/obj/structure/largecrate{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"iXf" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/helmet/riot, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"iXx" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/serverroom) +"iXC" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/obj/structure/machinery/bot/medbot{ + desc = "He has seen that which cannot be spoken of."; + name = "The Assistant" + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 27; + pixel_y = 4 + }, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"iXK" = ( +/turf/closed/wall/r_wall, +/area/lv873/landing_zone_2) +"iXM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"iXO" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"iXS" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"iXX" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/storage/box/packet/airburst_smoke{ + pixel_x = -5; + pixel_y = 18 + }, +/turf/open/floor/prison{ + dir = 10; + icon_state = "whitegreenfull" + }, +/area/lv873/oob) +"iYh" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"iYi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"iYn" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"iYP" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"iYV" = ( +/obj/item/frame/light_fixture/small{ + anchored = 1; + desc = "Used for holding a shotgun in place. Someone forgot to set this one."; + layer = 3.1; + name = "trap frame"; + pixel_x = -8; + pixel_y = -7 + }, +/obj/item/frame/light_fixture{ + anchored = 1; + desc = "Used for holding a shotgun in place. Someone forgot to set this one."; + name = "trap frame"; + pixel_y = -9 + }, +/obj/item/weapon/gun/shotgun/merc{ + pixel_y = -4 + }, +/obj/item/frame/light_fixture/small{ + anchored = 1; + desc = "Used for holding a shotgun in place. Someone forgot to set this one."; + layer = 3.1; + name = "trap frame"; + pixel_x = 6; + pixel_y = -7 + }, +/obj/structure/surface/table/woodentable/poor, +/obj/structure/prop/ice_colony/ground_wire{ + pixel_x = 5 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"iZc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"iZp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"iZH" = ( +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/mineral_door/resin/thick, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/serverroom) +"iZR" = ( +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"jas" = ( +/obj/structure/machinery/vending/cola, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/southwest) +"jat" = ( +/turf/closed/wall, +/area/lv873/indoors/northeast/slums) +"jaI" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"jaJ" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/chips, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"jaQ" = ( +/obj/item/trash/cigbutt{ + pixel_y = 5 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"jbo" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"jbH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"jbN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wet_sign, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"jbR" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on sudden destruction of colony infrastructure m-7 yr-2182"; + pixel_x = 7 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on power storage capabilities m-7 yr-2182"; + pixel_x = -7 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"jcF" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"jcP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"jdj" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"jdk" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/research/reception) +"jdu" = ( +/obj/structure/bed/chair/comfy/black, +/obj/item/clothing/head/cmcap, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"jdw" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"jdQ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/dam/truck/cargo{ + dir = 4; + pixel_y = 6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"jdR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"jeg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"jez" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cargo_garage"; + name = "\improper Powerloader Storage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"jeQ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"jfh" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/meat/synthmeat{ + pixel_y = -2 + }, +/obj/item/reagent_container/food/snacks/meat/synthmeat{ + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/meat/synthmeat{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/meat/synthmeat{ + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"jfH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -9 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"jfR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"jga" = ( +/obj/structure/surface/table{ + flipped = 1 + }, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"jgq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/north) +"jgr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"jgz" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"jgK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"jgS" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"jgV" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"jgW" = ( +/obj/structure/grille, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"jhF" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"jim" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"jiq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"jiv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"jiD" = ( +/obj/structure/sign/prop3{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"jiV" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"jjw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "CLFMedbay"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"jjy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Kitchen" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"jjz" = ( +/obj/structure/bed/chair, +/obj/item/clothing/head/hardhat, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 3 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"jjZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"jke" = ( +/obj/effect/alien/weeds/node, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"jkl" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/blackskirt, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"jko" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"jkv" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -13; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"jkC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/tool/candle{ + pixel_y = -6 + }, +/obj/item/reagent_container/food/snacks/grown/goldapple{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_y = -13; + pixel_x = -1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"jkD" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"jkL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"jkR" = ( +/obj/item/stool, +/turf/open/asphalt/cement, +/area/lv873/oob) +"jkZ" = ( +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"jll" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/hallway/north) +"jls" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/crowbar/red{ + pixel_y = 2 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"jlE" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"jlN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southeast) +"jlP" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"jlS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"jma" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"jmg" = ( +/obj/item/ammo_magazine/m60{ + max_rounds = 0; + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"jmk" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"jml" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/burger{ + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cheeseburger) +"jmz" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/tool/screwdriver{ + pixel_x = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"jmI" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"jmJ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/east/slums) +"jmQ" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/south/slums) +"jmX" = ( +/obj/item/storage/toolbox, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"jni" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/aerospace_control) +"jns" = ( +/obj/item/shard, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"jnY" = ( +/obj/item/tool/wrench, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"job" = ( +/obj/item/stack/sheet/wood{ + anchored = 1; + density = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"joh" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"joi" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"jop" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"joq" = ( +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"jos" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"jou" = ( +/obj/item/circuitboard, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"jov" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"joz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"joM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "South_Slum_Garage"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/southeast/slums) +"joR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"jpf" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/cmb/exterior) +"jpj" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"jpA" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1; + name = "\improper SS Athens Bridge" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"jpI" = ( +/obj/structure/bed/chair, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"jpX" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"jqa" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"jqe" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"jqk" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"jqz" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"jqK" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"jqZ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"jrH" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"jrI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/flask/weylandyutani, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"jrT" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/oob) +"jrY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"jsi" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/pizza) +"jsn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 32 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"jsA" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"jsF" = ( +/obj/effect/alien/resin/spike, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"jsP" = ( +/obj/item/trash/cigbutt, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"jtg" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"jtt" = ( +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"jtu" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/reception) +"jtE" = ( +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"jtH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"jug" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/arm/l_arm, +/obj/item/clothing/head/CMB, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"juy" = ( +/obj/structure/surface/table, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/obj/item/prop/magazine/book{ + name = "The Coming Liberation - The Insurrectionists Manifesto"; + desc = "This book appears to be battered and decomposing, it must have been carried in some very poor conditions over the years." + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"juX" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/east) +"jvu" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/offices) +"jvz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"jvC" = ( +/obj/item/stack/sheet/wood, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"jvP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"jvR" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"jwc" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/south/slums) +"jwt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"jwz" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor{ + icon_state = "delivery" + }, +/area/lv873/indoors/marshals/mainhall) +"jwM" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/item/bedsheet/captain, +/turf/open/floor/carpet{ + icon_state = "bcarpet03" + }, +/area/lv873/indoors/welcome_center/offices) +"jxa" = ( +/turf/closed/wall/r_wall, +/area/lv873/landing_zone_1) +"jxh" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"jxi" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"jxm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/superbiteburger{ + pixel_y = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"jxt" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"jxw" = ( +/obj/item/weapon/sword/machete{ + pixel_x = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"jxy" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/flooded_streets/east) +"jxB" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southeast/slums) +"jxH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"jxI" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/armory) +"jxJ" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/research/reception) +"jxV" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/flooded_streets/west) +"jyc" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"jyj" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"jyk" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"jyz" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"jyA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"jyM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"jyP" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"jzf" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/item/trash/plate, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"jzg" = ( +/obj/structure/curtain{ + icon_state = "shower" + }, +/turf/open/floor/strata{ + dir = 8; + icon_state = "multi_tiles" + }, +/area/lv873/indoors/southwest/slums) +"jzo" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/canteen) +"jzF" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"jzX" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/east/slums) +"jAn" = ( +/obj/item/weapon/gun/pistol/m1911{ + pixel_y = 3 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"jAt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 14 + }, +/obj/item/tool/pen{ + pixel_y = -9 + }, +/obj/item/device/eftpos{ + pixel_y = -5; + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/reception) +"jAC" = ( +/turf/open/gm/coast/dirt/beachcorner/south_west, +/area/lv873/outdoors/flooded_streets/east) +"jBw" = ( +/obj/structure/largecrate/random/mini/small_case/b, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/oob) +"jBx" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southeast) +"jBH" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 14; + pixel_y = 13 + }, +/obj/item/clothing/shoes/jackboots{ + desc = "Grungy old steel-toed boots."; + name = "steel-toed boots"; + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/clothing/shoes/jackboots{ + desc = "Grungy old steel-toed boots."; + name = "steel-toed boots"; + pixel_x = -10; + pixel_y = -6 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"jBJ" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/hallway/west) +"jBL" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "CMB Office"; + phone_id = "Main Offices" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"jBN" = ( +/obj/structure/bed{ + icon_state = "psychbed"; + pixel_y = 14 + }, +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/item/bedsheet/green{ + pixel_y = 14 + }, +/obj/item/bedsheet/green, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"jBW" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"jCr" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/south/slums) +"jCs" = ( +/obj/structure/surface/table, +/obj/item/storage/beer_pack{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"jCJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"jDg" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"jDl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pine Hill Elementary School" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"jDt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"jDG" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"jDI" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/effect/landmark/objective_landmark/far, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"jDL" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"jDQ" = ( +/obj/structure/surface/table, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/item/reagent_container/food/snacks/cheesewedge/verymature, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"jDZ" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"jEg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/reception) +"jEt" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"jEG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"jEV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"jFH" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/off{ + pixel_y = 19 + }, +/obj/item/device/cassette_tape/indie, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"jFV" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/flooded/east_apartments) +"jGd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"jGj" = ( +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"jGl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"jGm" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"jGx" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/outpatients_and_icu) +"jGy" = ( +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"jGH" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"jGS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/bungalow_manager_exterior) +"jHe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"jHg" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"jHq" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/grown/corn{ + pixel_y = -6 + }, +/obj/item/reagent_container/food/snacks/grown/corn{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/grown/corn{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/farm_shack) +"jHr" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/frame/table/wood/poor, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"jHt" = ( +/obj/item/tool/mop, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"jHw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"jHE" = ( +/obj/item/tool/soap{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/tool/soap{ + pixel_x = -11; + pixel_y = 2 + }, +/obj/item/tool/soap{ + pixel_y = -6; + pixel_x = -11 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"jHF" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"jHI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"jHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"jHU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/item/trash/burger{ + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"jHZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Administrator's Bungalow" + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"jIe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"jIg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"jIl" = ( +/obj/item/trash/cigbutt{ + pixel_y = 14; + pixel_x = -3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"jIm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "northeast_gate"; + name = "\improper North-Eastern Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/indoors/lz_sec_checkpoint) +"jIn" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"jIE" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"jIM" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"jIW" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/structure/sign/poster/art{ + pixel_x = -25 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"jJf" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + pixel_y = 13 + }, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"jJh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"jJr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"jJN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"jJW" = ( +/obj/item/paper/crumpled/bloody, +/obj/item/tool/pen/red/clicky{ + pixel_y = 2; + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"jJZ" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_1) +"jKU" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"jKZ" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"jLj" = ( +/obj/structure/sign/prop3{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"jLo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"jLr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"jLD" = ( +/obj/structure/surface/rack, +/obj/item/prop/helmetgarb/helmet_gasmask{ + pixel_x = 5 + }, +/obj/item/prop/helmetgarb/helmet_gasmask{ + pixel_x = -5 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"jLI" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"jLV" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "uscm_armory"; + name = "armory blast door opener"; + pixel_y = -17; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor{ + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"jLY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/south) +"jMx" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/landing_zone_1) +"jMF" = ( +/obj/structure/surface/rack, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = 14 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/pill_bottle/paracetamol{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/item/storage/pill_bottle/paracetamol{ + pixel_y = -3; + pixel_x = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"jMO" = ( +/obj/item/trash/burger{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"jMW" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"jNq" = ( +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"jNt" = ( +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/structure/largecrate{ + pixel_x = -10 + }, +/obj/structure/largecrate{ + pixel_x = 4 + }, +/obj/structure/largecrate{ + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"jNJ" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"jNL" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southwest) +"jOj" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"jOk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"jOA" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"jOG" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"jOV" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/item/tool/soap/nanotrasen, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"jOX" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/welcome_center/canteen) +"jPf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"jPl" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southeast) +"jPo" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"jPs" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/reception) +"jPC" = ( +/obj/structure/closet/crate/ammo, +/obj/item/newspaper{ + pixel_y = 0; + name = "operations personal defense weapons order m-7 yr-2182" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"jPF" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/item/trash/hotdog, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"jPY" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/storage/box/masks{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 2 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 2; + pixel_x = 6 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"jQc" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/obj/item/paper_bin/wy{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"jQk" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 3 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southwest) +"jQG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"jQM" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"jRp" = ( +/obj/structure/surface/rack, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"jRE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/item/evidencebag, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"jRF" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/operations/hallway/south) +"jRW" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Memorial Hospital"; + phone_id = "Hospital Front Desk" + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"jSs" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/pizza) +"jSy" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"jSC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/trash/burger{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = 2 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/item/tool/stamp/cmb, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"jSK" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"jSQ" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 7 + }, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = -6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"jTa" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"jTc" = ( +/obj/item/clothing/mask/surgical, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"jTn" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/lv873/indoors/ss_athens) +"jTu" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"jTD" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"jTN" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/north) +"jUb" = ( +/obj/item/trash/cigbutt{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"jUR" = ( +/obj/item/storage/firstaid/adv/empty{ + pixel_x = -8; + pixel_y = -8 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"jUX" = ( +/obj/item/spacecash/c500/counterfeit, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"jVg" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"jVq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Businesses"; + phone_id = "Liam's Mechanic Shop" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"jVu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"jVH" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"jVO" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"jVS" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"jVU" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/north) +"jWb" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/flower_vase/bluewhiteflowers, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"jWz" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"jWR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"jXk" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"jXr" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"jXy" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"jYj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"jYr" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"jYz" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/flooded_streets/west) +"jYE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/machinery/meter, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"jZt" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper telephone booth"; + pixel_y = 21 + }, +/obj/structure/transmitter/colony_net{ + pixel_y = 24 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"jZu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/offices/northwest) +"jZx" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/colony_streets/northeast) +"jZy" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/southeast) +"jZC" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"kac" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" + }, +/area/lv873/indoors/ss_athens) +"kap" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Weyland-Yutani Welcome Center 'Alexandria' Restaurant Kitchen 'On the House'" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"kax" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"kaW" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"kbd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 11 + }, +/obj/item/tool/pen/blue{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/folder/black, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"kbm" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"kbt" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ + name = "\improper Jeppson's Memorial Hospital Corporate Research Supervisor's Storage"; + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"kby" = ( +/obj/item/clothing/head/soft/blue, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"kbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"kbG" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"kbO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/breadslice, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"kcb" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/trapped_house) +"kcd" = ( +/obj/item/trash/chips, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"kch" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"kcr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"kcu" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"kcy" = ( +/obj/item/trash/snack_bowl, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/east) +"kcG" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"kdf" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/east) +"kdm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"kdG" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"kdJ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"kdP" = ( +/turf/open/floor/plating{ + dir = 8; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"keh" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"kek" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 11 + }, +/obj/item/tool/pen/clicky{ + pixel_y = -6; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"keF" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"keG" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/southeast) +"kfn" = ( +/obj/item/weapon/gun/revolver/cmb, +/obj/structure/sign/poster/ad{ + pixel_x = -17; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/south) +"kfK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c"; + pixel_y = 0; + name = "pneumatic delivery system pipe" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"kfU" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/bottle/gin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"kgh" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"kgq" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 3 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"kgu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"kgx" = ( +/obj/structure/bed/chair{ + dir = 1; + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + dir = 1; + pixel_x = -8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"kgD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"kgK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"khe" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/indoors/east/slums) +"khu" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/power_station) +"khv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"khx" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"khI" = ( +/obj/structure/flora/jungle/hedge{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"kib" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Weyland-Yutani Welcome Center 'Alexandria'" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"kin" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/sniper/svd{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/ammo_magazine/sniper/svd{ + pixel_x = 7; + pixel_y = -1 + }, +/turf/open/gm/road, +/area/lv873/oob) +"kiA" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"kiP" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/army_surplus) +"kjm" = ( +/obj/structure/prop/server_equipment/laptop/on, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"kjt" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"kjD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"kjR" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"kjX" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"kke" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"kkf" = ( +/obj/structure/surface/rack, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/oob) +"kkm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/item/folder/red, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"kkq" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"kkE" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"kkX" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"klh" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"kll" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/clf_barracks) +"klz" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"klH" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"klM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"klT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 12 + }, +/obj/item/tool/plantspray/pests{ + pixel_y = 17 + }, +/obj/item/tool/plantspray/weeds{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"klV" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"klZ" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/head/hardhat, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"kmr" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"kmv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"kmC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/tool/pen/fountain, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"kmJ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/west) +"kne" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Businesses"; + phone_id = "Gas-n'-Gear" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"knf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/vials{ + pixel_y = -4; + pixel_x = -7 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/fancy/vials{ + pixel_y = -4; + pixel_x = 8 + }, +/obj/item/device/reagent_scanner/adv, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"knk" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/east) +"knq" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel3a" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"knv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/gm/road, +/area/lv873/oob) +"knw" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = 14; + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_1) +"kny" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"knJ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"knU" = ( +/obj/structure/surface/rack, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/oob) +"knY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"koj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"kor" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating{ + icon_state = "platebot" + }, +/area/lv873/indoors/power_station) +"koz" = ( +/obj/item/tool/candle{ + pixel_y = 10; + pixel_x = -10 + }, +/obj/item/tool/candle{ + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"koA" = ( +/obj/structure/largecrate/hunter_games_medical, +/turf/open/floor/wood, +/area/lv873/oob) +"koF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "east_gate"; + name = "\improper Eastern Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/indoors/hospital/reception) +"koQ" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel3b" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kpl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"kpq" = ( +/obj/structure/machinery/light, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/indoors/operations/reception) +"kpw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/secure_data{ + pixel_y = -4; + pixel_x = 12; + layer = 2.99 + }, +/obj/item/ashtray/plastic{ + pixel_x = -6 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 10; + pixel_x = -1 + }, +/obj/item/device/taperecorder/empty{ + pixel_x = -17 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"kpK" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kpQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on decreasing aquifer water levels m-7 yr-2182"; + pixel_x = 7 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on unidentified materials in disposal systems m-7 yr-2182"; + pixel_x = -7 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"kpR" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/operations/hallway/west) +"kpV" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/south) +"kqd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_y = -4; + pixel_x = -14 + }, +/obj/item/ashtray/plastic{ + pixel_x = 3 + }, +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"kqw" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southwest) +"kqG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"kqN" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/bungalow_manager_exterior) +"kqV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = -7 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"krv" = ( +/obj/structure/largecrate{ + pixel_x = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"krL" = ( +/obj/item/trash/cheesie{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/item/trash/boonie, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"krY" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"ksa" = ( +/obj/structure/closet/bodybag, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"ksh" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/hospital/road_north_east) +"kss" = ( +/turf/open/floor, +/area/lv873/indoors/lone_buildings/flynns_bar) +"ksG" = ( +/obj/structure/urinal{ + pixel_y = 21 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"ksI" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"ksM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/item/clothing/head/headband/rebel, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"ksZ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"kto" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/flooded_streets/west) +"ktt" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"kty" = ( +/obj/item/tool/screwdriver{ + pixel_x = 2 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"ktB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"ktC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Wey-Mart" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"ktO" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"ktP" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"ktT" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ktU" = ( +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"kua" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_west, +/area/lv873/outdoors/colony_streets/east) +"kub" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/bungalow_manager_exterior) +"kuq" = ( +/obj/structure/prop/server_equipment/laptop, +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"kuU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"kvp" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"kvy" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Jeppson's Memorial Hospital Laundry Room" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"kvT" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"kvZ" = ( +/obj/structure/machinery/photocopier, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"kwb" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"kwi" = ( +/turf/open/gm/coast/dirt/west, +/area/lv873/outdoors/flooded_streets/east) +"kwm" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Church" + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/south/slums) +"kwS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/limb/arm/l_arm, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"kxq" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -9; + pixel_y = 17 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 7; + pixel_y = 17 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"kxr" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/operations/xenobiological_research) +"kxx" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"kxB" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"kxW" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/east) +"kxZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/vegetablepizzaslice, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"kyd" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/oob) +"kyh" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"kyj" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"kym" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"kyt" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"kyZ" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/colonist/workwear/blue, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"kzd" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"kzA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper The Pole Museum" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"kzH" = ( +/obj/structure/machinery/computer/telecomms/server, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"kAk" = ( +/obj/structure/bed/chair, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -4 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/cells) +"kAq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"kAv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Liqr-R-Mart Storage" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"kAw" = ( +/obj/structure/platform_decoration/kutjevo/smooth{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"kAK" = ( +/obj/structure/fence, +/obj/structure/shuttle/engine/platform, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"kAM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mansion-garage"; + name = "\improper Executive Bungalow Garage" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"kAN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"kAZ" = ( +/obj/structure/device/broken_piano, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kBo" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"kBq" = ( +/obj/structure/holohoop{ + pixel_y = 26 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/east) +"kBr" = ( +/turf/open/floor{ + icon_state = "chapel"; + dir = 1 + }, +/area/lv873/indoors/south/slums) +"kBR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/southwest) +"kBY" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"kCd" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/research/floor) +"kCm" = ( +/obj/item/evidencebag, +/obj/item/clothing/gloves/latex{ + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"kCo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open, +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"kCt" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"kCA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bunkroom Laundry" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"kCE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"kCJ" = ( +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"kCM" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"kDM" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"kDN" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"kDU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"kEm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "tunnel_garage_1"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"kEq" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"kEu" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"kEO" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"kFf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/curtain/medical{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"kFl" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"kFE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"kFG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"kFQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/west) +"kFU" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"kGb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"kGe" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = -3; + pixel_x = -5 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = -3; + pixel_x = -1 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = -3; + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_y = -3; + pixel_x = 5 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"kGp" = ( +/obj/item/ammo_magazine/pistol/skorpion{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"kGE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"kGW" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"kGX" = ( +/obj/item/trash/hotdog, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"kHK" = ( +/obj/structure/largecrate/supply/ammo/sentry{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 10; + pixel_y = 18 + }, +/obj/item/prop/helmetgarb/flair_peace{ + pixel_y = 11 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"kHN" = ( +/turf/open/gm/coast/dirt/east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"kHS" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/landing_zone_1) +"kIk" = ( +/obj/structure/surface/rack, +/obj/item/trash/snack_bowl, +/obj/item/device/eftpos{ + pixel_y = 15 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"kIn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"kIp" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/flooded_streets/west) +"kIv" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"kIP" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"kIX" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"kKd" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"kKj" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"kKs" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8; + pixel_y = 19 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7; + pixel_y = 19 + }, +/obj/item/shard, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"kKv" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/landing_zone_2) +"kKK" = ( +/turf/closed/wall, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"kKO" = ( +/obj/structure/cable{ + icon_state = "9-10" + }, +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"kKS" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_y = 15 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"kLi" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/east/slums) +"kLl" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/landing_zone_2) +"kLn" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"kLG" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/closed/wall/r_wall, +/area/lv873/indoors/lz_sec_checkpoint) +"kLN" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"kMa" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"kMq" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"kMV" = ( +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/tool/pen/clicky{ + pixel_y = 5; + pixel_x = 3; + layer = 3.10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"kMX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"kNb" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"kNe" = ( +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"kNg" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 4; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"kNj" = ( +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kNs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "gasngear_garage"; + name = "\improper Long Rest Cargo Storage" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"kNz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/CICmap/pmc, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"kNP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"kNR" = ( +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"kNT" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/research/offices) +"kNY" = ( +/obj/item/prop/colony/used_flare, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"kOl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kOu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/offices/east) +"kOw" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/colonist/workwear, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"kOF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/gm/coast/dirt/beachcorner/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"kOG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"kOI" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/northwest) +"kOK" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/aerospace_control) +"kPd" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"kPp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c"; + pixel_x = 5; + pixel_y = 6; + name = "pneumatic delivery system pipe" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8"; + pixel_y = -7; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"kPH" = ( +/obj/item/paper/crumpled{ + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"kPW" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel6a" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"kPX" = ( +/obj/item/trash/chunk, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"kQh" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/flooded_streets/east) +"kQi" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"kQl" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"kQm" = ( +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"kQo" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kQs" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"kQC" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_y = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"kQI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"kQK" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"kQN" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"kRu" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"kRP" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/liaison_suit/blue, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"kSr" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"kSG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"kTe" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "WYArmory"; + name = "\improper Corporate Emergency Armory" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/indoors/corpo_armory) +"kTq" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"kTu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 6; + pixel_x = 13 + }, +/obj/item/weapon/pole/fancy_cane/this_is_a_knife/machete, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"kTw" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"kTF" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"kTW" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"kUi" = ( +/obj/structure/bed/roller, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"kUB" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/obj/item/folder, +/obj/item/folder, +/obj/item/folder, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"kUP" = ( +/obj/item/tool/screwdriver{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"kUV" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"kVe" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"kVr" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"kVw" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"kVF" = ( +/obj/item/trash/hotdog, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"kWk" = ( +/turf/open/floor/carpet{ + icon_state = "bcarpet07" + }, +/area/lv873/indoors/southeast/slums) +"kWo" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/east/slums) +"kWx" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"kWA" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"kWJ" = ( +/obj/item/frame/table/gambling, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"kWL" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_y = 8; + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_y = -1; + pixel_x = 2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"kWY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"kXm" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/stack/sheet/cardboard{ + pixel_x = -15; + pixel_y = 9 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"kXD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"kXF" = ( +/obj/structure/closet/fancy, +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/obj/item/clothing/under/liaison_suit/field, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"kXI" = ( +/obj/structure/sink{ + layer = 3.5; + pixel_y = 14 + }, +/obj/structure/sink/puddle{ + layer = 2.8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 14; + pixel_x = 2; + layer = 2.9; + name = "water pipe segment" + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 14; + pixel_x = -10; + layer = 2.9; + name = "water pipe segment" + }, +/obj/item/prop/colony/usedbandage{ + dir = 8; + pixel_x = -2; + pixel_y = 13; + name = "re-used bandages"; + layer = 3.5 + }, +/turf/open/gm/dirt/brown{ + icon_state = "desert_dug" + }, +/area/lv873/oob) +"kXS" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/prop/dam/van{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"kXU" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"kYG" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"kYH" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"kZe" = ( +/obj/structure/sign/prop1{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"kZk" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 5; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"kZl" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"kZu" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/obj/structure/sign/safety/reception{ + pixel_y = 0; + pixel_x = 33 + }, +/obj/structure/sign/safety/south{ + pixel_y = 0; + pixel_x = 46 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"kZM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"kZP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"lag" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/trapped_house) +"lap" = ( +/obj/structure/largecrate, +/turf/open/gm/road, +/area/lv873/oob) +"lau" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/trapped_house) +"law" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/operations/hallway/west) +"laA" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"laO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 6 + }, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "northeast_gate"; + name = "east gate button"; + pixel_y = 13; + req_one_access_txt = "2;3;12;19"; + pixel_x = 6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"laP" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/throwing_knife, +/obj/effect/decal/cleanable/blood, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"lbj" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"lbr" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/garage) +"lbF" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel6a"; + layer = 3.1; + pixel_y = 16 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"lbN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat/synthmeat, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"lbP" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/gated_community_exterior) +"lbX" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"lce" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"lcg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced/colony{ + name = "Colonial Marshals Bureau Garage" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/garage) +"lcl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"lcm" = ( +/obj/item/clothing/under/swimsuit/blue, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"lcD" = ( +/obj/item/device/assembly/mousetrap, +/obj/item/reagent_container/food/snacks/cheesewedge/extramature{ + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"lcE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"lcG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"ldi" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"ldm" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"ldT" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Bunkrooms" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"lem" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"lev" = ( +/obj/item/prop/helmetgarb/spent_slug, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"lex" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"leB" = ( +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"leQ" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/pill_bottle/happy, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"lfk" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/item/storage/briefcase, +/obj/item/newspaper{ + name = "report on recently discovered acidic blood m-7 yr-2182" + }, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"lfw" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"lfD" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"lgh" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"lgj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/southwest) +"lgw" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"lgB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"lgE" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/structure/largecrate/random/barrel/white{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"lgK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"lgN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"lgS" = ( +/obj/item/clothing/head/militia{ + pixel_y = 9 + }, +/obj/structure/target, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/cmb/exterior) +"lhm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"lhn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southwest) +"lhJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"lhO" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"lhQ" = ( +/obj/item/clothing/head/hardhat/white, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"lhU" = ( +/obj/item/stool, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"lhW" = ( +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southeast) +"liz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"liP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"liW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/asphalt/cement, +/area/lv873/oob) +"ljs" = ( +/obj/structure/closet, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"ljw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"ljx" = ( +/obj/structure/surface/table, +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/obj/structure/machinery/prop/almayer/CICmap/pmc, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"ljz" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"ljG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"ljR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"lka" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"lkc" = ( +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"lkg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"lko" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 8; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"lkM" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lkN" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/serverroom) +"lkU" = ( +/obj/structure/platform/strata/metal, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"lkY" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"llb" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/clf_barracks) +"llj" = ( +/obj/structure/sign/poster/io{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"lll" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/trash/uscm_mre{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lln" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"llE" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/hospital/road_north_east) +"llH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"llX" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/reception) +"lmb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"lmi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"lmn" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/lv873/indoors/marshals/cells) +"lmz" = ( +/obj/item/device/walkman{ + pixel_x = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"lmP" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"lmZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"lnf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/hallway/west) +"lnk" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_y = -32; + pixel_x = 7 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"lnm" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"lnr" = ( +/obj/structure/bedsheetbin{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/structure/bedsheetbin{ + pixel_x = 13; + pixel_y = -1 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"lnK" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"lnQ" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"lnT" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/west) +"lnV" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"lnZ" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"loz" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"loL" = ( +/turf/open/gm/road, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"loY" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/opens_up{ + pixel_x = 12; + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"lpa" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"lpf" = ( +/obj/item/stack/sheet/wood, +/obj/item/trash/buritto, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"lpB" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/south) +"lpJ" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lpP" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/cmb/exterior) +"lpQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"lqe" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/offices) +"lqk" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"lqn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"lqo" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"lqp" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/box/syringes{ + pixel_x = 8 + }, +/obj/item/device/reagent_scanner/adv/objective{ + pixel_x = -7 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"lqP" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"lqY" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"lrd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"lrM" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"lrQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"lsb" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"lsf" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"lsi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"lsv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze{ + pixel_y = 0; + pixel_x = -8 + }, +/obj/item/paper_bin/wy{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"lsz" = ( +/obj/structure/prop/dam/truck/cargo{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"lsB" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/flooded_streets/east) +"lsY" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/classcola{ + pixel_y = -3 + }, +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"lts" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"ltH" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/clothing/head/surgery, +/turf/open/floor{ + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/operating_rooms) +"ltI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lup" = ( +/obj/structure/window/framed/colony, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/indoors/southeast/slums) +"luv" = ( +/obj/effect/alien/weeds/node, +/obj/structure/machinery/atm{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"luw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/absinthe{ + pixel_y = 9; + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 11 + }, +/obj/structure/machinery/door_control{ + pixel_x = 3; + pixel_y = 2; + name = "panic button"; + id = "director-panic" + }, +/turf/open/floor/carpet{ + icon_state = "bcarpet09" + }, +/area/lv873/indoors/welcome_center/offices) +"lux" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/bluemalt{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/bluemalt{ + pixel_y = 1; + pixel_x = -3 + }, +/obj/item/shard, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"luG" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + layer = 3; + pixel_x = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"luH" = ( +/turf/open/floor{ + icon_state = "chapel"; + dir = 4 + }, +/area/lv873/indoors/south/slums) +"luK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"lvL" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/wood, +/area/lv873/oob) +"lwa" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"lwj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"lwo" = ( +/turf/open/gm/coast/dirt/beachcorner/north_east, +/area/lv873/outdoors/flooded_streets/west) +"lwq" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weymart) +"lwB" = ( +/obj/item/spacecash/c1{ + pixel_x = -10; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"lwN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/item/storage/box/snappops{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lxu" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"lxA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"lxB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"lxN" = ( +/obj/structure/curtain{ + icon_state = "shower" + }, +/turf/open/floor/prison/chapel_carpet{ + icon_state = "plating" + }, +/area/lv873/indoors/southwest/slums) +"lyc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"lyq" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced/colony{ + name = "\improper Corporate Security Chief's House" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"lyz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"lyF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"lyJ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"lyM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pen/clicky{ + pixel_y = 0; + pixel_x = 3; + layer = 3.10 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = 16 + }, +/obj/item/paper_bin/wy{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"lyW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/structure/machinery/microwave{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"lzd" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_y = -6; + pixel_x = -4 + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"lzw" = ( +/obj/structure/largecrate/random, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"lzM" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/flynns_bar) +"lzU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"lAc" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/east) +"lAm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat/fish/squid/alt, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"lAp" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"lAr" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/lv873/indoors/ss_athens) +"lAL" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/west) +"lAN" = ( +/obj/docking_port/stationary/marine_dropship/lz1, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"lBa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"lBb" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"lBc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"lBg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"lBl" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/northwest) +"lBr" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = -9 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = 12 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/asphalt/cement, +/area/lv873/oob) +"lBu" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"lBv" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"lBK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_x = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"lBL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"lBW" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"lCA" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"lCF" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 16; + pixel_y = 13 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 16; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"lCX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"lDc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"lDh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"lDk" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"lDo" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"lDp" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"lDA" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"lDF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"lDU" = ( +/obj/structure/machinery/washing_machine{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/machinery/washing_machine{ + pixel_x = 4; + pixel_y = 21 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"lEm" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"lEp" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"lEt" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"lEw" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"lFe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"lFj" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall, +/area/lv873/indoors/power_station) +"lFn" = ( +/obj/structure/fence, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"lFp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"lFJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"lFX" = ( +/obj/structure/cargo_container/watatsumi/mid, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"lFZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/barman_recipes, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/flynns_bar) +"lGb" = ( +/obj/structure/bedsheetbin{ + pixel_x = -8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"lGn" = ( +/obj/item/weapon/broken_glass, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/south) +"lGp" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wy_chips/pepper{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/wy_chips/pepper{ + pixel_x = 7 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"lGA" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c10{ + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 17; + pixel_y = -2 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"lGB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"lGN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/prop/dam/van/damaged{ + pixel_y = 6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"lHp" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/hospital/road_north_west) +"lHq" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"lHW" = ( +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"lIu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/canteen) +"lIw" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"lIC" = ( +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"lJf" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/east) +"lJn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc/corporate, +/turf/open/floor/wood, +/area/lv873/oob) +"lJx" = ( +/obj/item/tool/warning_cone{ + pixel_x = -14; + pixel_y = 18 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"lKp" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/south) +"lKM" = ( +/obj/structure/toilet, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"lLd" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"lLr" = ( +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lLu" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/bungalow_manager_exterior) +"lLz" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"lLE" = ( +/obj/item/toy/prize/odysseus{ + pixel_x = 8; + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"lMt" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/offices/northwest) +"lMv" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"lMw" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"lMJ" = ( +/turf/closed/wall, +/area/lv873/indoors/welcome_center/canteen) +"lMP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + name = "expired Tabasco bottle"; + pixel_x = -2; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"lMR" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"lNa" = ( +/obj/item/storage/box/autoinjectors{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/structure/surface/rack, +/obj/item/clothing/mask/rebreather{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"lNm" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = 1 + }, +/obj/item/clothing/under/blackskirt, +/obj/item/clothing/under/suit_jacket/female, +/obj/item/clothing/under/wedding/bride_white, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"lNB" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"lOe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = 9; + name = "colony disposals computer" + }, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = -6; + name = "colony systems pressurisation computer"; + icon_state = "research" + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"lOo" = ( +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"lOA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ + name = "\improper Jeppson's Memorial Hospital Corporate Research Supervisor's Storage" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"lOB" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lOS" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"lOW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"lPd" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/surface/rack, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/item/storage/beer_pack, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"lPe" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"lPl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lPt" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"lPF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"lPH" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"lQn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"lQt" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"lQH" = ( +/obj/item/stack/medical/splint, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"lQP" = ( +/turf/open/gm/road, +/area/lv873/oob) +"lQY" = ( +/obj/structure/curtain/red, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"lRg" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"lRr" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"lRw" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/east) +"lRF" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"lRS" = ( +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southwest) +"lRX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"lRY" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"lSd" = ( +/turf/closed/wall, +/area/lv873/indoors/marshals/barracks) +"lSi" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"lSp" = ( +/obj/structure/prop/dam/truck{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"lSB" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"lSL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"lSW" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/lv873/indoors/marshals/cells) +"lTf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"lTE" = ( +/obj/item/storage/bag/plants{ + pixel_x = -3 + }, +/obj/effect/decal/remains/human{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"lTI" = ( +/obj/item/toy/deck, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lTK" = ( +/obj/structure/bed{ + buckling_y = 13; + pixel_y = 13 + }, +/obj/structure/bed, +/obj/item/bedsheet/green{ + pixel_y = 14 + }, +/obj/item/bedsheet/green, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"lUa" = ( +/obj/item/frame/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"lUK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"lUN" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"lUS" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Security Checkpoint" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"lVv" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"lVI" = ( +/obj/item/trash/c_tube, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"lVO" = ( +/obj/item/reagent_container/blood/OMinus, +/obj/structure/curtain/medical, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"lVQ" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"lVT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"lWi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"lWj" = ( +/obj/item/stack/sheet/metal, +/obj/item/frame/table/almayer, +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"lWO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/vegetable, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"lWU" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southeast) +"lXa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"lXb" = ( +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"lXp" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"lXI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"lYn" = ( +/obj/structure/sign/poster/propaganda{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"lYv" = ( +/obj/item/trash/cigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"lYB" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"lYI" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/oob) +"lYU" = ( +/obj/structure/bedsheetbin, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"lYV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"lZm" = ( +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"lZM" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 28 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/power_station) +"lZR" = ( +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"lZV" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"lZW" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"maa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Corporate Hostel"; + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"map" = ( +/obj/structure/sign/prop3{ + pixel_y = 32 + }, +/obj/item/weapon/gun/rifle/m41a/training{ + name = "\improper training M41A pulse rifle MK2"; + desc = "The training issue rifle of the Colonial Marines. Commonly carried by most combat personnel. Uses 10x24mm caseless ammunition." + }, +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0 + }, +/obj/item/clothing/head/beanie, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"maq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"maI" = ( +/obj/item/trash/eat, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"maP" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/hospital/break_garden) +"maT" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner" + }, +/area/lv873/oob) +"mbB" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/east) +"mbO" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/microwave{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"mce" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/prop/invuln{ + density = 0; + desc = "The Almayer has sprung a leak!"; + icon = 'icons/obj/structures/props/watercloset.dmi'; + icon_state = "water"; + name = "pipe water"; + pixel_y = 16 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/item/device/cassette_tape/ocean, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"mcf" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"mcj" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"mcl" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "marshal_garage_2"; + name = "garage door opener"; + pixel_x = 7; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "marshal_garage"; + name = "garage door opener"; + pixel_x = -6; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"mcx" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"mcS" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"mcT" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-5" + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"mcV" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southeast) +"mde" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Emergency Tower Lockdown"; + id = "tower" + }, +/turf/open/floor/plating, +/area/lv873/indoors/aerospace_control) +"mdS" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/east) +"mec" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"meg" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hairflower, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"mep" = ( +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"mex" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/bonesetter{ + pixel_y = 11; + pixel_x = -3 + }, +/obj/item/tool/surgery/cautery{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/tool/surgery/hemostat{ + pixel_x = -3 + }, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"meC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"meE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/west) +"meG" = ( +/obj/item/tool/candle{ + pixel_y = 10; + layer = 3.03 + }, +/obj/item/tool/candle{ + pixel_y = -10; + pixel_x = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"meH" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + dir = 4; + icon_state = "BengalAlt" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"meZ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 7 + }, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = -2 + }, +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"mfb" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mfc" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/bungalow_manager) +"mfi" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"mfy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"mfK" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"mfT" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"mfU" = ( +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"mgf" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"mgn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 4 + }, +/area/lv873/indoors/south/slums) +"mgG" = ( +/obj/structure/closet/bodybag, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"mha" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"mhh" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/east/slums) +"mhm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mhu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"mhv" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/curtain/red{ + pixel_y = 32; + layer = 3.45 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"mhy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"mhA" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -9 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"mhG" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/outdoors/colony_streets/west) +"mhM" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 30; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 30; + pixel_y = -8 + }, +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"mhQ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/east) +"miv" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"miB" = ( +/obj/structure/closet/crate/freezer/cooler, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/drinks/bottle/rum, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"mjd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"mjg" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"mjo" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"mjM" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"mkf" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor, +/area/lv873/indoors/power_station) +"mkj" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 21 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 21 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_y = 1 + }, +/obj/item/prop/magazine/book/theartofwar, +/obj/item/storage/bible, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"mkI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"mkT" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_2) +"mle" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/east) +"mlh" = ( +/obj/structure/machinery/telecomms/broadcaster, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"mlx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/hallway/north) +"mly" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"mlL" = ( +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"mlN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pen/clicky{ + pixel_y = -6; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"mmi" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"mmm" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"mnb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pole Museum Changing Rooms" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"mnq" = ( +/obj/structure/machinery/light/small, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/extramature, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"mnt" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"moi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/stack/barbed_wire, +/obj/item/weapon/gun/rifle/type71/flamer/leader{ + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"mov" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"moF" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 38 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"moH" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"moX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"mpc" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 1; + pixel_y = 26 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"mpg" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/kitchen/tray, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mpt" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"mpC" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/operating_rooms) +"mpI" = ( +/obj/structure/mirror{ + pixel_y = 26 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"mpK" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"mqc" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"mqf" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/southwest/slums) +"mqj" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"mqn" = ( +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"mqx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"mqA" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"mqN" = ( +/turf/closed/wall, +/area/lv873/indoors/south/slums) +"mqQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/closet/crate/hydroponics{ + pixel_x = 2 + }, +/obj/item/tool/minihoe, +/obj/item/tool/shovel/spade, +/obj/item/tool/hatchet, +/obj/item/tool/screwdriver, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"mqT" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/surface/rack, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -9 + }, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/weymart) +"mri" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/hallway/west) +"mrj" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"mrY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"msd" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 6; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/landing_zone_2) +"msn" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/south) +"msy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "north_garage"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"msN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck{ + pixel_x = 5 + }, +/obj/item/ashtray/plastic{ + pixel_x = -8 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"msP" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"mtg" = ( +/obj/structure/machinery/microwave{ + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"mtt" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"mtu" = ( +/obj/structure/barricade/handrail/sandstone/b{ + color = "#8CCE8F"; + dir = 1; + icon_state = "hr_stone_b"; + name = "plastic handrail" + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"mtE" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/barracks) +"mtG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"mtO" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/crushed_cup{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"mtU" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "uscm_armory"; + name = "\improper Secure USCMC Armory" + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"mtV" = ( +/obj/item/tool/wet_sign{ + desc = "Evidence marker"; + name = "evidence marker" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/east) +"mtW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/offices) +"muk" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"muq" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/south) +"mut" = ( +/obj/structure/flora/jungle/hedge{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"muD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"muL" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/asphalt/cement, +/area/lv873/oob) +"muQ" = ( +/obj/structure/fence, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"muS" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"mvk" = ( +/obj/structure/fence, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"mvt" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"mvu" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"mvz" = ( +/obj/structure/disposalpipe/segment{ + name = "steam pipe"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"mwn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sandwich, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"mwu" = ( +/obj/item/clothing/head/beanie, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"mwz" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/west) +"mwD" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/south/slums) +"mwM" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"mxq" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/colony_streets/west) +"mxs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"mxI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"mxN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + dir = 1; + name = "\improper Weyland-Yutani Welcome Center 'Alexandria' Office Floor" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"mxO" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"myk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + dir = 1; + locked = 1; + name = "\improper Garage Manway" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"myo" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/outdoors/colony_streets/southwest) +"myt" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 7; + pixel_y = 15 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"myw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/meatsteak, +/obj/item/weapon/throwing_knife, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"myE" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/north) +"myG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"myK" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"myL" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mze" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/item/weapon/gun/pistol/clfpistol, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"mzg" = ( +/obj/structure/prop/dam/van{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"mzr" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"mzz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"mzR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null; + pixel_x = -13; + pixel_y = 12 + }, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null; + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null; + pixel_x = -13; + pixel_y = 3 + }, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null; + pixel_x = -13; + pixel_y = -2 + }, +/obj/item/weapon/gun/pistol/holdout/flashlight{ + current_mag = null; + pixel_x = -13; + pixel_y = -7 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 17; + pixel_x = 2 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 13; + pixel_x = 2 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 0; + pixel_x = 2 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 17; + pixel_x = 9 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 13; + pixel_x = 9 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 5; + pixel_x = 9 + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_y = 0; + pixel_x = 9 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/lockerroom) +"mzS" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mzV" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/bungalow_manager_exterior) +"mAz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"mAO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_x = -8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"mAS" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/southeast/slums) +"mBa" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "mechanic_garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"mBx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/marshals/mainhall) +"mBB" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"mBJ" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"mBQ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/southeast) +"mBS" = ( +/obj/item/trash/chips, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"mBT" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/east) +"mBX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/solid{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"mCn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"mCy" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/tunnel, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"mCD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/disposal, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"mCH" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"mCZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/south) +"mDa" = ( +/obj/structure/bed{ + buckling_y = 13; + pixel_y = 13 + }, +/obj/structure/bed, +/obj/item/bedsheet/hop{ + pixel_y = 14 + }, +/obj/item/bedsheet/hop, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mDc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Courtyard" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"mDd" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"mDn" = ( +/obj/item/tool/minihoe, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"mDB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"mDH" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 6; + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = -7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"mDK" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/southwest) +"mEe" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel6b"; + pixel_y = 20 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/power_station) +"mEj" = ( +/obj/structure/holohoop{ + pixel_y = 25 + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/oob) +"mEk" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 20 + }, +/obj/item/ashtray/glass{ + pixel_x = -11 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"mEr" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"mEC" = ( +/obj/item/trash/cigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"mEF" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"mEN" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/offices) +"mEO" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"mES" = ( +/obj/item/toy/plush/farwa{ + desc = "A Farwa plush doll. Once soft and comforting now just really wet."; + name = "soaked Farwa plush doll" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"mEX" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"mFh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"mFP" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/oob) +"mFU" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/flooded_streets/east) +"mFY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/storage/box/matches{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"mGc" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = 9; + icon_state = "demo_sim"; + layer = 3.03; + name = "disposals computer" + }, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = -5; + icon_state = "shuttle"; + layer = 3.04; + name = "colony power control computer" + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"mGe" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"mGm" = ( +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"mGt" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/MRE{ + pixel_y = 8 + }, +/obj/item/storage/box/MRE{ + pixel_y = 3 + }, +/obj/item/storage/box/MRE{ + pixel_y = 0 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"mGv" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"mGx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"mGD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Weyland-Yutani Welcome Center 'Alexandria' Restaurant 'On the House'" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"mGF" = ( +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mGN" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"mGP" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"mHe" = ( +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"mHf" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"mHl" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"mHw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Liq-R-Mart" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"mHx" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/south) +"mIn" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/bed/bedroll, +/obj/item/bedsheet/ce, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"mIv" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/southwest/slums) +"mIF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"mIV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"mJv" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/indoors/flooded/west_apartments) +"mJG" = ( +/obj/structure/sign/poster{ + pixel_y = 34 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"mJK" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c10{ + pixel_y = 0 + }, +/obj/item/toy/deck{ + pixel_y = 16; + pixel_x = -10 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"mJN" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/cells) +"mJR" = ( +/obj/item/trash/pistachios, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"mKq" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"mKD" = ( +/turf/closed/wall/r_wall, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"mKN" = ( +/turf/open/gm/dirt/brown{ + icon_state = "desert1" + }, +/area/lv873/oob) +"mKQ" = ( +/obj/structure/prop/invuln{ + density = 0; + desc = "The Almayer has sprung a leak!"; + icon = 'icons/obj/structures/props/watercloset.dmi'; + icon_state = "water"; + name = "pipe water"; + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"mKV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"mLG" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Hubba hubba."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster17"; + name = "\improper Beach Babes Monthly"; + pixel_x = 23; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/cells) +"mLO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"mLR" = ( +/obj/structure/machinery/power/apc, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"mLT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"mLW" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"mMn" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/tool/pickaxe/hammer, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"mMB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"mMD" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/landing_zones_disembark) +"mMV" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_dark" + }, +/area/lv873/indoors/ss_athens) +"mNr" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/south) +"mND" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Executive Bungalow Laundry" + }, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"mNW" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/east) +"mOb" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"mOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"mOf" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-9" + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"mOh" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/wood, +/area/lv873/oob) +"mOy" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"mOD" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"mOK" = ( +/obj/item/shard, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"mOQ" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 8 + }, +/obj/item/storage/briefcase, +/obj/item/newspaper{ + name = "report on slum gang activity m-7 yr-2182" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"mPh" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mPx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"mPG" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"mPK" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"mPY" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"mQc" = ( +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = 10; + pixel_y = 19 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"mQd" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/landing_zone_1) +"mQm" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"mQI" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"mQO" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"mQP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"mRs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"mRy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"mRF" = ( +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"mRY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/orangejuice, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"mSb" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/hospital/road_north_west) +"mSh" = ( +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"mSl" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"mSm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"mSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"mSI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"mSR" = ( +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 9; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"mTc" = ( +/obj/structure/disposalpipe/segment{ + name = "steam pipe"; + pixel_x = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"mTk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/west_apartments) +"mTs" = ( +/obj/item/trash/barcardine, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"mTx" = ( +/obj/structure/machinery/chem_storage/medbay, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"mUl" = ( +/obj/structure/curtain/open, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"mUm" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/door/window/brigdoor/eastright, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"mUn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"mUt" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/neils_arcade) +"mUv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"mUP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"mVa" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Telecommunications Array" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"mVi" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"mVr" = ( +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"mVD" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/m4a3/m1911{ + pixel_y = 6 + }, +/obj/item/storage/belt/gun/m4a3/m1911{ + pixel_y = -1 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"mVI" = ( +/obj/item/stack/sheet/wood, +/obj/item/stack/cable_coil, +/obj/structure/machinery/light, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"mVM" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip1+" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"mWl" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/item/clothing/mask/cigarette, +/turf/open/floor/wood, +/area/lv873/oob) +"mWq" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "cargo_ship_r"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 28; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"mWO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"mXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/ashtray/plastic{ + pixel_x = -7 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + icon_state = "lspacket10"; + pixel_x = 6; + pixel_y = 2; + storage_slots = 10 + }, +/obj/item/tool/lighter/random{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"mXw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/offices/southwest) +"mXD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"mXE" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"mXL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/xenoautopsy/jar_shelf{ + pixel_y = 14 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"mXQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/oob) +"mXV" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/school) +"mYS" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"mYX" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/power_station) +"mZd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"mZg" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"mZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c"; + pixel_y = -7; + pixel_x = 7 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c"; + pixel_y = 8; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"mZn" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"mZG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"mZH" = ( +/obj/structure/coatrack{ + pixel_x = -9 + }, +/obj/item/clothing/suit/storage/apron/overalls{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"mZV" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv873/indoors/operations/hallway/west) +"nax" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel3a"; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"naB" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"naR" = ( +/obj/structure/sign/safety/reception{ + pixel_y = -32; + pixel_x = 1 + }, +/obj/structure/sign/safety/south{ + pixel_y = -32; + pixel_x = 13 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/landing_zones_disembark) +"nbg" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"nbh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Liqr-R-Mart Backdoor" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"nbi" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"nbj" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"nbq" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1; + name = "\improper SS Athens Storage" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"nbA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/clothing/head/hardhat/white, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"nbD" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"nbE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"nbF" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"nbL" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"nbP" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/hallway/south) +"ncq" = ( +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"ncw" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"ncB" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"ncJ" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"ncN" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"nda" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/lockerroom) +"ndb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"ndc" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"ndg" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"ndn" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -8 + }, +/obj/item/stack/cable_coil, +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"ndI" = ( +/obj/structure/window/framed/colony, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"ndX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + locked = 1; + name = "\improper Garage Manway"; + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"nea" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"neb" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"nel" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ner" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"nez" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"neC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"neY" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nfc" = ( +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"nfg" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/marshals/mainhall) +"nft" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/floor/wood, +/area/lv873/oob) +"nfX" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"nfZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"ngj" = ( +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"ngt" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ngu" = ( +/obj/structure/machinery/iv_drip, +/obj/item/reagent_container/blood/OPlus, +/obj/structure/machinery/power/apc, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"ngy" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"ngF" = ( +/obj/item/trash/cigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"ngJ" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"nha" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"nhg" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/item/storage/fancy/cigar/matchbook/koorlander, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"nhl" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "tunnel_garage_2"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 4 + }, +/area/lv873/indoors/south/slums) +"nhp" = ( +/obj/structure/platform/strata/metal, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"nhs" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"nil" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"nio" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"nir" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"niw" = ( +/obj/structure/cable{ + icon_state = "4-9" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"niz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"njc" = ( +/obj/structure/machinery/door/poddoor/almayer/locked, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"nji" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"njt" = ( +/obj/structure/machinery/power/apc, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"njz" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/surface/rack, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 9; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/weymart) +"nkG" = ( +/obj/structure/machinery/power/apc, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"nkO" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"nkS" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/xenobiological_research) +"nkV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/fries, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"nln" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/lobby) +"nlq" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"nlu" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"nlx" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"nlE" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/northeast) +"nlK" = ( +/obj/effect/alien/weeds/node, +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"nlN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nlP" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"nlT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"nmb" = ( +/obj/structure/bed/chair/office, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"nmm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"nmE" = ( +/obj/structure/platform_decoration/kutjevo/smooth{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"nmG" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"nmH" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"nmI" = ( +/obj/item/clothing/mask/surgical, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"nmL" = ( +/obj/structure/flora/jungle/vines, +/obj/item/reagent_container/food/snacks/egg{ + name = "Easter_Egg"; + pixel_x = -12; + pixel_y = -10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"nmO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"nmR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/indoors/hospital/research/floor) +"nna" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"nnm" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"nnA" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"nnX" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/obj/item/stack/sheet/mineral/plastic, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"noc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/clothing/head/hardhat, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"nol" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"nos" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Bedroom" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"noJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"noP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"noV" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/obj/item/stack/rods, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"npa" = ( +/obj/item/clothing/head/soft/trucker, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"npi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"npA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"npH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"nqg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"nqj" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"nqw" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"nqJ" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/south/slums) +"nqT" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/hospital/break_garden) +"nrq" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"nrA" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"nrG" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/metal, +/obj/structure/machinery/light_construct, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"nrV" = ( +/obj/effect/decal/cleanable/blood{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"nrY" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/west) +"nrZ" = ( +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"nsb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = -4; + pixel_x = -9 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 11; + pixel_x = 9 + }, +/obj/item/map{ + name = "marked map of sewage treatment facilities"; + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/newspaper{ + pixel_y = -2; + pixel_x = 3; + name = "half-finished report on corroding waste treatment facilities m7-2182" + }, +/obj/item/tool/pen/blue, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"nsh" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"nsi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"nsw" = ( +/obj/structure/largecrate/random/barrel, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"nsy" = ( +/obj/structure/surface/rack, +/obj/item/toy/blink, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"nsA" = ( +/obj/structure/machinery/meter{ + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"nsD" = ( +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"nsI" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"nsK" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Captain's Quarters" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"nsP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"nsR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"ntX" = ( +/obj/item/trash/chunk, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"nuf" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/east) +"num" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"nun" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"nus" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"nuL" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"nva" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"nvb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Cellblock" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"nvf" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"nvw" = ( +/obj/structure/fence, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"nvE" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"nwr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/oob) +"nww" = ( +/obj/structure/tunnel, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"nwI" = ( +/obj/structure/machinery/telecomms/hub{ + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/wood, +/area/lv873/oob) +"nwO" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"nxb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"nxd" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"nxe" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/east/slums) +"nxr" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"nxx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"nxG" = ( +/obj/item/clothing/under/colonist/workwear, +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"nxR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Hostel Corporate Room 1" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"nyb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"nyj" = ( +/obj/item/trash/waffles, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"nyq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall, +/area/lv873/indoors/southwest/slums) +"nyC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -5; + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"nyF" = ( +/obj/structure/surface/table, +/obj/item/storage/donut_box/empty, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"nyS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"nzf" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/lockerroom) +"nAe" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"nAs" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"nAK" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"nAQ" = ( +/obj/structure/machinery/atm{ + pixel_x = 32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"nAT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"nBa" = ( +/obj/structure/machinery/disposal, +/obj/item/trash/cigbutt{ + pixel_y = 11; + pixel_x = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"nBd" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nBw" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/mineral/plastic{ + pixel_y = 9 + }, +/obj/item/stack/sheet/glass, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"nBx" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"nBy" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Operations Security Room"; + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"nBC" = ( +/obj/structure/prop/dam/van/damaged, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"nBH" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/magazine/book{ + name = "The Coming Liberation - The Insurrectionists Manifesto"; + desc = "This book appears to be battered and decomposing, it must have been carried in some very poor conditions over the years." + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"nBN" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"nBX" = ( +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"nBZ" = ( +/obj/structure/mineral_door/wood/open{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/farm_shack) +"nCt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"nCz" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"nCX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"nDb" = ( +/obj/item/paper/crumpled{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nDd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"nDg" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"nDn" = ( +/obj/structure/filingcabinet, +/obj/structure/window{ + pixel_y = 31 + }, +/obj/item/folder, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"nDq" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"nDu" = ( +/obj/structure/surface/table, +/obj/item/tool/soap/nanotrasen, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"nDA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"nDH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/obj/structure/sign/safety/hazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"nDQ" = ( +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"nDS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/hallway/north) +"nDZ" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"nEn" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/cmb/exterior) +"nED" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/oob) +"nFc" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/flooded_streets/east) +"nFl" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"nFm" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/microwave{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"nFK" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"nFM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/dam/van{ + dir = 4; + pixel_y = 17 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"nFY" = ( +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Emergency Tower Lockdown"; + dir = 8; + id = "tower" + }, +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/aerospace_control) +"nGi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"nGx" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"nGG" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/operations/lockerroom) +"nGS" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 6; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"nHj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/beaker/sulphuric, +/obj/item/lightstick/red/variant{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/wrench{ + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"nHK" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"nHV" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/sign/poster/propaganda{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"nIP" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "power_station"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating{ + dir = 9; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"nIR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"nIT" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/flooded/waste_silos) +"nIV" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"nJa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"nJp" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"nJy" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"nJD" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/west) +"nJY" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"nKb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/shard, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/offices/northwest) +"nKl" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/surface/rack, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/obj/item/storage/beer_pack, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/flooded/weymart) +"nKD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"nKG" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -10; + pixel_y = 21 + }, +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/southwest/slums) +"nLe" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/clf_communications) +"nLo" = ( +/obj/structure/prop/static_tank/water{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -12; + pixel_y = 7 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_y = 8; + pixel_x = 13; + name = "water pipe segment"; + layer = 3.1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"nLt" = ( +/obj/structure/filingcabinet, +/obj/item/newspaper{ + name = "lz2 flight logs m-7 yr-2182" + }, +/obj/item/newspaper{ + name = "lz1 flight logs m-7 yr-2182" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"nLw" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"nLC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/offices) +"nLJ" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 8; + pixel_y = 24 + }, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 8; + pixel_y = 17 + }, +/obj/item/tool/extinguisher{ + pixel_x = -8; + pixel_y = 22 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"nLO" = ( +/obj/structure/window/framed/wood, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"nLS" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"nLX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"nMy" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/clf_barracks) +"nMX" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"nNj" = ( +/obj/structure/stairs, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"nNA" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Cell 4" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"nNG" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"nOb" = ( +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"nOd" = ( +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"nOj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"nOw" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"nOB" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"nOM" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"nOQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"nOS" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"nPa" = ( +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"nPi" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/lobby) +"nPx" = ( +/obj/structure/prop/server_equipment, +/obj/structure/cable/heavyduty, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"nPC" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"nPJ" = ( +/obj/structure/curtain/medical, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"nPN" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/operations/offices/east) +"nPR" = ( +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"nQa" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel1b"; + pixel_y = 20 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"nQi" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/landing_zones_disembark) +"nQy" = ( +/obj/structure/prop/ice_colony/ground_wire{ + pixel_x = 5 + }, +/obj/item/tool/wet_sign{ + desc = "Evidence marker"; + name = "evidence marker" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"nQE" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"nRj" = ( +/obj/structure/bed/stool{ + pixel_x = -8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"nRl" = ( +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/south) +"nRr" = ( +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"nRs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"nRu" = ( +/obj/structure/platform_decoration/kutjevo/smooth{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"nRD" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 5 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"nRV" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"nRX" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"nSm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cheeseburger) +"nSp" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/operations/offices/southwest) +"nSq" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/item/trash/tray, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"nSr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"nSs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"nSz" = ( +/obj/item/device/assembly/mousetrap{ + pixel_x = -10; + pixel_y = -4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"nSD" = ( +/obj/structure/prop/brazier/campfire, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/flooded_streets/west) +"nSN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/turf/open/floor, +/area/lv873/indoors/power_station) +"nSP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"nSZ" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"nTe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"nTi" = ( +/obj/item/clothing/shoes/galoshes, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nTq" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/south) +"nTB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"nTC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/south/slums) +"nTH" = ( +/obj/item/shard, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"nTU" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4; + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/toy/plush/farwa{ + pixel_x = 17; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"nUf" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"nUi" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"nUp" = ( +/obj/structure/bedsheetbin{ + pixel_x = -8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"nUA" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = -9 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 9 + }, +/obj/item/toy/beach_ball/holoball, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_y = 14 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/hospital/break_garden) +"nUE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"nUL" = ( +/obj/structure/closet/cabinet, +/obj/item/storage/briefcase, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/colonist/workwear, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"nUM" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/oob) +"nUX" = ( +/turf/closed/wall, +/area/lv873/indoors/bungalow_manager) +"nVh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/trash/hotdog, +/obj/item/trash/burger{ + pixel_y = -6 + }, +/obj/item/trash/barcardine, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"nVx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/ceramic_plate, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nVy" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nVC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "bungalow_gate"; + name = "\improper Executive Bunglalow Gate" + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lz_sec_checkpoint) +"nVG" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"nVK" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/med_small_stack{ + pixel_y = 13 + }, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"nVL" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/cmb/exterior) +"nVN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/curtain/medical, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"nVX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Gold Insurance Salesman Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"nWb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"nWm" = ( +/obj/item/reagent_container/food/snacks/sliceable/braincake{ + anchored = 1; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/reagent_container/food/snacks/sliceable/braincake{ + anchored = 1; + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/sliceable/braincake{ + anchored = 1; + pixel_y = 18 + }, +/turf/open/floor/prison/chapel_carpet{ + icon_state = "damaged3" + }, +/area/lv873/indoors/southwest/slums) +"nWw" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/cmb/exterior) +"nWz" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"nWI" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/flask/weylandyutani/poison, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"nXf" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"nXn" = ( +/obj/structure/filingcabinet, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"nXv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/north) +"nXJ" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/flooded/west_apartments) +"nXQ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/item/clothing/head/soft/blue, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"nXX" = ( +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"nXZ" = ( +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"nYb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/reception) +"nYn" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"nYo" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"nYx" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"nYE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"nYW" = ( +/obj/structure/sign/safety/reception{ + pixel_y = 32; + pixel_x = 7 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"nZb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/trash/snack_bowl, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"nZp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bunkroom" + }, +/turf/open/floor/wood, +/area/lv873/oob) +"nZt" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/device/radio/headset/distress, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"nZw" = ( +/obj/structure/transmitter/colony_net{ + dir = 1; + pixel_y = -21; + phone_category = "Memorial Hospital"; + phone_id = "Corporate Supervisor's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"nZx" = ( +/obj/structure/fence, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"nZE" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"nZN" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/tool/pen/clicky{ + pixel_y = 0; + pixel_x = 3; + layer = 3.10 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/offices) +"oab" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/hospital/break_garden) +"oai" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/hotdog, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -6; + pixel_x = -9 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/item/trash/buritto, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"oal" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"oau" = ( +/obj/structure/closet/bodybag, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"oaJ" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"oaR" = ( +/turf/closed/wall, +/area/lv873/indoors/southwest/slums) +"oba" = ( +/turf/open/gm/coast/dirt/beachcorner2/south_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"obf" = ( +/obj/structure/prop/souto_land/pole{ + pixel_x = 15; + pixel_y = 8; + desc = "It's a standard looking pole."; + name = "pole" + }, +/obj/item/spacecash/c10, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"obm" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/mushroompizzaslice{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"obC" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"obP" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"oci" = ( +/obj/structure/machinery/chem_storage/medbay, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ocj" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"ocl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"ocp" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"ocI" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"ocK" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"ocU" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"ocZ" = ( +/obj/structure/prop/dam/van{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"ods" = ( +/obj/structure/filingcabinet, +/obj/item/folder, +/obj/item/folder/blue, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"odG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Cell 3" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"odT" = ( +/obj/structure/largecrate/supply/weapons/m41a{ + desc = "A weapons chest containing ten M41A rifles. The chest claims to be from a USCM ship called the USS Arrow of Gold."; + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"oea" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"oeb" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/plating, +/area/lv873/indoors/east/slums) +"oec" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/west) +"oek" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/southwest) +"oel" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oem" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"oen" = ( +/obj/structure/largecrate/supply/supplies, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"oeF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"oeI" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/clothing/under/liaison_suit/black, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"oeN" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/flooded_streets/east) +"oeO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = -16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"oeR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"oeT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"oeW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"oeX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 13 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"oeZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"ofg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/south) +"ofj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + pixel_x = -1 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"ofo" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"ofG" = ( +/turf/open/gm/coast/dirt/beachcorner2/south_east, +/area/lv873/outdoors/flooded_streets/east) +"ogk" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"ogD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/device/eftpos{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"ogF" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/lv873/indoors/southeast/slums) +"ogP" = ( +/obj/structure/machinery/light/small, +/obj/item/explosive/plastic/breaching_charge, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"ogU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/flora/bush/desert{ + desc = "This poor tree hasn't been properly pruned in years."; + icon_state = "tree_2"; + name = "unkempt bonsai tree"; + pixel_y = 14 + }, +/obj/item/trash/snack_bowl{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"ohh" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"ohl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"ohz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"ohC" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"ohG" = ( +/obj/structure/surface/rack, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/oob) +"ohL" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ohN" = ( +/obj/item/map{ + name = "map of sewage treatment facilities"; + pixel_y = 0; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"ohR" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"oio" = ( +/obj/vehicle/powerloader{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"oiw" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/south) +"oix" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/southeast/slums) +"oiH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"ojh" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"ojk" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"ojZ" = ( +/obj/item/tool/kitchen/utensil/pspoon{ + pixel_y = 11 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/east) +"oke" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"okl" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"oko" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"okB" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Jeppson's Memorial Hospital Research Wing" + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"okH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"okL" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ola" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/south) +"olF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"omD" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/landing_zone_1) +"omF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4; + pixel_x = 8 + }, +/obj/item/toy/handcard/uno_reverse_blue{ + pixel_x = 11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"omK" = ( +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"omL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"omS" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"onj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"onr" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"ont" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"onQ" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"onR" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"onS" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"onV" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/canteen) +"onY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/uscm{ + name = "blank enlistment form"; + pixel_y = 10 + }, +/obj/item/tool/pen/blue, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"oog" = ( +/obj/item/ammo_magazine/pistol/skorpion{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/pistol/skorpion{ + pixel_x = 17; + pixel_y = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"ooj" = ( +/obj/item/ashtray/glass, +/obj/item/reagent_container/syringe, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"oom" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"ooz" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv873/indoors/operations/hallway/west) +"ooG" = ( +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/south/slums) +"ooR" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southeast) +"ooS" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"ooU" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ooW" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"opw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"opE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"opK" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"opS" = ( +/obj/item/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/south/slums) +"oqo" = ( +/obj/structure/machinery/photocopier, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"oqu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"oqx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1; + pixel_x = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = 15 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/xenobiological_research) +"oqB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/np92/suppressed, +/obj/item/handcuffs, +/turf/open/floor/wood, +/area/lv873/oob) +"oqJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ + pixel_y = 9; + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"oqP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"ord" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"oru" = ( +/obj/item/stool, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"orE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + layer = 3.25 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"orP" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"orQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"osg" = ( +/obj/structure/largecrate/random/case, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"osu" = ( +/obj/item/trash/hotdog, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/trash/hotdog, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"osE" = ( +/obj/structure/prop/server_equipment/laptop/on, +/obj/structure/surface/table/woodentable/poor, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"osF" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/south) +"osI" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/oob) +"osK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"osL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"osY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/utensil/pspoon{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"otb" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"otz" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/landing_zone_2) +"otR" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"otV" = ( +/obj/item/ammo_magazine/handful/shotgun/beanbag, +/obj/structure/surface/table, +/turf/open/gm/road, +/area/lv873/outdoors/cmb/exterior) +"oui" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"ouq" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/item/newspaper{ + name = "report on increasing personnel disappearances m-7 yr-2182" + }, +/obj/item/tool/pen/blue, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"ouK" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"ouO" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"ovc" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"ovq" = ( +/obj/structure/curtain/medical{ + pixel_y = -32 + }, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"ovs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ovB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"ovE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"ovS" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"owf" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/clothing/suit/bio_suit/general, +/obj/item/clothing/head/bio_hood/general, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/weapon/gun/pistol/vp78, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/offices) +"owi" = ( +/obj/item/storage/beer_pack{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/beer_pack{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/storage/beer_pack{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"owW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"owY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"oxa" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"oxg" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"oxn" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/item/stack/sheet/wood{ + anchored = 1; + density = 1; + pixel_y = -4 + }, +/obj/item/stack/sheet/wood{ + anchored = 1; + density = 1; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/trapped_house) +"oxC" = ( +/obj/item/weapon/gun/pistol/m4a3/training{ + current_mag = null + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"oxI" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"oxM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + name = "\improper Liam's Automobile Repair Shop Garage"; + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"oyf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"oyn" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"oyu" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"oyw" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/oob) +"oyx" = ( +/obj/structure/surface/rack, +/obj/item/trash/eat, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_y = -6 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"oyA" = ( +/obj/structure/surface/rack, +/obj/item/device/cassette_tape/heavymetal, +/obj/item/device/walkman, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"oyJ" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"oyP" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"oyY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"ozq" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/oob) +"ozu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"ozz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Weyland-Yutani Welcome Center 'Alexandria' Bar" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"ozF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"ozH" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Research Director's Office" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/offices) +"ozX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/meter, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"oAG" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/item/toy/snappop{ + pixel_x = -3; + pixel_y = 19 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/school) +"oAH" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/flooded_streets/west) +"oBk" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/southwest) +"oBG" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/powerloader_wreckage/jd, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"oBH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/far, +/obj/item/ashtray/plastic{ + pixel_y = 12 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/lockerroom) +"oBJ" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lz_sec_checkpoint) +"oBM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigar/matchbook/exec_select{ + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_y = 11; + pixel_x = 10 + }, +/obj/item/ashtray/bronze{ + pixel_x = -9 + }, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_y = -1 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"oBZ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"oCr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"oCt" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"oCA" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"oCE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"oCS" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"oDe" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/spacecash/c20{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/spacecash/c20{ + pixel_y = 0 + }, +/obj/item/ashtray/plastic{ + pixel_y = 8; + pixel_x = -7 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 19; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"oDi" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_y = 5; + pixel_x = -3 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"oDz" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating{ + icon_state = "platebot" + }, +/area/lv873/indoors/power_station) +"oDF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + pixel_x = -1 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"oEc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"oEd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"oEw" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"oEz" = ( +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"oEE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/power_station) +"oEI" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"oEQ" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"oEV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"oFh" = ( +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"oFl" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"oFH" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_1) +"oFQ" = ( +/obj/item/trash/kepler, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"oFS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"oFU" = ( +/obj/structure/curtain/medical{ + pixel_y = -32 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"oGe" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/south/slums) +"oGo" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/canteen) +"oGt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"oGI" = ( +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oHv" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weymart) +"oHC" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"oHH" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"oHQ" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"oHR" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/faxmachine, +/obj/item/newspaper{ + name = "fax correspondence m-7 yr-2182" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"oIa" = ( +/obj/item/storage/firstaid{ + pixel_x = -10; + pixel_y = -11 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"oIg" = ( +/obj/item/frame/table/almayer, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"oIj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/alien/hugger, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"oIL" = ( +/obj/item/shard, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"oIY" = ( +/obj/item/tool/kitchen/utensil/pspoon{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"oIZ" = ( +/obj/item/stack/sheet/metal, +/obj/item/prop/alien/hugger, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"oJe" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"oJj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/east/slums) +"oJv" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "bungalow_gate"; + name = "west button"; + pixel_y = -19; + req_one_access_txt = "2;3;12;19"; + pixel_x = -8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"oJE" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"oJK" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"oJS" = ( +/obj/item/storage/box/bodybags, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/lobby) +"oKt" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"oKI" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"oKO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/item/clothing/head/soft/trucker, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"oKU" = ( +/obj/docking_port/stationary/marine_dropship/lz2, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"oLa" = ( +/turf/closed/wall, +/area/lv873/indoors/marshals/interrogation) +"oLi" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/colonist/workwear/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"oLl" = ( +/obj/effect/landmark/xeno_hive_spawn, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/serverroom) +"oLn" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"oLw" = ( +/obj/structure/sign/poster/safety{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"oLx" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"oLA" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_y = 1 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"oLM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"oMd" = ( +/obj/structure/machinery/light, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/canteen) +"oMw" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"oMx" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/sosjerky, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"oMP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"oMU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Wey-Mart" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"oNi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"oNn" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/lv873/oob) +"oNo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"oNp" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"oNw" = ( +/obj/structure/prop/dam/truck/damaged, +/obj/effect/alien/resin/spike, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"oNL" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks/macho, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"oNN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"oNV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"oOe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"oOk" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"oOl" = ( +/obj/structure/surface/table, +/obj/item/device/cassette_tape/ocean, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"oOn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "director-panic"; + name = "\improper Panic Room Armory" + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ + name = "\improper Panic Room Armory" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/offices) +"oOs" = ( +/obj/structure/surface/table, +/obj/item/device/cassette_tape/ocean{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/item/device/walkman{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"oOE" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan3" + }, +/area/lv873/indoors/ss_athens) +"oPB" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"oPG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"oPO" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"oPS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper USCMC Security Checkpoint" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"oPZ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"oQs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -11; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"oQz" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/marshals/mainhall) +"oQL" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/oob) +"oQS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/ashtray/glass{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"oRx" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/east) +"oRL" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"oRQ" = ( +/obj/item/clothing/suit/chef/classic, +/obj/structure/sign/safety/food_storage{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"oSa" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"oSn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"oSp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Neil's Arcade" + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"oSx" = ( +/obj/structure/surface/rack, +/obj/item/paper/janitor{ + info = "A standard Travel Agency slogan about sending you somewhere 'exciting'." + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"oSz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"oSS" = ( +/obj/structure/surface/table, +/obj/item/trash/candle, +/turf/open/floor{ + icon_state = "chapel"; + dir = 1 + }, +/area/lv873/indoors/south/slums) +"oTo" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"oTu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"oTw" = ( +/obj/item/clothing/head/soft/blue, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"oUh" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"oUu" = ( +/obj/structure/curtain/red, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oUw" = ( +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/urinal{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"oUJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oUN" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/northeast) +"oUX" = ( +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"oVp" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"oWT" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/landing_zone_1) +"oXd" = ( +/obj/item/trash/kepler, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"oXn" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -6; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"oXu" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"oXG" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"oXQ" = ( +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"oXS" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/landing_zone_2) +"oXX" = ( +/obj/structure/window_frame/wood, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"oYd" = ( +/turf/open/gm/coast/dirt/beachcorner/south_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"oYl" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 4 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -3 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -11 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"oYw" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oYD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Walk-In Refrigerator"; + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"oYG" = ( +/obj/item/device/walkman{ + pixel_x = 7; + pixel_y = 19 + }, +/obj/item/storage/pouch/cassette{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/carpet{ + icon_state = "bcarpet09" + }, +/area/lv873/indoors/southeast/slums) +"oYL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"oYM" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oYO" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 21 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 21 + }, +/obj/item/book/manual/barman_recipes, +/obj/item/book/manual/chef_recipes, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/hydroponics_beekeeping, +/obj/item/book/manual/detective, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"oYS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/shard, +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"oYW" = ( +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 12; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 13; + pixel_y = 9 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/effect/spawner/random/powercell, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"oYX" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/item/bedsheet/green, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"oYZ" = ( +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"oZc" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"oZf" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"oZg" = ( +/obj/item/tool/soap{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/explosive/grenade/custom/cleaner, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"oZk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"oZm" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"oZo" = ( +/obj/structure/cable{ + icon_state = "5-8" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"oZC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/bungalow_manager) +"oZW" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan2" + }, +/area/lv873/indoors/ss_athens) +"oZY" = ( +/obj/structure/filingcabinet, +/obj/item/disk, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"paj" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 15; + pixel_y = -8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/bed/bedroll{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/item/device/motiondetector/hacked/pmc{ + pixel_y = 13; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/south) +"pay" = ( +/obj/structure/lz_sign/isaacs_lament{ + layer = 4; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_1) +"paN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"paW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -12 + }, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/grown/mtear{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/carrotcakeslice{ + pixel_x = 6 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"pbd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"pbx" = ( +/obj/structure/filingcabinet, +/obj/item/folder/blue, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"pbC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/bungalow_manager) +"pbU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"pck" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/insurance) +"pcN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"pdt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper The Pole Museum" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"pdw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/southeast) +"pdF" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 8; + name = "\improper Intelligence Officer's Office" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"pdG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"pdI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/secure_data{ + dir = 1; + pixel_y = -4; + pixel_x = 16; + layer = 2.99 + }, +/obj/item/prop/tableflag, +/obj/item/device/taperecorder/empty{ + pixel_x = -12 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"peo" = ( +/obj/item/device/walkman, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/southwest) +"pev" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"peB" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southeast) +"peI" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/item/storage/briefcase/stowaway, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"pfn" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"pfw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/crushed_cup, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"pfz" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Cryobay" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"pfF" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"pfH" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/signaller{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/device/t_scanner{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"pfJ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/sign/safety/reception{ + pixel_y = 0; + pixel_x = -18 + }, +/obj/structure/sign/safety/south{ + pixel_y = 0; + pixel_x = -31 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"pfX" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"pfZ" = ( +/turf/open/floor/wood, +/area/lv873/indoors/flooded/west_apartments) +"pgg" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"pgk" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/cargo_lz) +"pgm" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"pgp" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"pgq" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"pgr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + layer = 3.25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"pgt" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/south) +"pgA" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/surface/rack, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/weymart) +"pgH" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41aMK1{ + pixel_y = 2 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"phb" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"phg" = ( +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"phs" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil/random, +/obj/item/tool/wirecutters{ + pixel_x = 9; + pixel_y = 14 + }, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"phA" = ( +/obj/item/weapon/gun/shotgun/merc/damaged, +/obj/item/stack/sheet/metal{ + layer = 3 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"phB" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"phC" = ( +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"phG" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"phK" = ( +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"phL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"phY" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + name = "Rockin' Robin 2300 Jukebox"; + icon_state = "jukebox"; + icon = 'icons/obj/structures/props/misc.dmi'; + pixel_y = 16; + desc = "This jukebox only takes quarters,and you seem to be out of them at the moment." + }, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"pis" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"piC" = ( +/obj/structure/window_frame/colony, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating, +/area/lv873/indoors/east/slums) +"piR" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/east) +"piV" = ( +/obj/item/frame/rack, +/obj/item/reagent_container/food/snacks/grown/potato, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"pjd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + dir = 1; + locked = 1; + name = "\improper Garage Manway" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"pje" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"pjk" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"pjq" = ( +/obj/item/storage/briefcase{ + pixel_x = -1 + }, +/obj/item/storage/briefcase{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"pjA" = ( +/obj/structure/cable{ + icon_state = "1-9" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "8-10" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"pjF" = ( +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/structure/largecrate/random/mini/chest/c{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"pjG" = ( +/turf/open/floor/carpet{ + icon_state = "bcarpet09" + }, +/area/lv873/indoors/southwest/slums) +"pjK" = ( +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"pkE" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"pkF" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/operations/offices/northwest) +"pkG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"pkM" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/southwest) +"pkS" = ( +/obj/item/ammo_magazine/revolver/cmb/normalpoint, +/obj/structure/surface/table, +/turf/open/gm/road, +/area/lv873/outdoors/cmb/exterior) +"pkT" = ( +/obj/item/reagent_container/syringe, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pkZ" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/east) +"pla" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"plq" = ( +/obj/item/stack/rods, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pls" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/item/trash/cigbutt{ + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"plu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"pma" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/east) +"pmD" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"pmH" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"pnx" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = 32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"pnA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"pnB" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"pnE" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"pnN" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/bungalow_manager_exterior) +"pnP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"pnX" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/machinery/space_heater/radiator{ + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"poc" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/nade_box/airburst, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"pod" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/landing_zones_disembark) +"poh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"poi" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"pok" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/offices/northwest) +"poy" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"poz" = ( +/obj/structure/tunnel, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"poH" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"poQ" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/item/folder, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"poY" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/clf_barracks) +"ppn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "mechanic_garage"; + name = "\improper Mechanic's Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"ppo" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ppr" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25; + density = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25; + density = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"ppv" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_container/blood/empty{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -10; + pixel_y = -9 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"ppE" = ( +/obj/item/map/current_map{ + pixel_x = 32 + }, +/obj/item/device/t_scanner{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 11 + }, +/obj/item/device/demo_scanner{ + pixel_x = 10; + pixel_y = -5; + name = "gaussification scanner" + }, +/obj/item/device/reagent_scanner{ + pixel_y = -5 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"ppH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/milosoup, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"ppS" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 0 + }, +/obj/item/storage/toolbox/emergency{ + pixel_y = -6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"ppX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"pqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/weeds/node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/serverroom) +"pqC" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"pqN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"pqR" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/storage/pouch/flare, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"pqT" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"prn" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/structure/window{ + pixel_y = 31 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"prP" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = 1; + pixel_y = 14 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southeast) +"prX" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/item/shard, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"pso" = ( +/obj/structure/surface/table, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"psr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/item/newspaper{ + name = "report on increasing personnel disappearances m-7 yr-2182" + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"psy" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/south) +"psA" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"psF" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"psG" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/southeast) +"psH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/trading_card, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"psJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/insurance) +"psN" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"ptb" = ( +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/item/tool/pen/clicky, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/south/slums) +"ptc" = ( +/obj/item/spacecash/c1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"ptq" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"ptt" = ( +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"ptv" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ptG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/packet/high_explosive{ + pixel_y = 6 + }, +/obj/item/storage/box/packet/high_explosive{ + pixel_y = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/armory) +"ptU" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"puf" = ( +/obj/structure/prop/power_transformer, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"pug" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"puh" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"pun" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"pup" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/meatsteak, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"puw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"puz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic{ + pixel_y = -7 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/structure/window{ + pixel_y = 0; + layer = 3; + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/reception) +"puB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/clf_barracks) +"puN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"puR" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/storage/bible/booze{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/item/toy/plush/yautja{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pvR" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = 7 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"pwq" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"pwu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"pwC" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"pwF" = ( +/obj/structure/bed/roller, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"pwY" = ( +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"pwZ" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/east) +"pxe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/insurance) +"pxm" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/reagent_dispensers/fueltank/gas{ + name = "leaking gastank" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"pxq" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"pxw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"pxC" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"pyg" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"pym" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"pyA" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"pyH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 9 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"pyO" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/phosphorus/upp{ + pixel_x = -9; + pixel_y = -15 + }, +/obj/item/clipboard{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"pyP" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/folder/black, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"pzf" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"pzp" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/floodlight/landing, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"pzr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"pzw" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/custom/ied{ + pixel_x = 7 + }, +/obj/item/explosive/grenade/custom/ied, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"pAy" = ( +/obj/structure/filingcabinet, +/obj/item/folder/white, +/obj/item/folder/blue, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"pAN" = ( +/obj/structure/sign/safety/security{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/hospital/road_north_west) +"pAS" = ( +/obj/structure/surface/table, +/obj/item/circuitboard, +/obj/item/circuitboard{ + pixel_y = 3 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"pAV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "armysurplus_garage"; + name = "\improper Army Surplus Storage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"pAX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"pBl" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel4a" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"pBx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/uppcap/civi, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pBB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_y = 1 + }, +/obj/item/newspaper{ + pixel_y = 0; + name = "half-finished correspondence on water treatment facilities m-7 yr-2182" + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"pBG" = ( +/obj/item/tool/wet_sign, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"pBJ" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/east_apartments) +"pBS" = ( +/obj/item/tank/emergency_oxygen{ + name = "anathesia tank" + }, +/obj/item/clothing/head/surgery, +/obj/item/clothing/mask/breath/medical{ + pixel_y = -10 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"pCk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"pCm" = ( +/turf/closed/wall/r_wall, +/area/lv873/oob) +"pCq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"pCs" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"pCv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/flooded_streets/west) +"pCF" = ( +/obj/structure/transmitter/colony_net{ + dir = 1; + pixel_y = -21; + phone_category = "Pole Museum"; + phone_id = "Front Desk" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"pCH" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"pCW" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/oob) +"pDF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "wy_compound_gate"; + name = "\improper Weyland-Yutani Hostel Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"pDY" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel2a" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"pEj" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_1) +"pEv" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/lv873/oob) +"pEN" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"pFk" = ( +/obj/structure/closet/crate/miningcar{ + anchored = 1; + density = 0; + name = "\improper laundry cart"; + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"pFn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/canteen) +"pFs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Walk-In Refrigerator" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"pFz" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 10 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"pFA" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"pFD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"pFG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"pFK" = ( +/obj/structure/sink{ + pixel_x = -5; + pixel_y = 28 + }, +/obj/structure/toilet{ + pixel_y = 8; + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"pGf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"pGl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"pGD" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/mask/surgical, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/lockerroom) +"pHv" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"pHA" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_east, +/area/lv873/outdoors/flooded_streets/west) +"pHS" = ( +/turf/open/gm/coast/dirt/beachcorner/north_west, +/area/lv873/outdoors/flooded_streets/west) +"pIz" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"pIC" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"pJf" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"pJm" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"pJD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 15 + }, +/obj/item/reagent_container/food/snacks/csandwich, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"pJF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Synthetic Shed" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"pJR" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/outdoors/flooded_streets/west) +"pKc" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = 9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"pKe" = ( +/obj/structure/fence, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/bungalow_manager_exterior) +"pKw" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"pKB" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/east_apartments) +"pKN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/east) +"pKO" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/heavyduty{ + pixel_y = 7 + }, +/obj/item/stack/cable_coil/heavyduty{ + pixel_y = -1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"pKZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southeast) +"pLb" = ( +/obj/item/trash/candy, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"pLc" = ( +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"pLo" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"pLC" = ( +/obj/item/trash/chunk{ + pixel_x = 6; + pixel_y = 11 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"pLD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pLH" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"pLT" = ( +/obj/item/frame/table/almayer, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"pLW" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/aerospace_control) +"pMd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"pMg" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"pMl" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"pMq" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"pMt" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = 11 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"pMF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"pMV" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "marshal_garage_2"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = -30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"pNh" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"pNi" = ( +/obj/structure/barricade/sandbags/wired{ + icon_state = "sandbag_0" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/outdoors/cmb/exterior) +"pNt" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_y = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"pNE" = ( +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "5-6" + }, +/obj/structure/machinery/light/small, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"pNO" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"pOf" = ( +/obj/structure/surface/table, +/obj/item/storage/box/disks, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"pOy" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"pOz" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"pOG" = ( +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/obj/structure/closet/walllocker{ + pixel_x = -32 + }, +/obj/item/storage/box/guncase/mod88, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"pOK" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 11 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/hospital/break_garden) +"pPb" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/hospital/break_garden) +"pPc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"pPd" = ( +/obj/structure/filingcabinet, +/obj/item/folder/red, +/obj/item/folder/yellow, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"pPh" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/hospital/road_north_west) +"pPt" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"pPy" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 3 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"pPC" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"pPF" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"pQg" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/oob) +"pQh" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"pQo" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/landing_zone_1) +"pQp" = ( +/obj/structure/largecrate/supply/supplies/plasteel, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"pQu" = ( +/obj/structure/prop/dam/van, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"pQH" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"pRb" = ( +/obj/item/stack/sheet/metal, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"pRh" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"pRl" = ( +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 9 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -9 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/oob) +"pRr" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"pRJ" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"pRY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 13; + pixel_x = 5 + }, +/obj/item/ashtray/plastic, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/prop/magazine/book{ + pixel_x = -7; + pixel_y = -1; + name = "Australia! From Colony to Apocalypse"; + desc = "Written by an Australian nationalist who escaped the nuking of Canberra, making an interesting argument against megacorps and the Three World Empire." + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"pSv" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Operations Security Room" + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"pSF" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_y = -32; + pixel_x = 7 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"pSN" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel3c" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pTb" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"pTe" = ( +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"pTg" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"pTA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/milosoup, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 5; + pixel_y = 16 + }, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"pTQ" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/floor/prison/chapel_carpet{ + icon_state = "damaged1" + }, +/area/lv873/indoors/southwest/slums) +"pUk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"pUy" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"pVf" = ( +/obj/item/paper/crumpled, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"pVv" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"pVz" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper USCMC Sergeant's Office" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"pVB" = ( +/obj/structure/surface/rack, +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"pWa" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"pWg" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/storage) +"pWk" = ( +/turf/open/floor, +/area/lv873/indoors/power_station) +"pWl" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/east) +"pWq" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/eat, +/obj/item/reagent_container/food/drinks/bottle/cream{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"pWx" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/item/weapon/gun/smg/nailgun/compact, +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"pWG" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/west) +"pWI" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"pWN" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/east/slums) +"pXg" = ( +/obj/item/stack/sheet/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"pXj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"pXs" = ( +/obj/item/frame/table/wood, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"pXv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"pXK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/bungalow_manager_exterior) +"pXR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/clothing/head/hardhat, +/obj/item/trash/cigbutt, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"pYa" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/east/slums) +"pYg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"pYN" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/cmb/exterior) +"pYO" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/candle_box, +/turf/open/floor{ + icon_state = "chapel"; + dir = 4 + }, +/area/lv873/indoors/south/slums) +"pYV" = ( +/obj/structure/bookcase{ + icon_state = "book-3" + }, +/turf/open/floor/carpet{ + icon_state = "bcarpet07" + }, +/area/lv873/indoors/southwest/slums) +"pYZ" = ( +/obj/structure/bedsheetbin{ + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"pZb" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"pZe" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/flooded_streets/east) +"pZn" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 17 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"pZy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"pZL" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"pZP" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/storage/fancy/cigar{ + pixel_y = 9 + }, +/obj/item/storage/box/matches{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/head/hardhat{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"pZY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"qab" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/item/tool/pen/clicky{ + pixel_y = -6; + pixel_x = -6 + }, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"qaA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"qaE" = ( +/obj/item/trash/eat, +/obj/item/trash/crushed_cup, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"qaI" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"qaJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qaO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"qbf" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"qbm" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"qbB" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"qbF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"qbK" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"qbM" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"qcq" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"qcC" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"qcJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Stanley's Electronics Repair Shop" + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"qcQ" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/southwest) +"qdg" = ( +/obj/structure/curtain/medical{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"qdh" = ( +/obj/item/spacecash/c10, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/obj/structure/machinery/light_construct, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"qdq" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qds" = ( +/obj/item/shard, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"qdA" = ( +/obj/structure/mineral_door/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qdK" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/flooded_streets/west) +"qdM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"qdT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"qeg" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Waiting Room" + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"qeh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"qer" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"qeH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"qeJ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_y = 14; + layer = 3.5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"qeO" = ( +/obj/structure/prop/tower, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"qfc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + dir = 1; + name = "\improper Power Station" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"qfj" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"qfo" = ( +/obj/item/storage/beer_pack{ + pixel_y = 2 + }, +/obj/item/storage/beer_pack{ + pixel_y = -4 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"qfw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/south/slums) +"qfJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/filingcabinet, +/obj/item/folder/red, +/obj/item/folder/black, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"qfL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"qfP" = ( +/obj/item/stool{ + pixel_x = 9 + }, +/obj/item/stool{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 6 + }, +/obj/structure/sign/poster/art{ + pixel_x = -25 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qfX" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"qgp" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/east) +"qgs" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"qgu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"qgv" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"qgw" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"qgy" = ( +/obj/structure/curtain/red{ + pixel_y = 32; + layer = 3 + }, +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/bladerunner{ + pixel_y = -2; + pixel_x = -9 + }, +/obj/item/prop/magazine/book/borntokill{ + pixel_y = -2; + pixel_x = 1 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_y = -2; + pixel_x = 12 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ + pixel_y = 14; + pixel_x = -10 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ + pixel_y = 14; + pixel_x = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"qgB" = ( +/obj/item/light_bulb/bulb, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/lv873/indoors/marshals/cells) +"qgQ" = ( +/obj/item/stool, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/clothing/head/cmcap/boonie, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"qgS" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"qgV" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"qgZ" = ( +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 1; + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 12; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"qhh" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"qhm" = ( +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"qhE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"qhF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"qhJ" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"qhM" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"qhU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"qhX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "uscm_garrison"; + name = "\improper USCMC Garrison Gate" + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"qig" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"qiu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qiR" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/foot/r_foot, +/obj/item/clothing/shoes/leather, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qiY" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip2" + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"qjk" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"qjC" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"qjK" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"qjL" = ( +/obj/structure/bed/chair/office{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/eat{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/trash/eat{ + pixel_x = 14; + pixel_y = 3 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"qjP" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = 3; + pixel_y = 16 + }, +/obj/structure/closet/cabinet{ + density = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qjY" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"qkd" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/operations/offices/southwest) +"qkf" = ( +/obj/item/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"qkj" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"qkl" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"qkr" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on accomodations for increasing company activity m-7 yr-2182"; + pixel_x = 7 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on gang-sabotaged telecommunications m-7 yr-2182"; + pixel_x = -7 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"qky" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"qkB" = ( +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"qkC" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"qkD" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"qkS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"qkW" = ( +/obj/structure/prop/dam/truck/damaged{ + pixel_y = 6; + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"qkY" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor{ + icon_state = "whitegreenfull" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"qlg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/blood/OMinus{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"qli" = ( +/obj/item/stack/cable_coil, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"qlD" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"qlW" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "CMB Office"; + phone_id = "Barracks" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"qmb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/burger, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"qme" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + locked = 1; + name = "\improper Garage Manway"; + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"qmg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"qmk" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/reception) +"qmD" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/offices) +"qnn" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"qnp" = ( +/obj/structure/flora/bush/ausbushes/ppflowers{ + icon_state = "lavendergrass_1" + }, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"qnr" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qnK" = ( +/obj/structure/prop/dam/truck/cargo{ + icon_state = "tractor"; + dir = 4 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"qnT" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"qnX" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/reception) +"qoh" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/flooded) +"qon" = ( +/obj/item/spacecash/c1{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"qoA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"qoH" = ( +/obj/structure/curtain, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"qoI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/cm_vending/sorted/walkman, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"qoO" = ( +/obj/item/shard, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"qph" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.21 + }, +/obj/item/tool/soap/syndie{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"qpl" = ( +/obj/structure/stairs, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"qpM" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"qqb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"qqg" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southeast) +"qql" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"qqH" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southeast) +"qqS" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Medical Bay" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"qqT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/wirecutters/clippers, +/turf/open/asphalt/cement, +/area/lv873/oob) +"qri" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"qrE" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/operations/offices/southwest) +"qrG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Flynn's Bar" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"qrP" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/obj/item/prop/alien/hugger, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/lv873/indoors/hospital/research/offices) +"qrT" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/west) +"qsf" = ( +/obj/structure/bed, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"qsu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"qsy" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"qsI" = ( +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"qsO" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"qsQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/northeast) +"qsS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qtg" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"qtl" = ( +/obj/structure/surface/table, +/obj/item/trash/ceramic_plate, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"qtx" = ( +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/west) +"qtB" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"qtI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qtJ" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"qtQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"qtW" = ( +/obj/item/clothing/head/soft/trucker, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"qug" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/flooded/west_apartments) +"quK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"quP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"quY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/shard, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"qvl" = ( +/turf/closed/wall/wood, +/area/lv873/indoors/bungalow_manager) +"qvv" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"qvy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"qvC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"qvE" = ( +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/clothing/head/soft/trucker, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"qwc" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/item/trash/chips{ + pixel_x = 18; + pixel_y = -8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"qwk" = ( +/obj/structure/computerframe, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"qwn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"qwq" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/west) +"qwu" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_y = 5 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qwF" = ( +/obj/effect/landmark/survivor_spawner, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qwS" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/flooded/west_apartments) +"qxb" = ( +/turf/closed/wall, +/area/lv873/indoors/flooded/east_apartments) +"qxc" = ( +/obj/structure/bed/chair/office/dark{ + layer = 3.25 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"qxi" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"qxm" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -6; + pixel_y = 32 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"qxp" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"qxJ" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qxN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/storage/beer_pack, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qxQ" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/bungalow_manager_exterior) +"qxW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"qyc" = ( +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"qyg" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/sodawater{ + pixel_y = 6 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qyv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/sign/safety/bathwomens{ + pixel_y = 7; + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"qyz" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = 9; + icon_state = "id"; + name = "wiring distribution computer"; + layer = 3.01 + }, +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_y = -5; + layer = 3.02 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"qyI" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"qyO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/item/spacecash/c10{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qyT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "northeast_gate"; + name = "\improper North-Eastern Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/lz_sec_checkpoint) +"qzb" = ( +/obj/item/storage/beer_pack, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/poster/pinup{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"qzf" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/ashtray/glass, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"qzg" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"qzC" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = -1; + pixel_x = -5 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = -1; + pixel_x = 4 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"qzE" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"qzH" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"qzO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/item/ashtray/plastic{ + pixel_y = 8 + }, +/obj/item/storage/fancy/cigar{ + pixel_y = -1; + pixel_x = -3; + icon_state = "cigarcase5"; + storage_slots = 5 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"qAe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"qAu" = ( +/obj/structure/surface/table, +/obj/item/disk, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"qAV" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"qBa" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"qBs" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"qBB" = ( +/obj/item/frame/light_fixture/small, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/lv873/indoors/marshals/cells) +"qBK" = ( +/obj/structure/largecrate/random/barrel/red{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"qBT" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/east) +"qCi" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qCA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"qCC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"qCJ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/pizza) +"qCK" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"qCM" = ( +/obj/effect/landmark/static_comms/net_two, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"qDs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"qDw" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"qDx" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"qDB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "WYArmory"; + name = "\improper Corporate Emergency Armory" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/corpo_armory) +"qDC" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 5 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"qDG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qDL" = ( +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/tool/pen/red/clicky{ + pixel_y = 2; + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"qEh" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"qEi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"qFe" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"qFk" = ( +/obj/structure/sign/safety/security{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"qFQ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"qFV" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"qGo" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "tunnel_garage_1"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"qGq" = ( +/obj/structure/surface/rack, +/obj/item/trash/eat{ + pixel_y = 7 + }, +/obj/item/trash/buritto, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"qGF" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/item/storage/fancy/cigar/matchbook, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"qGP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/crumpled/bloody{ + name = "crumpled tissue"; + desc = "a piece of crumpled tissue. Wait, is that blood on it?" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"qGR" = ( +/turf/closed/wall, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"qGZ" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"qHv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/offices/southwest) +"qHA" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"qHD" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/southeast) +"qHX" = ( +/turf/open/gm/coast/dirt/beachcorner/south_east, +/area/lv873/outdoors/flooded_streets/east) +"qIh" = ( +/obj/structure/surface/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"qIo" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/tool/crowbar/red{ + pixel_y = 2 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"qIt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/hallway/south) +"qJd" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/interrogation) +"qJH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"qJR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"qKe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"qKg" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_x = -17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"qKQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"qLa" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"qLd" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/welcome_center/lobby) +"qLh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"qLi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = -9; + name = "colony sewage and gas computer" + }, +/obj/structure/machinery/prop/almayer/computer{ + icon_state = "atmos"; + pixel_x = 8; + name = "colony water distribution computer" + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"qLn" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"qLu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Weyland-Yutani Corporate Travel Agency Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"qLB" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"qLF" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/operations/hallway/south) +"qLH" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_y = 9; + pixel_x = -3 + }, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_y = 1; + pixel_x = 2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qLK" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"qLN" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/operating_rooms) +"qLP" = ( +/obj/structure/cargo_container/grant/leftmid, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"qMb" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/east/slums) +"qMk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/serverroom) +"qMn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/insurance) +"qMp" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"qMq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"qMy" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = -7; + pixel_y = 27 + }, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qMJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"qMP" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"qNd" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/toy/bikehorn/rubberducky{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southeast/slums) +"qNp" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/bungalow_manager) +"qNy" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"qOg" = ( +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/structure/surface/rack, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"qOy" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/holdout{ + current_mag = null + }, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 1 + }, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"qOz" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/oob) +"qPb" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil{ + pixel_y = -4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"qPc" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/south/slums) +"qPw" = ( +/turf/open/floor/prison/chapel_carpet, +/area/lv873/outdoors/colony_streets/northeast) +"qPA" = ( +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"qQb" = ( +/obj/item/stool, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"qQJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"qQU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/hospital/research/floor) +"qQY" = ( +/obj/item/weapon/broken_glass, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"qQZ" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = -11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qRc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/south/slums) +"qRn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qRz" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + dir = 10; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"qRS" = ( +/obj/item/reagent_container/syringe/drugs, +/obj/item/device/flashlight/on, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"qRZ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"qSK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Hostel Corporate Room 2" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"qSN" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/landing_zone_2) +"qSQ" = ( +/obj/structure/largecrate/supply/ammo/pistol/half, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 6; + pixel_x = 3 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"qSU" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/flooded_streets/east) +"qTd" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"qTf" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "WYArmory"; + name = "\improper Corporate Emergency Armory" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/indoors/corpo_armory) +"qTs" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Colony Administrator's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"qTy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/east/slums) +"qTA" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/faxmachine/corporate{ + pixel_y = 7 + }, +/obj/item/newspaper{ + pixel_y = 0; + name = "half-finished correspondence on corporate relations and image in the Isaacs Lament colony m-7 yr-2182" + }, +/obj/item/tool/pen/fountain, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"qTD" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 5; + pixel_x = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qTN" = ( +/obj/item/clothing/shoes/swimmingfins, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 21 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"qUh" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/northeast/slums) +"qUr" = ( +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"qUz" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/offices) +"qUB" = ( +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"qUH" = ( +/obj/structure/fence, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"qUL" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"qUQ" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"qUS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/research/reception) +"qVf" = ( +/obj/item/reagent_container/food/snacks/cheesewedge/extramature, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"qVk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"qVr" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"qVL" = ( +/obj/structure/surface/table, +/obj/item/paper_bin/wy{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/tool/pen/red, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"qVR" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/bungalow_manager_exterior) +"qWx" = ( +/turf/open/floor/plating{ + dir = 10; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"qWy" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"qWO" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/power_station) +"qWU" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"qXc" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/analysis_lab{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/reception) +"qXE" = ( +/obj/structure/largecrate/random, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qXG" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "South_Slum_Garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/southeast/slums) +"qXO" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"qXX" = ( +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -9 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"qYc" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/south/slums) +"qYd" = ( +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -9; + current_rounds = 0 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"qYg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"qYl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"qYm" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"qYv" = ( +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "A board of week old sushi."; + icon_state = "sushiboard"; + name = "sushi"; + pixel_x = -1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"qYz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"qYF" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/sign/safety/bathwomens{ + pixel_x = -25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"qYO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"qYT" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"qZs" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"qZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"qZy" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"qZH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"qZM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"qZO" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/tool/soap, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"qZQ" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"raj" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_x = -8 + }, +/obj/item/trash/eat, +/obj/item/shard, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"rau" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"raJ" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/item/clothing/under/swimsuit/purple, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"raM" = ( +/obj/item/clothing/head/cultist_hood, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"raS" = ( +/obj/structure/window/framed/wood/plain, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"rbd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + dir = 5; + icon_state = "red" + }, +/area/lv873/indoors/marshals/interrogation) +"rbC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/toy/handcard/aceofspades{ + pixel_x = -18; + pixel_y = -1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"rbF" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/corpo_armory) +"rbU" = ( +/obj/structure/prop/server_equipment, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"rci" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"rcy" = ( +/obj/item/trash/chunk, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"rcz" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/landing_zones_disembark) +"rcC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/milosoup, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 7; + pixel_y = 13 + }, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"rcE" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/effect/landmark/xeno_spawn, +/obj/item/broken_device{ + desc = "A piece of history." + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/obj/item/bedsheet/green, +/turf/open/floor/wood, +/area/lv873/oob) +"rcQ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/landing_zones_disembark) +"rcS" = ( +/obj/structure/tunnel, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"rcX" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"rdb" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"rdv" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"rdx" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"rdC" = ( +/obj/structure/filingcabinet, +/obj/item/folder, +/obj/item/folder/black, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"rdD" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/lobby) +"rdK" = ( +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"rdX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"rea" = ( +/obj/item/bedsheet/captain, +/obj/item/shard, +/obj/item/stack/cable_coil, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"reC" = ( +/obj/item/shard, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"reF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/marshals/marshalsoffice) +"reO" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"reS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass/colony{ + name = "\improper Liam's Office" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"rfO" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/hospital/break_garden) +"rgc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/serverroom) +"rgt" = ( +/obj/structure/sign/prop2{ + pixel_y = 0; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"rhd" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/oob) +"rhj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"rhx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/lobby) +"rhz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen/clicky{ + pixel_y = -6; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"rhD" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp{ + pixel_y = 16 + }, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"rhY" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"riu" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/marine/mar40, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"riw" = ( +/turf/open/floor{ + dir = 10; + icon_state = "red" + }, +/area/lv873/indoors/marshals/interrogation) +"riy" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/research/offices) +"riQ" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"riW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_y = 0 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "half-finished correspondence on telecommunications mainframe maintenance m-7 yr-2182" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"riY" = ( +/obj/structure/janitorialcart, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/oob) +"rjd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -4 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 4 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"rjz" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/west) +"rjL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Synthetic Shed" + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"rjV" = ( +/turf/closed/wall, +/area/lv873/indoors/uscm_garrison/io_office) +"rka" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"rkb" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + name = "\improper USCMC Showers" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"rko" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/lz_sec_checkpoint) +"rkI" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigar{ + pixel_y = 9; + pixel_x = 15 + }, +/obj/item/map/current_map{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/item/storage/box/matches{ + pixel_x = 13; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"rkR" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"rkU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/garage) +"rlo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/army_surplus) +"rlt" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"rlu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"rlL" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"rlO" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"rmk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"rmu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"rmD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"rmR" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"rmT" = ( +/obj/item/trash/burger, +/obj/item/trash/plate, +/obj/structure/machinery/light_construct, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"rnb" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights/tubes, +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"rno" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"rnp" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"rnz" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"rnA" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/internet_cafe) +"rnC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"rnU" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/east) +"rop" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"roy" = ( +/obj/structure/closet, +/obj/item/clothing/head/soft/trucker{ + pixel_y = 4 + }, +/obj/item/clothing/head/soft/trucker/red{ + pixel_y = 1 + }, +/obj/item/clothing/head/soft/trucker/red{ + pixel_y = -2 + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_y = -4 + }, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"roO" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"rpf" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"rpu" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"rpL" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"rpM" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"rqM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"rrF" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"rrM" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"rrO" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/lv873/indoors/marshals/cells) +"rrP" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"rsb" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/paper, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"rsg" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"rsh" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/power_station) +"rsN" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/hospital/road_north_east) +"rsO" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"rsQ" = ( +/obj/structure/platform/strata/metal, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"rsV" = ( +/obj/structure/sign/safety/bathmens{ + pixel_y = -32; + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/flooded/west_apartments) +"rsX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"rsY" = ( +/obj/structure/closet/fancy{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/closet/fancy{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/clothing/under/colonist/workwear/blue, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"rtm" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/weapon/gun/rifle/mar40/carbine{ + pixel_y = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"rtr" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = 10 + }, +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -10 + }, +/obj/structure/largecrate/random/barrel/blue{ + pixel_y = 20 + }, +/obj/structure/largecrate/random/barrel/blue{ + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"rtv" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/barricade/handrail{ + dir = 4; + layer = 3.01 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 7; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"rtD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"rtE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"rtG" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_1) +"ruh" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/dry_ramen, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 17 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/east) +"ruk" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"rux" = ( +/obj/structure/closet, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/pj/blue, +/obj/item/clothing/under/marine, +/obj/item/clothing/under/marine, +/obj/item/clothing/under/marine, +/obj/item/clothing/under/marine, +/obj/item/clothing/under/marine, +/obj/item/clothing/under/marine, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ruE" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"ruF" = ( +/obj/structure/platform/strata/metal, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"ruK" = ( +/obj/item/tool/wrench, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"rvk" = ( +/obj/item/trash/chips{ + pixel_x = 3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"rvq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/spacecash/c100{ + pixel_y = 10 + }, +/obj/item/spacecash/c100{ + pixel_y = 12 + }, +/obj/item/spacecash/c1000, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"rvB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/item/stack/sheet/wood, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/hallway/west) +"rvD" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/outpatients_and_icu) +"rvL" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/barricade/handrail/sandstone/b{ + color = "#8CCE8F"; + dir = 8; + icon_state = "hr_stone_b"; + name = "plastic handrail" + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"rvQ" = ( +/turf/open/gm/coast/dirt/north, +/area/lv873/outdoors/colony_streets/east) +"rwb" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"rwc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/souto_land/streamer{ + dir = 8; + icon_state = "post" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"rwg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"rwn" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"rwS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"rxw" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"rxx" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"rxJ" = ( +/obj/structure/target, +/obj/item/clothing/head/militia/bucket{ + pixel_y = 9; + pixel_x = -1 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/cmb/exterior) +"rxP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"rya" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"ryg" = ( +/obj/structure/window{ + pixel_y = 31 + }, +/obj/structure/window{ + pixel_y = 31 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"ryr" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ryu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"ryB" = ( +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"ryC" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southeast) +"ryS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"ryY" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"rza" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"rzh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"rzi" = ( +/obj/item/shard, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"rzZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/prop/broken_ladder{ + layer = 3; + pixel_y = 6 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"rAk" = ( +/obj/item/clothing/head/soft/trucker, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"rAr" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door_control{ + pixel_y = -24; + id = "hospital-garage"; + name = "hospital garage control" + }, +/obj/item/clothing/head/soft/blue, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"rAw" = ( +/obj/item/prop/helmetgarb/spent_slug, +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"rAL" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/neils_arcade) +"rBe" = ( +/obj/item/trash/hotdog, +/obj/item/trash/burger, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -6; + pixel_x = -9 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0 + }, +/obj/item/trash/burger{ + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"rBv" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/oob) +"rBG" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/micro_laser/high, +/obj/item/tool/screwdriver, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"rBL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/rifle/mar40/carbine{ + pixel_y = 8 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"rBU" = ( +/obj/item/storage/briefcase/stowaway, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"rCe" = ( +/turf/open/gm/coast/dirt/beachcorner/north_east, +/area/lv873/outdoors/colony_streets/east) +"rCA" = ( +/obj/structure/surface/rack, +/obj/item/trash/barcardine, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"rCB" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/north) +"rCL" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"rDq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "marshal_garage_1"; + name = "\improper Colonial Marshals Bureau Garage" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"rDu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine{ + pixel_y = -6 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_y = 10 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/gm/road, +/area/lv873/oob) +"rDA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced/colony{ + dir = 1; + name = "Colonial Marshals Bureau Storage Shed" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"rDC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/kutjevo/smooth/stair_plate, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"rDQ" = ( +/turf/open/floor/plating, +/area/lv873/indoors/welcome_center/lobby) +"rDS" = ( +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 13 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "gated_community"; + name = "gate button"; + pixel_x = 6; + pixel_y = -5; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"rDY" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, +/obj/item/clothing/head/CMB{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"rEn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Stanley's Electronics Repair Shop"; + dir = 1 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"rEo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/item/clothing/under/colonist/clf{ + pixel_x = 9; + pixel_y = 12 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"rED" = ( +/obj/structure/fence, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/southeast) +"rEG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/lv873/oob) +"rEJ" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell, +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"rEL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"rER" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "WYArmory"; + name = "armory button"; + pixel_x = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"rFt" = ( +/obj/structure/toilet{ + pixel_y = 8; + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/army_surplus) +"rFU" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"rGf" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/east) +"rGP" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_right" + }, +/area/lv873/indoors/ss_athens) +"rGT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"rGZ" = ( +/obj/structure/mineral_door/wood/open{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"rHy" = ( +/obj/structure/filingcabinet, +/obj/item/folder/white, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"rIk" = ( +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"rIG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"rIK" = ( +/obj/structure/prop/dam/truck{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"rIQ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"rJe" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Power Station Security Checkpoint" + }, +/turf/open/floor, +/area/lv873/indoors/power_station) +"rJk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/turf/open/floor/plating, +/area/lv873/landing_zone_2) +"rJq" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"rJr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"rJz" = ( +/obj/structure/largecrate/hunter_games_guns/mediocre, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"rJC" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/east_apartments) +"rKc" = ( +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"rKl" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"rKB" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"rKW" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"rKY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"rLa" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell, +/obj/item/stack/sheet/metal, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"rLe" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"rLf" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_y = 8; + pixel_x = 13; + name = "water pipe segment"; + layer = 3.1 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_x = 1; + pixel_y = 18 + }, +/turf/open/gm/dirt/brown{ + icon_state = "desert_dug" + }, +/area/lv873/oob) +"rLF" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + name = "Display Synthetic"; + icon_state = "Synthetic_Template"; + icon = 'icons/mob/humans/species/r_synthetic.dmi' + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/item/clothing/head/hardhat{ + pixel_y = 12 + }, +/obj/item/clothing/under/liaison_suit/blue{ + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"rLK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"rMf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Interrogation Room" + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/interrogation) +"rMn" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/carpet{ + icon_state = "bcarpet03" + }, +/area/lv873/indoors/southwest/slums) +"rMt" = ( +/turf/open/floor/plating, +/area/lv873/landing_zone_1) +"rMu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"rMT" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced/colony{ + dir = 1; + name = "\improper Corporate Research Director's House" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"rNe" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/landing_zone_1) +"rNs" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/southeast) +"rNz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/gated_community_exterior) +"rNL" = ( +/obj/item/shard, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"rNP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bunkhouse"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"rOh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 5; + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"rOi" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"rOk" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"rOo" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"rOr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"rOC" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/tool/wet_sign, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"rOJ" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/northeast) +"rOS" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/southwest) +"rOY" = ( +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"rPk" = ( +/obj/structure/bookcase, +/obj/item/weapon/gun/rifle/type71/carbine{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"rPt" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"rPF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/prop2{ + pixel_y = 0; + pixel_x = -33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"rPK" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"rPS" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall, +/area/lv873/oob) +"rPY" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/scanning_module/adv, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"rQu" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"rQP" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"rQU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/northeast/slums) +"rRe" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"rRh" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"rRx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"rSk" = ( +/obj/item/storage/secure/safe{ + pixel_y = 26 + }, +/obj/item/prop/magazine/book/spacebeast, +/obj/item/prop/magazine/dirty, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/objective_landmark/science, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers" + }, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/weapon/gun/pistol/vp78, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"rSA" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/west_apartments) +"rSF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "wy_compound_storage"; + name = "\improper Weyland-Yutani Hostel Storage Shutter"; + use_power = 0 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"rSH" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"rSK" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"rSR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/item/clothing/gloves/latex{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/ashtray/glass{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"rTj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"rTr" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"rTZ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/glasses/welding{ + pixel_y = 9 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_y = -2 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"rUu" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_x = -25 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"rUA" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/oob) +"rUE" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/sign/prop3{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"rUL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"rVc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"rVM" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"rVP" = ( +/obj/structure/machinery/telecomms/server, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "2-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"rVW" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"rVY" = ( +/obj/item/tool/wet_sign, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"rWe" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/wedding/bride_purple, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"rWh" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he{ + pixel_x = -8 + }, +/obj/item/mortar_shell/he, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/oob) +"rWn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"rWq" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/west) +"rWt" = ( +/obj/structure/machinery/microwave{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"rWx" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"rWP" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"rWT" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"rWU" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/west) +"rWX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"rXp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_hdogs, +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_y = 19 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"rXw" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southeast) +"rXJ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin/wy, +/obj/item/tool/pen/blue{ + pixel_y = -2 + }, +/obj/item/ashtray/plastic{ + pixel_y = 9 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 21; + pixel_x = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"rXK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/head/welding, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"rYd" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/hospital/break_garden) +"rYi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/oob) +"rYk" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"rYK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"rYM" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"rYQ" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/northeast) +"rYV" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/northeast/slums) +"rYY" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/toilets) +"rZf" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"rZu" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"rZw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/USCMtray, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"rZI" = ( +/obj/structure/bed, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/baseballbat, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 1; + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"rZL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"rZN" = ( +/obj/structure/tunnel, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"rZS" = ( +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"rZT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/mirror{ + pixel_y = -27 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"sau" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"say" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"saA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"saC" = ( +/obj/item/storage/beer_pack{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"sbq" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"sbC" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"sbF" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"sci" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ + pixel_y = 1; + pixel_x = 3 + }, +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"scj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "garage_1"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"sco" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"scy" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet/alt{ + pixel_x = -7; + pixel_y = 26 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"scZ" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -7 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"sdp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"sdL" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/lv873/indoors/ss_athens) +"sec" = ( +/turf/closed/wall, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"sef" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = -8 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"seQ" = ( +/turf/closed/wall, +/area/lv873/indoors/welcome_center/offices) +"sfd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"sfk" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/army_surplus) +"sfm" = ( +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"sfp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"sfq" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"sfR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine/corporate/liaison, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"sfW" = ( +/obj/structure/filingcabinet, +/obj/item/newspaper{ + name = "flight logs m-2 yr-2182" + }, +/obj/item/newspaper{ + name = "flight logs m-1 yr-2182" + }, +/obj/item/newspaper{ + name = "flight logs m-4 yr-2182" + }, +/obj/item/newspaper{ + name = "flight logs m-5 yr-2182" + }, +/obj/item/newspaper{ + name = "flight logs m-1 yr-2182" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"sgw" = ( +/obj/structure/mirror{ + pixel_y = 26 + }, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"sgW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"she" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"sht" = ( +/turf/open/floor{ + dir = 4; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"shV" = ( +/obj/structure/machinery/light, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/indoors/power_station) +"sia" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Jeppson's Memorial Hospital Breakroom" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"sii" = ( +/obj/structure/surface/rack, +/obj/item/trash/burger, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"sik" = ( +/obj/structure/prop/fishing{ + dir = 4 + }, +/turf/open/gm/coast/dirt/west, +/area/lv873/outdoors/flooded_streets/east) +"siq" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "The only official USCM magazine, the headline reads 'Ten Ways To Extend Your Barrel Before Your CO Notices.'"; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster15"; + name = "Boots!: Issue No.80"; + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"siv" = ( +/obj/structure/surface/rack, +/obj/item/cell/high{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/item/cell/high{ + pixel_y = 6; + pixel_x = 4 + }, +/obj/item/cell/high{ + pixel_y = -3; + pixel_x = -7 + }, +/obj/item/cell/high{ + pixel_y = -3; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"siC" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"siG" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"siH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bottle/cyanide, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"siI" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"siL" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"siR" = ( +/obj/item/light_bulb/tube, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"siU" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"siX" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2" + }, +/area/lv873/indoors/ss_athens) +"sji" = ( +/obj/item/stack/rods, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"sjD" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"sjG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/cola, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"sjR" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"sjT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = -8 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + pixel_x = 9 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"sjW" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"skc" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/sign/poster/clf{ + pixel_x = -8; + pixel_y = 30 + }, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"skh" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/south) +"ski" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"skt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"skK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"skU" = ( +/obj/structure/target, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"sla" = ( +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"slB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"slO" = ( +/obj/item/toy/inflatable_duck, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"slT" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"smc" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"smj" = ( +/turf/open/floor/plating, +/area/lv873/oob) +"smo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"smp" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"snb" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/south/slums) +"sng" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/power_station) +"snl" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"snm" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"snw" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"snx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/reception) +"snR" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip1+"; + dir = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"sor" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"sos" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/west) +"sov" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/flooded_streets/west) +"soC" = ( +/obj/item/trash/uscm_mre, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"soL" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"spc" = ( +/obj/structure/machinery/telecomms/server, +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"spe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"spj" = ( +/obj/structure/machinery/light_construct{ + dir = 1 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"spt" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"spx" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"spA" = ( +/obj/structure/surface/rack, +/obj/item/paper/janitor{ + pixel_x = -5; + info = "How about using your Weyland-Yutani paid vacation on an amazing beach? With the Golden Package, a full weekend can be yours at New Athens! Famed for it's amazing beachside paradise!" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"spF" = ( +/obj/structure/surface/table, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"spK" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "wy_compound_storage"; + name = "\improper Weyland-Yutani Hostel Storage Shutter"; + use_power = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"spM" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"spQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"sqd" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"sql" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/mineral/enruranium{ + pixel_y = 14 + }, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"sqq" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"sqX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -14; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/hospital/road_north_west) +"srg" = ( +/turf/open/floor{ + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"srq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "shed_garage"; + name = "\improper Shed Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"srB" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"srD" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/northeast/slums) +"srJ" = ( +/obj/item/trash/cigbutt{ + pixel_y = 8; + pixel_x = -2 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ssm" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv873/indoors/operations/xenobiological_research) +"ssp" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"ssw" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16; + pixel_y = -4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"ssx" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"ssy" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1; + layer = 3.2; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ssC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"ssW" = ( +/obj/structure/bed/chair, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"sti" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"stl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/bungalow_manager) +"stx" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"stz" = ( +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/southwest/slums) +"stH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 7; + pixel_x = 6 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = 9; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"suA" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"suG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"suL" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"suZ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"svb" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"svd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"svj" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"svn" = ( +/obj/structure/surface/table, +/obj/item/device/cassette_tape/ocean, +/obj/item/pipe{ + dir = 4; + layer = 3.5; + pixel_x = -22; + pixel_y = -12 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"svP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"swg" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"swz" = ( +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"swE" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Jeppson's Memorial Hospital Research Wing Breakroom" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"swL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"sxe" = ( +/obj/structure/bed, +/obj/item/weapon/gun/pistol/holdout{ + current_mag = null + }, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc/corporate/lead{ + armor_bomb = 15; + armor_bullet = 15; + armor_energy = 10; + armor_melee = 15; + name = "\improper Damaged WY corporate security helmet" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"sxm" = ( +/obj/structure/flora/jungle/hedge{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"sxy" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"syk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/prop/alien/hugger, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"sys" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"syw" = ( +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"syz" = ( +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"syA" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"syV" = ( +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"szb" = ( +/obj/structure/bed/sofa, +/obj/item/weapon/gun/revolver/m44{ + pixel_x = 1; + pixel_y = -12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"szf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"szi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bunkhouse Kitchen" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"szD" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/flooded_streets/east) +"szK" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 4; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"szN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"szS" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/door/window, +/obj/structure/window, +/obj/item/tool/soap/deluxe, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"szT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"szV" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"sAn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"sAr" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"sAs" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/south) +"sAB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine/uscm, +/obj/item/clothing/head/beret/marine/mp/tis{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"sAD" = ( +/obj/structure/machinery/vending/security/riot, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"sAE" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"sAK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/north) +"sAT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"sBg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"sBC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"sBI" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"sBN" = ( +/obj/item/stool, +/obj/item/weapon/gun/revolver/cmb{ + current_mag = null + }, +/obj/item/clothing/head/CMB, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"sBP" = ( +/obj/item/tool/wet_sign{ + desc = "Evidence marker"; + name = "evidence marker" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"sBY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 12 + }, +/obj/item/tool/pen/clicky{ + pixel_y = 2; + pixel_x = -6 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"sCh" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"sCi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"sCt" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/hospital/road_north_west) +"sCy" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"sCK" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/hospital/road_north_west) +"sCN" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"sCS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/structure/sign/safety/storage{ + pixel_y = 30; + pixel_x = 7 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"sDd" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green{ + pixel_x = -11; + pixel_y = 3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"sDl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"sDu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement, +/area/lv873/oob) +"sDv" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/surface/table, +/turf/open/gm/road, +/area/lv873/outdoors/cmb/exterior) +"sDC" = ( +/obj/structure/morgue_tray{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"sDJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"sDY" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"sEb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/south/slums) +"sEp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -8; + pixel_y = 14 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"sEy" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/flooded_streets/west) +"sEZ" = ( +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"sFf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"sFg" = ( +/turf/open/gm/coast/dirt/north, +/area/lv873/outdoors/flooded_streets/west) +"sFv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/ad{ + pixel_x = -32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"sFB" = ( +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/holdout{ + current_mag = null + }, +/obj/item/clothing/head/cmcap, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"sFF" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"sFN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/storage/fancy/cigar/matchbook/exec_select{ + pixel_x = 1; + pixel_y = 12 + }, +/obj/item/storage/fancy/cigar/matchbook/exec_select{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/storage/fancy/cigar/matchbook/koorlander{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigar/matchbook/koorlander{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_x = -10; + pixel_y = -2 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"sGa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"sGs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"sGZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Landing Zone Security Checkpoint"; + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"sHj" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/clf_house) +"sHq" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/landing_zone_2) +"sHw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"sHY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/souto_land/streamer{ + dir = 4; + icon_state = "post" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"sIb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"sIc" = ( +/obj/structure/machinery/door/window{ + layer = 3.01 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"sId" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"sJq" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"sKo" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"sKr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"sKw" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0; + pixel_x = 2 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4"; + pixel_x = -8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"sKV" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/bed/bedroll{ + dir = 10; + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"sKW" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 1; + pixel_x = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/reception) +"sLk" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"sLp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "tunnel_garage_2"; + name = "\improper Church Shutters" + }, +/turf/open/floor{ + icon_state = "chapel" + }, +/area/lv873/indoors/south/slums) +"sLt" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"sLA" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"sLK" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"sLT" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"sLZ" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/east) +"sMe" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"sMo" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/east/slums) +"sMs" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"sMy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"sMz" = ( +/obj/item/ammo_box/rounds/type71, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"sMJ" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/oob) +"sML" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"sNa" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip1-" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"sNg" = ( +/obj/item/trash/eat, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"sNp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/item/reagent_container/food/snacks/stewedsoymeat, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"sNu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"sNy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/storage/fancy/cigarettes/wypacket{ + icon_state = "wypacket0"; + storage_slots = 0; + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/tool/lighter/random{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"sNL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/apple/poisoned, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"sNT" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"sOb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"sOs" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Staff Apartments" + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"sOz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "A board of week old sushi."; + icon_state = "sushiboard"; + name = "sushi"; + pixel_x = -5 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"sOB" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"sOD" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/lv873/indoors/marshals/marshalsoffice) +"sPd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 2; + dir = 1; + locked = 1; + name = "\improper Garage Manway" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"sPC" = ( +/obj/structure/platform_decoration/kutjevo/smooth{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"sQd" = ( +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"sQf" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southeast/slums) +"sQq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat/fish/squid/alt, +/obj/item/reagent_container/food/snacks/meat/fish, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/grown/ricestalk, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"sQt" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"sQu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"sQC" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/hallway/west) +"sQN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/largecrate/random/barrel, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"sQZ" = ( +/obj/structure/flora/jungle/vines, +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/oob) +"sRq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"sRs" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -24 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"sRu" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"sRE" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/bathmens{ + pixel_y = -9; + pixel_x = 32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"sRI" = ( +/obj/structure/largecrate{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/structure/largecrate{ + pixel_y = 17 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"sRO" = ( +/obj/item/shard, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"sRV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/item/prop/alien/hugger, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"sRY" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"sRZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + pixel_y = 31 + }, +/obj/structure/machinery/door/window{ + pixel_y = 10 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/window, +/obj/item/pizzabox{ + pixel_y = 13 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"sSb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"sSj" = ( +/obj/item/ammo_magazine/handful/shotgun/slug, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"sSx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"sSL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"sTh" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/prop/magazine/dirty/torn/alt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"sTk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/south) +"sTm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/far, +/obj/item/folder/white, +/obj/item/folder/yellow, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"sTz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Executive Bungalow Garage" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"sTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + name = "steam pipe"; + pixel_y = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"sTT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"sTU" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"sTX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"sTZ" = ( +/obj/item/spacecash/c10{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"sUh" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper USCMC Lieutenant's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"sUj" = ( +/turf/open/gm/coast/dirt/beachcorner2/south_west, +/area/lv873/outdoors/flooded_streets/east) +"sUG" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"sVh" = ( +/obj/item/stack/sheet/wood{ + anchored = 1; + density = 1; + pixel_y = -4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"sVk" = ( +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"sVq" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"sVw" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"sVB" = ( +/obj/structure/flora/bush/ausbushes/ppflowers{ + icon_state = "lavendergrass_1" + }, +/obj/structure/flora/bush/ausbushes/ppflowers{ + icon_state = "lavendergrass_1"; + pixel_y = 13 + }, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"sVD" = ( +/obj/item/trash/popcorn, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"sVE" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"sVL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"sVN" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"sVU" = ( +/obj/item/clothing/under/colonist/workwear/khaki, +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"sWh" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck/uno{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/spacecash/c20{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/spacecash/c20{ + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"sWs" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"sWB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"sWH" = ( +/obj/item/frame/table/almayer, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"sWL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"sWS" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/south) +"sWZ" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/rifle/mar40/lmg, +/obj/item/ammo_magazine/rifle/mar40/lmg{ + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"sXj" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/storage/beer_pack, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/flooded/weymart) +"sXn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/flooded_streets/west) +"sXs" = ( +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"sXD" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/colony_floodlight{ + pixel_y = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_1) +"sXN" = ( +/obj/item/trash/boonie, +/obj/item/stack/sheet/metal, +/obj/structure/prop/cash_register/broken, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"sXP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers"; + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"sYB" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/research/floor) +"sYC" = ( +/obj/structure/closet/fancy, +/obj/item/clothing/under/liaison_suit/formal, +/obj/item/storage/fancy/cigarettes/arcturian_ace, +/obj/item/storage/box/matches, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/under/liaison_suit/ivy, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"sYV" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"sYX" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/flooded_streets/west) +"sZd" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/gated_community_exterior) +"sZe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"sZg" = ( +/obj/structure/curtain/red{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/absinthe{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"sZq" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"sZw" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"sZy" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/oob) +"sZz" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_east, +/area/lv873/outdoors/flooded_streets/east) +"sZQ" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"sZT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/hallway/west) +"sZY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = 10; + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_x = -6; + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cheeseburger) +"tal" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"taL" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/cargo_lz) +"taQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/clothing/accessory/patch/upp, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"tbd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/trash/burger{ + pixel_y = -6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"tbe" = ( +/obj/structure/girder, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"tbz" = ( +/obj/item/paper/crumpled{ + pixel_y = 18 + }, +/obj/item/trash/uscm_mre{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"tbM" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced/colony{ + name = "\improper Chief Executive of Corporate Relations House" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"tcc" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"tcd" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/east) +"tce" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"tck" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/south) +"tcw" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weymart) +"tcx" = ( +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_x = -7; + pixel_y = 16 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"tcy" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"tcB" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = -32; + serial_number = 16 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/obj/item/reagent_container/food/snacks/packaged_meal, +/obj/item/storage/beer_pack, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"tdp" = ( +/obj/structure/cargo_container/grant/leftmid, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/northeast) +"tdq" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"tdR" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/flynns_bar) +"tdW" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"tei" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/flooded/east_apartments) +"tek" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"ten" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"tew" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"teC" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/flooded_streets/east) +"teD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window, +/obj/item/device/eftpos, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/reception) +"teI" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/neils_arcade) +"tfe" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"tff" = ( +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"tfl" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/landing_zones_disembark) +"tfn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"tfr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/oob) +"tfM" = ( +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"tgj" = ( +/turf/open/gm/coast/dirt/beachcorner/south_east, +/area/lv873/outdoors/flooded_streets/west) +"tgs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"tgz" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb, +/obj/item/weapon/gun/revolver/cmb, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"tgE" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"thu" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"thL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ + pixel_y = 9; + pixel_x = -3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"tid" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"tig" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"tiq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"tiU" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"tje" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"tju" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 1 + }, +/area/lv873/indoors/south/slums) +"tjx" = ( +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"tjR" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"tjU" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + layer = 2.86 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"tjV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"tki" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"tkp" = ( +/obj/item/storage/beer_pack, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"tkK" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/east) +"tkQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"tlk" = ( +/turf/open/gm/coast/dirt/west, +/area/lv873/outdoors/flooded_streets/west) +"tlw" = ( +/obj/item/weapon/broken_bottle, +/obj/item/storage/pill_bottle/ultrazine/skillless{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/storage/pill_bottle/happy{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"tlz" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/emergency{ + pixel_y = 2 + }, +/obj/item/reagent_container/hypospray/autoinjector/emergency{ + pixel_y = -7 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"tlK" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/item/ammo_magazine/pistol/mod88, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"tmd" = ( +/obj/structure/closet/fancy{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/structure/closet/fancy{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/clothing/under/colonist/workwear/pink, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"tmh" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"tmr" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"tmu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"tmE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"tmT" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"tna" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_y = 32; + pixel_x = 1 + }, +/obj/structure/sign/safety/north{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"tnm" = ( +/obj/item/shard, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/south) +"tno" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/item/clothing/shoes/red{ + name = "pumped up kicks"; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"tnG" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/west) +"tnM" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/southeast) +"tnO" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"tnY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/trash/cigbutt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"toc" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"tou" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + dir = 6; + icon_state = "red" + }, +/area/lv873/indoors/marshals/interrogation) +"toL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"toP" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/structure/window{ + dir = 1; + pixel_y = 17 + }, +/obj/item/newspaper{ + name = "report on native species m-7 yr-2182" + }, +/obj/item/tool/pen/blue, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"toR" = ( +/obj/structure/sign/safety/commline_connection{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -16; + pixel_y = -7 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"toW" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"tpb" = ( +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/tool/soap{ + pixel_y = -10; + pixel_x = 7; + name = "dirty soap"; + desc = "A cheap bar of soap. Doesn't smell. You imagine this hasn't been washed in a while." + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -5; + pixel_x = 9 + }, +/obj/structure/machinery/shower{ + dir = 4; + pixel_y = 7; + layer = 3.21 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"tpf" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = 7 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = 2 + }, +/obj/item/storage/box/packet/baton_slug{ + pixel_y = -2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/armory) +"tpi" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + pixel_y = -22 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"tpm" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"tps" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door"; + welded = 1; + icon_state = "door_welded" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"tpF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/asphalt/cement, +/area/lv873/oob) +"tqc" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/east) +"tqg" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/structure/sign/poster/clf{ + pixel_y = 32 + }, +/obj/structure/sign/poster/clf{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"tql" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"tqq" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/south) +"tqr" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 15 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 17 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 19 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"tqv" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"tqA" = ( +/obj/item/trash/kepler/flamehot, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"tqU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"tqZ" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/landing_zone_1) +"trg" = ( +/obj/item/trash/cigbutt{ + pixel_y = 14; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"trv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"trw" = ( +/obj/item/paper/crumpled{ + pixel_x = 16; + pixel_y = 14 + }, +/obj/structure/sign/poster/propaganda{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"trD" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/landing_zone_1) +"trE" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Colonial Marshals Bureau Firing Line"; + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/marshals/mainhall) +"trG" = ( +/turf/closed/wall, +/area/lv873/indoors/flooded/west_apartments) +"trW" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/east) +"tsc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "gated_community"; + name = "\improper Gated Community Gate" + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"tsl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/weapon/gun/pistol/vp78{ + current_mag = null + }, +/obj/item/ammo_magazine/pistol/vp78{ + current_rounds = 0 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"tss" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/recruiter_house) +"tsB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"tsX" = ( +/turf/open/floor, +/area/lv873/indoors/east/slums) +"tte" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"tto" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"ttp" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"tts" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/obj/structure/machinery/light_construct, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"ttw" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"ttB" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/south) +"ttH" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"ttJ" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/lobby) +"ttL" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"tul" = ( +/obj/structure/surface/table, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -6 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"tuZ" = ( +/turf/closed/wall, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"tvl" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"tvA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"tvG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"tvW" = ( +/obj/structure/machinery/door/window, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cheesiehonkers, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"twt" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"twB" = ( +/obj/item/stool, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/south/slums) +"twG" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = 30 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 10; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"twI" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"twT" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"txf" = ( +/obj/item/trash/chips, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"txi" = ( +/obj/structure/cable{ + icon_state = "2-6" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"txj" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_w_1" + }, +/area/lv873/indoors/ss_athens) +"txz" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/west) +"txI" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"tyg" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"tyk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c"; + pixel_x = 5; + pixel_y = 6; + name = "pneumatic delivery system pipe"; + layer = 2.31 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4"; + pixel_x = -8; + pixel_y = -7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"tyn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = 6; + icon_state = "blackpacket0"; + storage_slots = 0 + }, +/obj/item/tool/lighter/zippo{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = -4; + pixel_x = 9 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = -4; + pixel_x = 1 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 13; + pixel_x = -5 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"tyw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"tyz" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/outdoors/flooded_streets/east) +"tyB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Corporate Hostel Office" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"tyE" = ( +/obj/item/trash/eat{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/trash/eat{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/structure/bed/bedroll{ + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"tyF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"tyX" = ( +/obj/item/frame/table/wood, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"tza" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/lv873/indoors/bungalow_manager) +"tzp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"tzz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/northeast) +"tzE" = ( +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"tzG" = ( +/obj/structure/holohoop{ + pixel_y = 26 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"tzM" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"tzN" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"tzO" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/garage) +"tAc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"tAm" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel5b" + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"tAr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"tAG" = ( +/obj/structure/filingcabinet, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"tAJ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"tAM" = ( +/obj/structure/machinery/atm{ + pixel_y = 30 + }, +/obj/item/spacecash/ewallet, +/obj/item/spacecash/ewallet{ + pixel_y = 11; + pixel_x = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"tBm" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_y = -5; + pixel_x = 6 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"tBp" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"tBM" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"tBQ" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"tCa" = ( +/obj/structure/closet/cabinet{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"tCj" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/nailgun/empty, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"tCm" = ( +/obj/structure/largecrate/supply/ammo/m39/half, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"tCz" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"tCB" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/south) +"tCF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"tDs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "A board of week old sushi."; + icon_state = "sushiboard"; + name = "sushi" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"tDt" = ( +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = -34 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"tDK" = ( +/obj/item/stack/medical/ointment, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"tDP" = ( +/obj/structure/barricade/wooden, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"tEb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"tEc" = ( +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -11; + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 11; + pixel_y = 20 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"tEt" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"tEx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/burger{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"tEA" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"tEH" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"tEK" = ( +/obj/item/prop/alien/hugger, +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"tFs" = ( +/obj/structure/surface/rack, +/obj/item/device/cassette_tape/pop1, +/obj/item/device/cassette_tape/pop2{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"tFz" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/stack/sheet/wood, +/obj/item/weapon/gun/smg/nailgun/compact{ + layer = 3.1 + }, +/obj/item/ammo_box/magazine/nailgun/empty{ + layer = 3.1; + pixel_x = 14 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"tFH" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0 + }, +/obj/structure/machinery/meter{ + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"tFK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/structure/machinery/light/small, +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"tFT" = ( +/obj/structure/sign/poster/music{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"tFU" = ( +/obj/effect/landmark/corpsespawner/wy/manager/burst, +/obj/item/weapon/gun/pistol/vp78, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"tGc" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"tGs" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Memorial Hospital"; + phone_id = "Research Director's Office" + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"tGR" = ( +/obj/item/reagent_container/food/drinks/bottle/wine, +/turf/open/floor/carpet, +/area/lv873/indoors/northeast/slums) +"tHd" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"tHe" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/pizza) +"tHm" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/floodlight/landing, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"tHS" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/lv873/indoors/hospital/research/floor) +"tIr" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"tIu" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/xeno_spawn, +/obj/structure/sign/poster/hunk{ + pixel_x = -4; + pixel_y = 31 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"tIE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/obj/item/device/cassette_tape/ocean{ + pixel_y = -2 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"tIJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "red" + }, +/area/lv873/indoors/marshals/interrogation) +"tIK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/weapon/gun/shotgun/double/sawn, +/turf/open/asphalt/cement, +/area/lv873/oob) +"tIS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Liam's Automobile Repair Shop" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"tIV" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"tIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"tJt" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"tJw" = ( +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/item/device/assembly/mousetrap, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"tKe" = ( +/obj/item/trash/crushed_cup, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"tKk" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/west) +"tKo" = ( +/obj/structure/mineral_door/wood/open, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"tKp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic{ + pixel_x = 7 + }, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/tool/pen{ + pixel_x = -6 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"tKJ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/east) +"tKS" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"tLh" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/insurance) +"tMf" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 38 + }, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"tMo" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"tMG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/curtain/medical{ + pixel_y = 32 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"tMW" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/road, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"tNB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + layer = 3.25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"tNU" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/obj/item/legcuffs/beartrap, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"tOr" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/fancy/cigar{ + pixel_y = 15; + pixel_x = -4 + }, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/ashtray/bronze{ + pixel_y = -14; + pixel_x = -1 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"tOs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/gloves/yellow, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"tOz" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"tOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + pixel_y = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "water pipe"; + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/south) +"tOZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 10; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"tPC" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"tQd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/wy_chips/pepper{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/snacks/wy_chips/pepper{ + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/wy_chips/pepper{ + pixel_x = 12 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_y = 16; + pixel_x = -3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"tQe" = ( +/obj/structure/cable{ + icon_state = "9-10" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"tQH" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"tQJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"tQQ" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"tQW" = ( +/obj/structure/prop/dam/truck/mining, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"tRp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"tRt" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"tRw" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/obj/item/weapon/gun/shotgun/merc, +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "CLFMedbay"; + name = "garage door opener"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"tRB" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "cargo_garage"; + name = "garage door opener"; + pixel_x = 1; + pixel_y = -22; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"tRG" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"tRW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Cell 1" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"tSy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"tSC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"tSD" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"tSE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"tSH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"tSY" = ( +/obj/item/toy/prize/deathripley{ + pixel_x = 13; + pixel_y = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"tSZ" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"tTm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"tTA" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 11; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"tTL" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Businesses"; + phone_id = "Pizza Galaxy" + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"tTS" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"tTT" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"tTY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"tUe" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"tUp" = ( +/obj/item/spacecash/ewallet, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"tUs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"tUx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"tUC" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"tUK" = ( +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"tVg" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"tVn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/travel_agency) +"tVr" = ( +/obj/structure/machinery/power/apc/fully_broken/no_cell{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"tVu" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"tVw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"tVP" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/trash/uscm_mre{ + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/clf_communications) +"tVU" = ( +/obj/item/spacecash/c1{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"tVX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"tWz" = ( +/obj/item/stack/sheet/metal, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/item/stack/cable_coil, +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"tWE" = ( +/turf/open/floor/prison/chapel_carpet, +/area/lv873/outdoors/colony_streets/east) +"tXh" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"tXr" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/lone_buildings/farm_shack) +"tXu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"tXC" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"tXY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"tYe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"tYn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/southeast) +"tYo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper USCMC Recruiter's House" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"tYw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"tYR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"tYU" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"tZf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"tZj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/corporate{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"tZk" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"tZt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"tZB" = ( +/obj/structure/surface/table, +/obj/item/circuitboard{ + name = "damaged Circuit board" + }, +/obj/item/circuitboard{ + name = "damaged Circuit board"; + pixel_y = 3 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"tZZ" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/northeast) +"uag" = ( +/obj/item/trash/burger, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"uaq" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/northeast) +"uas" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"uaw" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 4; + pixel_x = 11 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + pixel_x = -9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"uaE" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"uaG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/east) +"uaZ" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"ube" = ( +/obj/structure/surface/rack, +/obj/item/smartgun_battery{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/smartgun_battery{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/ammo_magazine/smartgun{ + pixel_x = 6; + pixel_y = -8 + }, +/obj/item/ammo_magazine/smartgun{ + pixel_x = -5; + pixel_y = -8 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"ubj" = ( +/obj/item/trash/chunk, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"ubk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"ubx" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"ubD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/item/prop/flower_vase/bluewhiteflowers, +/obj/item/tool/candle{ + pixel_y = 10; + pixel_x = 10 + }, +/obj/item/tool/candle{ + pixel_y = 10; + pixel_x = -10 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/northeast/slums) +"ubF" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ubL" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"ucb" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"ucn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"ucv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"ucD" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/landing_zone_1) +"ucO" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"uda" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -9; + pixel_y = -3 + }, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -9; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"udg" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door_control{ + id = "packaged_food_store_shutters"; + pixel_y = 27 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/east/slums) +"udi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"udr" = ( +/obj/item/paper_bin{ + pixel_y = 8 + }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"uds" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"udv" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/landing_zones_disembark) +"ueg" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/hand/r_hand, +/obj/item/prop/helmetgarb/spent_slug, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"ueh" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/flooded_streets/west) +"uen" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/hospital/road_north_west) +"ueo" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"ueG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"ueM" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -8; + pixel_x = -4 + }, +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = -8; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ashtray/plastic{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"ueN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "chapel" + }, +/area/lv873/indoors/south/slums) +"ueY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 9 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"ufe" = ( +/obj/structure/closet/fancy, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/item/storage/box/masks, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"ufw" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform_decoration/kutjevo/smooth, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"ufx" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"ufz" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"ugc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"ugd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"ugi" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"ugG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ugH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_x = 10 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"ugV" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel2b"; + pixel_y = 20 + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 1 + }, +/area/lv873/indoors/south/slums) +"ugX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_y = 16 + }, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "CMB Office"; + phone_id = "Front Desk" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"uhj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating{ + dir = 5; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"uhk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"uhw" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "east_gate"; + name = "gate button"; + pixel_x = -7; + pixel_y = 27; + req_one_access_txt = "2;3;12;19" + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/reception) +"uhK" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/research/floor) +"uig" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"uit" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/oob) +"uiL" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/weapon/broken_glass, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"uiQ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"uiV" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"ujd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_x = -31 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/south) +"ujO" = ( +/obj/item/clothing/mask/surgical, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"ukf" = ( +/obj/structure/largecrate/supply/supplies/sandbags, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"ukl" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"ukr" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ukw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/pastatomato{ + pixel_y = 10 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 10; + pixel_y = -15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ukF" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/item/stack/sheet/wood{ + anchored = 1; + density = 1; + pixel_y = 6 + }, +/obj/item/stack/sheet/wood{ + anchored = 1; + density = 1; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/trapped_house) +"ukM" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"ukZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"ula" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"uli" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"ulC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"ulD" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/packet/smoke{ + pixel_y = 6 + }, +/obj/item/storage/box/packet/smoke{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"ulR" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/east) +"umk" = ( +/obj/item/prop/almayer/comp_open{ + layer = 3.2; + name = "Distress Beacon Transponder"; + desc = "A distress beacon transponder. This appear to be hooked up to the wiring beneath it, it has stopped transponding when it recived a message from ARES." + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"umC" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/stack/sheet/copper, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"umM" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin{ + pixel_y = 7 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"unb" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southwest) +"unv" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/south) +"unC" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -8 + }, +/obj/item/stack/cable_coil, +/obj/structure/surface/rack, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"unF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/broken/open, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"unG" = ( +/obj/structure/largecrate/random{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"unM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"uob" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible{ + pixel_x = 11 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = -3 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"uoe" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"uol" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"uos" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/bungalow_manager_exterior) +"uox" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"uoz" = ( +/obj/structure/bed{ + icon_state = "abed"; + layer = 2.9 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 2.9; + pixel_y = 12 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4; + layer = 2.991 + }, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/weapon/gun/shotgun/pump{ + desc = "Emergency use only."; + pixel_y = 28; + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"uoC" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/scanning_module/adv, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"uoI" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/slug/baton{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/explosive/grenade/slug/baton{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/explosive/grenade/high_explosive/training{ + pixel_y = -4; + pixel_x = -2 + }, +/obj/item/explosive/grenade/high_explosive/training{ + pixel_y = -4; + pixel_x = 5 + }, +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"uoK" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/west) +"uoQ" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic{ + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate{ + pixel_y = 10; + pixel_x = 1 + }, +/obj/item/trash/plate{ + pixel_y = 12; + pixel_x = 1 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 6; + pixel_x = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"uoR" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"uoV" = ( +/obj/structure/mineral_door/resin/thick, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"upo" = ( +/obj/structure/closet/fancy{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/structure/closet/fancy{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/clothing/head/CMB, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"upx" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"upy" = ( +/obj/structure/sink/kitchen{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"upD" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/shotgun{ + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/shotgun/beanbag{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"upV" = ( +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/offices/northwest) +"uqc" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"uqp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced/colony{ + dir = 1; + name = "Colonial Marshals Bureau Courtyard" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"uqq" = ( +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"uqy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"uqA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"uqM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/office/light, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uqT" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"urg" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"urq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"ury" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"usc" = ( +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"usg" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"usp" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"ust" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"usR" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random{ + pixel_y = 4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"usY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/colony/game, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"utg" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Reception"; + locked = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"utm" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"utr" = ( +/obj/item/shard, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"utM" = ( +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"utU" = ( +/obj/structure/flora/jungle/hedge{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"utW" = ( +/obj/structure/fence, +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"uua" = ( +/obj/item/reagent_container/blood, +/obj/item/reagent_container/blood/AMinus, +/obj/item/reagent_container/blood/APlus, +/obj/item/reagent_container/blood/BMinus, +/obj/item/reagent_container/blood/BPlus, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OPlus, +/obj/structure/closet/crate, +/turf/open/floor{ + dir = 8; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"uub" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weymart) +"uuj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"uuy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"uvd" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/southwest) +"uvR" = ( +/obj/structure/surface/table, +/obj/item/tool/extinguisher/pyro{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uwi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/reception) +"uwA" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"uwC" = ( +/turf/open/floor{ + icon_state = "chapel"; + dir = 8 + }, +/area/lv873/indoors/south/slums) +"uwV" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"uxh" = ( +/obj/structure/surface/table, +/obj/structure/prop/cash_register/off, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"uxB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"uxD" = ( +/obj/structure/surface/table, +/obj/item/trash/cigbutt{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/item/trash/cigbutt{ + pixel_x = -17; + pixel_y = 5 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"uyd" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"uyw" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"uyP" = ( +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"uzf" = ( +/obj/structure/surface/rack, +/obj/item/toy/gun, +/obj/item/toy/gun_ammo, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"uzi" = ( +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"uzq" = ( +/obj/item/tool/wet_sign, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/colony_streets/east) +"uzx" = ( +/turf/open/gm/coast/dirt/beachcorner2/south_east, +/area/lv873/outdoors/flooded_streets/west) +"uzG" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/flooded_streets/west) +"uzL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"uzP" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"uzV" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/maintenance/north) +"uAb" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"uAK" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/gated_community_exterior) +"uAV" = ( +/obj/item/ammo_casing/bullet, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"uBu" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"uBT" = ( +/obj/structure/curtain/red{ + pixel_x = -32 + }, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_y = 4; + pixel_x = 15 + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_y = 11 + }, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"uBY" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"uCb" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Little Juro's Sushi Bistro" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"uCe" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"uCz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"uCR" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/faxmachine, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uCX" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"uDc" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"uDB" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 30 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"uDH" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/storage/beer_pack, +/obj/structure/machinery/light/small, +/obj/structure/machinery/light/small, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/weymart) +"uDN" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"uDQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/flooded/east_apartments) +"uEi" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"uEm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/utensil/pspoon{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"uEX" = ( +/obj/structure/surface/rack, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor, +/area/lv873/indoors/welcome_center/lobby) +"uFf" = ( +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"uFo" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2" + }, +/area/lv873/indoors/ss_athens) +"uFs" = ( +/obj/structure/surface/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"uFU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"uFZ" = ( +/obj/structure/window, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_y = -5; + pixel_x = -6 + }, +/obj/item/storage/fancy/cigarettes/trading_card{ + pixel_x = 7; + pixel_y = 1; + icon_state = "collectpacket15"; + layer = 3; + storage_slots = 16 + }, +/obj/item/trash/cigbutt{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_y = 9; + pixel_x = -5 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/offices/east) +"uGi" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/south) +"uGl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "power_station"; + name = "\improper Power Station Shutters" + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/indoors/power_station) +"uGI" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 1 + }, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"uGK" = ( +/obj/item/trash/crushed_cup, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"uHg" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"uHp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/trash/burger{ + pixel_y = -2; + pixel_x = -7 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"uHH" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"uHX" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uIh" = ( +/obj/item/circuitboard, +/obj/item/stack/cable_coil{ + pixel_x = -15 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8"; + pixel_y = -11 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"uIi" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"uIF" = ( +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"uIK" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/stack/barbed_wire{ + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"uJa" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uJc" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"uJi" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/southeast/slums) +"uJu" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/southeast) +"uJT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/clothing/head/feathertrilby{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/item/clothing/suit/storage/manager{ + pixel_y = -1; + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"uKg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"uKi" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/storage/fancy/cigar/matchbook/brown, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"uKs" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/storage/box/masks{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 2 + }, +/obj/item/clothing/head/surgery{ + pixel_y = 2; + pixel_x = 6 + }, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/operating_rooms) +"uKx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"uKA" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/flooded_streets/west) +"uKK" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/cells) +"uKM" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/manipulator/nano, +/obj/item/tool/screwdriver, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"uLi" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"uLl" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard{ + pixel_y = -2 + }, +/obj/item/circuitboard{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"uLn" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"uMh" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"uMm" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"uMo" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 40; + pixel_y = -2 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/flooded_streets/east) +"uMB" = ( +/obj/item/clothing/head/soft/blue, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"uMF" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/southwest/slums) +"uMM" = ( +/obj/item/prop/colony/used_flare, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"uNb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/flooded_streets/west) +"uNv" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"uNw" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"uNR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"uNU" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_y = 9; + pixel_x = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"uOv" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/xeno_spawn, +/obj/item/bodybag/tarp/reactive{ + layer = 4.2; + pixel_x = -2; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"uOD" = ( +/obj/structure/prop/dam/truck/damaged{ + pixel_y = 6; + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_west) +"uOE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/pipe{ + dir = 4; + layer = 3.5; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"uPf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uPw" = ( +/turf/open/floor/prison/chapel_carpet, +/area/lv873/indoors/lone_buildings/laundromat) +"uPB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "garage_2"; + name = "\improper Garage Shutters" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/multidoor_garage) +"uPK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"uPY" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"uQn" = ( +/obj/item/stool, +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"uQM" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips{ + pixel_x = -9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uQW" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 4 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"uRc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/offices) +"uRg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"uRS" = ( +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"uRX" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_x = 32 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"uSF" = ( +/obj/item/trash/plate, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"uSI" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"uSR" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/east) +"uST" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/shotgun/slug, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"uSY" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Corporate Research Supervisor's Office"; + locked = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"uTi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "chapel"; + dir = 8 + }, +/area/lv873/indoors/south/slums) +"uTk" = ( +/obj/item/tool/pickaxe, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"uTI" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/insurance) +"uUo" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/northwest) +"uUA" = ( +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"uUK" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1; + name = "\improper SS Athens Cargo Bay" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"uUN" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"uVc" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"uVm" = ( +/obj/item/frame/table/wood/poor, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"uVr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/suit/chef/classic, +/turf/open/asphalt/cement, +/area/lv873/oob) +"uVH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"uVJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/marshals/marshalsoffice) +"uWl" = ( +/turf/open/gm/coast/dirt/beachcorner2/south_east, +/area/lv873/indoors/flooded/west_apartments) +"uWq" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"uWU" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 34 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"uWW" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"uXs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"uXP" = ( +/obj/effect/spawner/gibspawner/robot, +/obj/item/stack/sheet/metal, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uXQ" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/northeast/slums) +"uXU" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"uYe" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"uYf" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/clf_barracks) +"uYm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/clicky{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"uYv" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"uYz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"uYA" = ( +/obj/structure/surface/rack, +/turf/open/floor/wood, +/area/lv873/oob) +"uYI" = ( +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"uYJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/outdoors/colony_streets/east) +"uYZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"uZf" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"uZg" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"uZA" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"uZH" = ( +/obj/structure/bed, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"uZK" = ( +/obj/item/tool/wet_sign{ + desc = "Evidence marker"; + name = "evidence marker" + }, +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/east/slums) +"uZZ" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"vag" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/flora/bush/ausbushes/ppflowers{ + pixel_y = 13 + }, +/turf/open/gm/dirt2, +/area/lv873/outdoors/bungalow_manager_exterior) +"vaG" = ( +/mob/living/simple_animal/mouse/gray, +/obj/item/reagent_container/glass/rag, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"vaN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/utensil/pspoon{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha, +/turf/open/floor, +/area/lv873/outdoors/colony_streets/east) +"vaW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/objective_landmark/far, +/obj/item/tool/lighter/zippo/black{ + pixel_x = 10 + }, +/obj/item/clothing/head/CMB{ + pixel_x = -3 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/marshals/marshalsoffice) +"vaZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/machinery/light, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/welcome_center/lobby) +"vbk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"vbp" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/south/slums) +"vbq" = ( +/obj/item/device/radio{ + pixel_y = -2 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"vbr" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"vbI" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/colony_streets/east) +"vbZ" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/oob) +"vcb" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"vcg" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/operations/hallway/west) +"vcr" = ( +/obj/structure/sign/safety/firingrange{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"vcs" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"vcC" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"vcQ" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"vcY" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"vdl" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/southeast/slums) +"vdn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/drinkingglass/cola, +/obj/structure/prop/souto_land/streamer{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"vdE" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on colony disappearances m-7 yr-2182"; + pixel_x = 7 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "half-finished correspondence on PDT surgical implant rollout m-7 yr-2182"; + pixel_x = -7 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/offices/east) +"vdW" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"veB" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/platform/strata/metal, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"veM" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/northeast/slums) +"veP" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"veS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/obj/item/shard, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"veX" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/scanning_module/adv, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"vfa" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/reception) +"vfm" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/lv873/indoors/ss_athens) +"vfW" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/item/tool/soap, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"vgd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/kahlua, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"vgo" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_s_w" + }, +/area/lv873/indoors/ss_athens) +"vgw" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"vgz" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/west) +"vgC" = ( +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/obj/structure/curtain/red{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_y = -4; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"vgF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "bungalow_gate"; + name = "\improper Executive Bunglalow Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/indoors/lz_sec_checkpoint) +"vgM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"vgS" = ( +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "1-6" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"vhl" = ( +/turf/open/gm/coast/dirt/west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"vhs" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"vhG" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"vhM" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vib" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"vid" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"vim" = ( +/obj/item/weapon/gun/pistol/mod88{ + current_mag = null + }, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/helmet/marine/veteran/pmc/corporate, +/obj/item/ammo_magazine/pistol/mod88/penetrating{ + current_rounds = 0; + max_rounds = 0 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"viA" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"viU" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"vjb" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/west_apartments) +"vjg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_y = -5; + icon_state = "id"; + name = "wiring distribution computer"; + layer = 3.01; + pixel_x = -9 + }, +/obj/structure/machinery/prop/almayer/computer{ + dir = 1; + pixel_y = -5; + pixel_x = 8; + name = "colony telemetry computer" + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"vjh" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/east) +"vjr" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/flooded_streets/east) +"vjs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"vju" = ( +/obj/structure/flora/bush/ausbushes, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"vjG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"vjH" = ( +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"vjT" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + pixel_y = 7; + pixel_x = 1 + }, +/obj/item/reagent_container/food/snacks/donkpocket{ + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vjY" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"vkk" = ( +/obj/structure/surface/table, +/obj/item/trash/buritto{ + pixel_y = 9 + }, +/obj/item/trash/burger{ + pixel_y = -2; + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"vkP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 13 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/flynns_bar) +"vkW" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/oob) +"vlk" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/lmg, +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/oob) +"vlF" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"vlL" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"vme" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/milosoup, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_y = 16 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"vmi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"vml" = ( +/obj/item/clothing/under/darkred{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"vmp" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/northeast) +"vms" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"vmF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"vmL" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel3c"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/oob) +"vmP" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/east) +"vmX" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -10 + }, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/gm/coast/dirt/beachcorner/south_west, +/area/lv873/outdoors/flooded_streets/east) +"vnz" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"vnJ" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_x = 10 + }, +/obj/item/tool/pen{ + pixel_x = -6 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/marshals/marshalsoffice) +"vnS" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"voE" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"voQ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/west) +"voR" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"voS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"voY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"vpa" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"vpx" = ( +/obj/structure/largecrate/black_market/clf_supplies, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"vpB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/west) +"vpQ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3"; + icon_tag = "light_3" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"vqb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/oob) +"vqg" = ( +/obj/structure/machinery/light/small, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/indoors/power_station) +"vqi" = ( +/obj/structure/filingcabinet, +/obj/item/folder/red, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"vql" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vqp" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"vqx" = ( +/obj/structure/bed/chair, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vqM" = ( +/obj/structure/closet/cabinet, +/obj/item/ammo_magazine/handful/shotgun/incendiary, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vqO" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/south) +"vqS" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"vry" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"vrI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on sudden destruction of colony infrastructure m-7 yr-2182"; + pixel_x = 7 + }, +/obj/item/newspaper{ + pixel_y = 1; + name = "report on gang-sabotaged telecommunications m-7 yr-2182"; + pixel_x = -7 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"vrM" = ( +/obj/item/explosive/grenade/slug/baton, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"vsi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/baguette, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"vsm" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/flynns_bar) +"vsv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"vsE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/oob) +"vtp" = ( +/obj/structure/machinery/iv_drip, +/obj/item/reagent_container/blood/OPlus, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/hospital/garage) +"vtu" = ( +/obj/structure/reagent_dispensers/fueltank/gas{ + pixel_x = 2; + pixel_y = -3 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/northeast) +"vtL" = ( +/obj/structure/flora/jungle/hedge{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"vtM" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"vtS" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/south/slums) +"vua" = ( +/obj/structure/bookcase{ + icon_state = "book-3" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"vup" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"vut" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"vuu" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/lockerroom) +"vuB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"vvf" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"vvD" = ( +/obj/structure/bedsheetbin{ + pixel_x = 5 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"vvK" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/landing_zone_1) +"vvN" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -32 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"vvY" = ( +/obj/structure/prop/invuln{ + density = 0; + desc = "The Almayer has sprung a leak!"; + icon = 'icons/obj/structures/props/watercloset.dmi'; + icon_state = "water"; + name = "pipe water"; + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = -11 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"vwk" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/foot/l_foot, +/obj/item/prop/helmetgarb/spent_slug, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"vwo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/xenobiological_research) +"vwq" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/gated_community_exterior) +"vwM" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/oob) +"vwO" = ( +/obj/structure/mineral_door/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cheeseburger) +"vxk" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"vxs" = ( +/obj/structure/stairs, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"vxv" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/lobby) +"vxx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 8 + }, +/area/lv873/indoors/operations/hallway/south) +"vxB" = ( +/obj/structure/prop/almayer/computers/mission_planning_system, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vye" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/colony_streets/northeast) +"vyg" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/hospital/break_garden) +"vyn" = ( +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"vyC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/hallway/north) +"vyL" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + name = "\improper SS Athens Kitchen" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"vyZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"vzg" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/school) +"vzn" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"vzr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/offices) +"vzv" = ( +/turf/closed/wall, +/area/lv873/indoors/lz_sec_checkpoint) +"vzD" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"vzU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"vzW" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c10{ + pixel_y = 0 + }, +/obj/item/toy/deck/uno{ + pixel_y = 17; + pixel_x = 10 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vAu" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"vBH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/analyzer, +/turf/open/floor/strata{ + icon_state = "floor3" + }, +/area/lv873/indoors/southwest/slums) +"vBJ" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/landing_zones_disembark) +"vBQ" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"vBX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1; + pixel_x = 1 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "darkbluecorners2" + }, +/area/lv873/indoors/operations/hallway/west) +"vBZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced/colony{ + dir = 1; + name = "Colonial Marshals Bureau Reception" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"vCe" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"vCf" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"vCg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/egg_box, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"vDa" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vDd" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/south) +"vDe" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_x = 8 + }, +/obj/item/tool/lighter{ + pixel_x = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"vDf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"vDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + pixel_y = 10 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 17 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 17; + pixel_x = -3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor{ + dir = 6; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"vDk" = ( +/obj/structure/bed/stool, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"vDu" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"vDK" = ( +/obj/structure/fence, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"vDV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"vEg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/xenoautopsy/jar_shelf{ + pixel_y = 14 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/xenobiological_research) +"vEj" = ( +/obj/structure/surface/table, +/obj/item/storage/box/beakers{ + pixel_y = 12 + }, +/obj/item/stack/sheet/mineral/lead, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"vEB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"vEM" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"vET" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/prop/dam/truck/damaged{ + pixel_y = 6; + dir = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"vFb" = ( +/obj/structure/bookcase, +/obj/item/device/cassette_tape/hairmetal{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor, +/area/lv873/indoors/east/slums) +"vFy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/prop/flower_vase/bluewhiteflowers{ + pixel_x = 10 + }, +/obj/item/ashtray/bronze{ + pixel_y = -5; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"vFz" = ( +/obj/structure/surface/table, +/obj/item/circuitboard{ + name = "damaged Circuit board" + }, +/obj/item/spacecash/c100{ + pixel_y = 12 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"vGK" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"vGN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"vGY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/offices/northwest) +"vHb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + desc = "A tray of blue and green cornbread. Delicious."; + name = "moldy cornbread meal"; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"vHc" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/item/storage/fancy/cigar/matchbook/wy_gold{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"vHf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/east) +"vHg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirt/brown, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vHA" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"vHI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/obj/item/clothing/under/colonist/clf{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/prop/colony/folded_bedroll{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/prop/colony/folded_bedroll{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/prop/colony/folded_bedroll{ + pixel_x = -9; + pixel_y = 14 + }, +/turf/open/floor/prison{ + dir = 1; + icon_state = "blue_plate" + }, +/area/lv873/oob) +"vHP" = ( +/turf/open/gm/coast/dirt/east, +/area/lv873/outdoors/flooded_streets/east) +"vHY" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"vIA" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/northeast) +"vIE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"vIG" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"vJe" = ( +/obj/structure/machinery/power/apc, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"vJB" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/hospital/research/toilets) +"vJG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light{ + pixel_y = 4 + }, +/obj/item/clothing/suit/storage/marine/light{ + pixel_y = -4 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"vJQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart{ + pixel_y = 5 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"vJU" = ( +/obj/structure/surface/rack, +/obj/item/toy/prize/deathripley, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"vKl" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random/mini{ + pixel_x = 1; + pixel_y = 14 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/oob) +"vKw" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"vKA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"vKQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"vKX" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"vLa" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"vLg" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"vLi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vLr" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"vLw" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/welcome_center/offices) +"vLF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"vLN" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"vLV" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southeast/slums) +"vMN" = ( +/obj/item/trash/pistachios{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/outdoors/colony_streets/southwest) +"vNg" = ( +/obj/structure/filingcabinet, +/obj/item/folder/black, +/obj/item/folder/white, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"vNi" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"vNE" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 16 + }, +/obj/item/prop/flower_vase, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vNS" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"vNZ" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vOi" = ( +/obj/structure/sign/poster/hunk{ + pixel_y = -32 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"vOl" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vOy" = ( +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"vOF" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"vOV" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/landing_zone_2) +"vOZ" = ( +/obj/structure/surface/table, +/obj/item/weapon/wirerod{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/sign/nosmoking_2{ + desc = "A warning sign which reads 'NO SMOKING'. It is attached to the wall with double-sided tape and nothing else."; + pixel_y = 29 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"vPf" = ( +/obj/item/reagent_container/food/drinks/jar{ + anchored = 1; + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/organ/brain{ + anchored = 1; + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pknife{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/jar{ + anchored = 1; + layer = 3.1; + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/organ/brain{ + anchored = 1; + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"vPH" = ( +/obj/item/ammo_magazine/rifle/mar40{ + current_rounds = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"vPV" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/operations/serverroom) +"vQc" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"vQk" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/cmcap/boonie/tan, +/obj/item/reagent_container/food/drinks/bottle/rum, +/obj/item/reagent_container/food/drinks/bottle/rum, +/obj/item/ammo_magazine/revolver/small, +/obj/item/ammo_magazine/revolver/small, +/obj/item/ammo_magazine/revolver/small, +/obj/item/ammo_magazine/revolver/small, +/obj/item/ammo_magazine/revolver/small, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"vQt" = ( +/obj/structure/flora/jungle/hedge{ + dir = 5 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"vQv" = ( +/turf/closed/wall/resin, +/area/lv873/indoors/operations/xenobiological_research) +"vQD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze{ + pixel_y = 4 + }, +/obj/item/clothing/gloves/botanic_leather{ + pixel_y = -6 + }, +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 11 + }, +/obj/item/trash/cigbutt{ + pixel_y = 11; + pixel_x = -2 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"vQI" = ( +/obj/structure/surface/table, +/obj/item/trash/hotdog, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"vQJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"vQU" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/bungalow_manager) +"vQV" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"vRg" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"vRj" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"vRr" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/buritto, +/obj/item/bedsheet/captain, +/obj/structure/machinery/light_construct, +/obj/item/light_bulb/tube, +/obj/effect/landmark/objective_landmark/close, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"vRz" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"vRL" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv873/indoors/hospital/reception) +"vRN" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray/autoinjector/chloralhydrate{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; + pixel_x = 1; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"vRQ" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/plating, +/area/lv873/oob) +"vSe" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "2-10" + }, +/obj/structure/cable{ + icon_state = "2-6" + }, +/obj/structure/cable{ + icon_state = "1-9" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"vSf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"vSg" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/east) +"vSy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"vST" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/obj/item/trash/buritto, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"vSU" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"vSW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"vTc" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/oob) +"vTl" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 10; + pixel_x = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"vTn" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"vTA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/offices) +"vTE" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/armory) +"vTN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/gm/dirt/brown{ + icon_state = "desert3" + }, +/area/lv873/oob) +"vTO" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/clothing/head/helmet/marine, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"vTT" = ( +/obj/structure/window_frame/hangar, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv873/indoors/operations/offices/east) +"vUd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"vUg" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/bluemalt{ + pixel_x = -3; + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"vUv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/colony_streets/northeast) +"vUw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/school) +"vUF" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/south) +"vUI" = ( +/turf/open/gm/coast/dirt/beachcorner/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"vUQ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/landing_zone_2) +"vVp" = ( +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 22 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"vVA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/west) +"vVQ" = ( +/obj/structure/sign/prop3{ + pixel_y = 0; + pixel_x = 31 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3" + }, +/area/lv873/outdoors/colony_streets/west) +"vVU" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 0 + }, +/obj/structure/sign/poster/art{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"vWn" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"vWq" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/insurance) +"vWz" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/oob) +"vWC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Walk-In Storage" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"vWG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/north) +"vWL" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_west, +/area/lv873/outdoors/flooded_streets/west) +"vWS" = ( +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"vWV" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/oob) +"vXd" = ( +/obj/structure/machinery/vending/cola, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/southwest) +"vXx" = ( +/obj/item/frame/rack, +/obj/item/trash/burger, +/obj/item/trash/buritto, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"vXC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/bungalow_manager_exterior) +"vXD" = ( +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"vXF" = ( +/obj/effect/landmark/static_comms/net_one, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"vXJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "uscm_armory"; + name = "\improper Secure USCMC Armory" + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkred2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"vXZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/toy/crayon, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"vYd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/burger{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"vYp" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/east/slums) +"vYq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"vYP" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"vZb" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/cmb/exterior) +"vZr" = ( +/obj/structure/closet/fancy{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/structure/closet/fancy{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/clothing/under/liaison_suit/blue, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"vZw" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/landing_zone_2) +"vZH" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"vZL" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/east) +"vZQ" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/southwest) +"vZR" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/bungalow_manager_exterior) +"vZU" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/asphalt/cement, +/area/lv873/outdoors/lone_buildings/cargo_lz) +"vZW" = ( +/obj/item/trash/chunk, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"wae" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"waf" = ( +/obj/item/toy/beach_ball{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_y = 0 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"wau" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/reception) +"wav" = ( +/obj/structure/machinery/door_control{ + desc = "A garage door opener."; + id = "CLFMedbay"; + name = "garage door opener"; + pixel_x = 22; + pixel_y = 4; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"waP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + name = "steam pipe"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"waR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"waU" = ( +/obj/structure/surface/table, +/obj/structure/sink/kitchen{ + pixel_y = 5; + pixel_x = 1 + }, +/obj/item/trash/plate{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"wbb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/motiondetector{ + pixel_y = 18 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"wbA" = ( +/obj/structure/closet/fancy, +/obj/item/prop/magazine/dirty/torn, +/obj/item/clothing/head/helmet/marine/MP{ + name = "\improper Worn M9 pattern MP helmet"; + desc = "A special variant of the M9 Pattern Helmet worn by the MPs of the USCM from 2164-2170. This one seems considerably worn."; + armor_bullet = 15; + armor_bio = 15; + armor_bomb = 5; + armor_energy = 10; + armor_internaldamage = 15; + armor_laser = 10; + armor_melee = 15; + armor_rad = 5 + }, +/obj/item/shard, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"wcr" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/hospital/road_north_east) +"wcJ" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"wcV" = ( +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = 11; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/raincover{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"wcW" = ( +/obj/structure/surface/table, +/obj/item/cell/high, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"wcY" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -34 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -34 + }, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/explosive/grenade/high_explosive/m15, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"wdk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/lockerroom) +"wdo" = ( +/turf/open/floor/carpet, +/area/lv873/indoors/northeast/slums) +"wdr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door" + }, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv873/indoors/operations/offices/northwest) +"wdx" = ( +/obj/item/bedsheet/captain, +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/east_apartments) +"wdC" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -8 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"wdJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lz_sec_checkpoint) +"wdV" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/east) +"weF" = ( +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/outdoors/bungalow_manager_exterior) +"weH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/colony_streets/southwest) +"weR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/secure/briefcase, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"wfe" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"wfs" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/operating_rooms) +"wfx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wfX" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/southwest/slums) +"wfY" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/northeast/slums) +"wgu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/oob) +"wgy" = ( +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"wgE" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"wgS" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel2b"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/oob) +"whd" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"whe" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/plastic, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"whA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southwest) +"whT" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/north) +"whU" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/colony_streets/southwest) +"whV" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"wif" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/flooded/west_apartments) +"wiE" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/east) +"wjd" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"wjn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/item/trash/burger{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"wjt" = ( +/obj/item/stool, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"wjx" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"wjB" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"wjC" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 6; + dir = 4; + pixel_x = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/landing_zone_1) +"wjY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/meter, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/offices/east) +"wkm" = ( +/turf/closed/wall, +/area/lv873/indoors/flooded/waste_station) +"wkv" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"wkL" = ( +/obj/structure/closet/cabinet{ + pixel_x = 1 + }, +/obj/item/clothing/under/marine/veteran/pmc/corporate{ + pixel_y = -8; + pixel_x = -4 + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc/corporate{ + pixel_x = -4 + }, +/obj/item/storage/fancy/cigar/tarbacks{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"wlb" = ( +/obj/structure/fence, +/turf/open/floor/plating, +/area/lv873/oob) +"wlk" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/helmetgarb/spent_slug, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"wlv" = ( +/obj/item/trash/chips{ + pixel_y = -4 + }, +/obj/item/trash/eat{ + pixel_x = -14; + pixel_y = -13 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"wly" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"wlT" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/west) +"wlU" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"wmw" = ( +/obj/structure/surface/table/almayer, +/obj/item/dartboard, +/turf/open/floor, +/area/lv873/indoors/marshals/mainhall) +"wmB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wmH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_y = 9; + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"wmM" = ( +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"wmT" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/hand/l_hand, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"wmU" = ( +/obj/structure/machinery/power/port_gen/pacman{ + pixel_y = 0 + }, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"wnn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wnG" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"wnU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor{ + dir = 9; + icon_state = "redfull" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"wof" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"woq" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"wox" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/weapon/throwing_knife{ + pixel_y = -8; + pixel_x = -7 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"woB" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"woM" = ( +/obj/structure/largecrate/supply/explosives/mortar_flare, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 8 + }, +/area/lv873/oob) +"woO" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"woP" = ( +/turf/open/floor{ + dir = 8; + icon_state = "darkredcorners2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"wph" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"wps" = ( +/obj/structure/curtain/red{ + pixel_y = 0; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"wpu" = ( +/obj/item/paper/crumpled{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/trash/hotdog, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"wpv" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"wpy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/operations/hallway/west) +"wpE" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"wpI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_coporate_relations) +"wpR" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/landing_zones_disembark) +"wpS" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/cargo_lz) +"wpX" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"wqa" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/southwest/slums) +"wqc" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/south) +"wqp" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/leg/l_leg, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"wqB" = ( +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/welcome_center/lobby) +"wqW" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 26 + }, +/obj/item/trash/pistachios, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"wqX" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"wrm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"wrs" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"wrx" = ( +/obj/structure/disposalpipe/segment{ + name = "pneumatic delivery system pipe"; + pixel_y = 0; + pixel_x = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"wrN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/item/storage/donut_box/empty, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"wrV" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/tool/pickaxe, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"wsa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/sign/safety/outpatient{ + pixel_x = 32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/reception) +"wsr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/bluemalt{ + pixel_y = 9; + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"wsO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"wsP" = ( +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/cargo_lz) +"wsT" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor{ + dir = 5; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"wtd" = ( +/obj/structure/bed, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"wtp" = ( +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_1) +"wtA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Colonial Marshals Bureau Reception" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"wtK" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 5; + pixel_y = 8; + pixel_x = 13; + name = "water pipe segment"; + layer = 3.1 + }, +/obj/item/reagent_container/food/snacks/cheesewedge, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"wtM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_east, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"wuw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"wuz" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/north) +"wuC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/east) +"wuK" = ( +/obj/structure/prop/souto_land/pole{ + pixel_x = 15; + pixel_y = 8; + desc = "It's a standard looking pole."; + name = "pole" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"wvi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/southwest/slums) +"wvj" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/structure/filingcabinet, +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/flooded/west_apartments) +"wvs" = ( +/turf/open/floor/carpet{ + icon_state = "bcarpet01" + }, +/area/lv873/indoors/welcome_center/offices) +"wvN" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/flower_vase/redwhiteflowers, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"wvO" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"wvP" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/south) +"wwd" = ( +/turf/open/floor{ + icon_state = "darkredcorners2" + }, +/area/lv873/indoors/uscm_garrison/armory) +"wwt" = ( +/obj/item/shard, +/obj/item/trash/chips, +/obj/item/stack/sheet/cardboard{ + pixel_x = -15; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wxf" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/landing_zone_1) +"wxk" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -4 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/landing_zone_2) +"wxr" = ( +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"wxu" = ( +/obj/structure/machinery/light, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/power_station) +"wxB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"wxE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/obj/item/stack/barbed_wire, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_communications) +"wyQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"wzb" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"wzp" = ( +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"wzF" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"wzK" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_east, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"wAf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + dir = 4 + }, +/obj/item/paper_bin/wy{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/obj/item/device/eftpos{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/research/reception) +"wAn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/firstaid_arm_assembly{ + pixel_x = -6; + pixel_y = 17 + }, +/obj/item/paper/research_notes{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/lv873/indoors/southwest/slums) +"wAw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/tool/kitchen/knife, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"wAO" = ( +/obj/structure/bed/stool, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv873/indoors/lone_buildings/neils_arcade) +"wAW" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"wBK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 1 + }, +/obj/item/tool/pen{ + pixel_y = -9 + }, +/obj/item/device/eftpos{ + pixel_y = -5; + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/reception) +"wBR" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"wBT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison{ + icon_state = "floor_plate" + }, +/area/lv873/indoors/operations/hallway/west) +"wBX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wCh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 16; + pixel_y = 10 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 16; + pixel_y = 0 + }, +/obj/item/trash/plate{ + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_y = 3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"wCl" = ( +/turf/closed/wall/resin/thick, +/area/lv873/indoors/northeast/slums) +"wCK" = ( +/obj/item/storage/firstaid/adv/empty, +/turf/open/asphalt/cement, +/area/lv873/oob) +"wCV" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"wCZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"wDm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Colonial Marshals Bureau Cell 2" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"wDq" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"wDJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"wDR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"wEx" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/meat, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"wEC" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"wED" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/xenobiological_research) +"wEJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"wEN" = ( +/obj/structure/fence, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/southwest) +"wEU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor{ + dir = 5; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"wFd" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"wFg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/research/offices) +"wFI" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/meat{ + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/meat, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"wFN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/head_of_corporate_security) +"wFU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/offices/southwest) +"wGf" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/colony_streets/northeast) +"wGl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Apartment" + }, +/turf/open/floor/interior/plastic, +/area/lv873/oob) +"wGn" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/west) +"wGs" = ( +/obj/structure/flora/jungle/hedge{ + dir = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"wGy" = ( +/obj/structure/sign/poster/ad{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/cargo_lz) +"wGH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack{ + pixel_y = 8 + }, +/obj/item/stack/sheet/metal/large_stack{ + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"wGQ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_y = 1; + pixel_x = -4 + }, +/obj/item/shard, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"wGV" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel5b"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/oob) +"wHd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/east/slums) +"wHe" = ( +/obj/item/tool/mop, +/turf/open/floor/wood, +/area/lv873/outdoors/bungalow_manager_exterior) +"wHr" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"wHJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"wHN" = ( +/obj/item/stool, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"wHR" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = -25 + }, +/obj/structure/machinery/disposal, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"wHW" = ( +/obj/structure/fence, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/northeast) +"wIn" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Colony Administrator's Quarters" + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"wIu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"wIx" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/recruiter_house) +"wII" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"wIM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen/fountain{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"wJb" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/south) +"wJt" = ( +/turf/open/gm/coast/dirt/south, +/area/lv873/outdoors/flooded_streets/west) +"wJu" = ( +/obj/structure/safe, +/obj/item/storage/pill_bottle/happy{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/clothing/mask/cigarette/cigar/classic, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wJJ" = ( +/obj/item/tool/mop{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"wJL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 6; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"wJP" = ( +/obj/item/paper/crumpled{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/tool/pen/green/clicky{ + pixel_y = -6; + pixel_x = -1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) +"wJQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/power_station) +"wJS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"wJW" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/marine{ + pixel_y = 8 + }, +/obj/item/storage/belt/marine, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"wKf" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/shotgun{ + pixel_y = 5 + }, +/obj/item/storage/belt/shotgun{ + pixel_y = -4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"wKj" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/operations/maintenance/south) +"wKk" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/outdoors/landing_zones_disembark) +"wKp" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/lv873/indoors/southwest/slums) +"wKx" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/internet_cafe) +"wKD" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/item/explosive/grenade/high_explosive/training{ + pixel_y = -4; + pixel_x = 5 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/east_apartments) +"wKY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/jurossushi) +"wKZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/item/tool/pen/green/clicky{ + pixel_x = -11 + }, +/obj/item/newspaper{ + pixel_x = 5; + pixel_y = 2; + name = "half-finished report on natural acidic compounds m-7 yr-2182" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"wLc" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"wLf" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"wLk" = ( +/obj/structure/sign/poster/music{ + pixel_x = -32 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whiteyellowfull" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"wLo" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/west) +"wLI" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"wLY" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"wMc" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"wMg" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor{ + dir = 10; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"wMi" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/east) +"wMv" = ( +/obj/item/stool{ + pixel_x = -7 + }, +/obj/item/stool{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"wMw" = ( +/obj/item/trash/plate, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"wMA" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/northeast) +"wME" = ( +/obj/structure/curtain/red, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wNd" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"wNg" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"wNA" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/dirt, +/area/lv873/landing_zone_2) +"wNK" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/west) +"wNZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"wOb" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "tunnel4b"; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/lv873/oob) +"wOe" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"wOl" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_y = 16 + }, +/obj/item/device/taperecorder, +/turf/open/floor{ + dir = 1; + icon_state = "red" + }, +/area/lv873/indoors/marshals/interrogation) +"wOm" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/northeast/slums) +"wOr" = ( +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "Flynn's Bar awarded best bar in Isaac's Lament fifth time in a row!"; + pixel_y = 13 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/surface/table/almayer, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"wOD" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/soft/ferret, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"wOY" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_east, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"wOZ" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"wPh" = ( +/obj/structure/computer3frame, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wPm" = ( +/obj/structure/surface/table, +/obj/item/device/radio/off{ + layer = 5; + pixel_x = 5; + pixel_y = 19 + }, +/obj/item/device/radio/headset/distress/pmc{ + pixel_x = -5 + }, +/obj/structure/curtain/red{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wPp" = ( +/obj/structure/flora/jungle/hedge, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"wPF" = ( +/obj/structure/largecrate/random, +/obj/item/storage/beer_pack, +/obj/structure/machinery/light_construct{ + dir = 8 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/weymart) +"wPK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/meatsteak, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 15 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"wPP" = ( +/obj/structure/surface/rack, +/turf/open/gm/road, +/area/lv873/oob) +"wPQ" = ( +/obj/item/stack/sheet/wood, +/obj/item/storage/belt/utility/full, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/west) +"wPX" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"wPY" = ( +/obj/structure/surface/table/gamblingtable{ + layer = 3.1 + }, +/obj/item/spacecash/c1000{ + layer = 3.3; + pixel_y = 6 + }, +/obj/item/weapon/gun/revolver/cmb{ + layer = 3.4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wQk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"wQq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"wQx" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 4 + }, +/area/lv873/oob) +"wQJ" = ( +/obj/item/trash/crushed_cup, +/obj/item/frame/table/reinforced, +/obj/item/trash/popcorn, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"wQK" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/south) +"wRa" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"wRi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/shard, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Memorial Hospital"; + phone_id = "Research Front Desk" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/lv873/indoors/hospital/research/reception) +"wRy" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 12; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -1; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -6; + pixel_x = 9 + }, +/obj/item/trash/burger{ + pixel_y = -2; + pixel_x = -7 + }, +/obj/item/trash/burger{ + pixel_y = 4; + pixel_x = -7 + }, +/obj/item/trash/burger{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/item/trash/buritto, +/obj/item/trash/buritto{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/trash/buritto{ + pixel_y = 2 + }, +/obj/item/trash/buritto{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"wRC" = ( +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"wRD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Weyland-Yutani Welcome Center 'Alexandria' Manager's Quarters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "director-panic"; + name = "Panic Room Shutter" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"wRN" = ( +/obj/structure/window/framed/colony, +/turf/open/floor{ + icon_state = "whitebluefull" + }, +/area/lv873/indoors/hospital/research/offices) +"wRR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Weyland-Yutani Corporate Hostel" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"wRW" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"wSL" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/marshals/cells) +"wSU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/marshals/reception) +"wSV" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"wSX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"wTa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"wTk" = ( +/obj/structure/bed/chair/wood/wings{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/cracker{ + pixel_x = -15; + pixel_y = -3 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"wTq" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/lv873/oob) +"wTr" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"wTw" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Jeppson's Memorial Hospital Storage Room" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"wTH" = ( +/obj/item/trash/crushed_cup, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/south) +"wTN" = ( +/obj/item/stool{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/stool, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wTX" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 0; + pixel_x = -9 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_trucker_bunkhouse) +"wTY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"wUA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"wUH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/goon_and_chef_house) +"wUJ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"wUO" = ( +/obj/item/trash/cigbutt{ + pixel_y = 7; + pixel_x = 5 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_corner" + }, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"wVm" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southeast/slums) +"wVU" = ( +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"wWq" = ( +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"wWr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"wWJ" = ( +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"wWN" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/landing_zones_disembark) +"wWV" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/toy/blink{ + pixel_x = -8; + pixel_y = -7 + }, +/turf/open/asphalt/cement, +/area/lv873/oob) +"wXa" = ( +/turf/open/gm/road, +/area/lv873/indoors/east/slums) +"wXs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/engineer_alcoholic_house) +"wYu" = ( +/obj/structure/window_frame/colony, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"wYC" = ( +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"wYR" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/item/storage/backpack/souto{ + anchored = 1; + desc = "This Souto minifridge is padlocked shut."; + name = "\improper Souto minifridge"; + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"wZf" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cargo_ship_l"; + name = "\improper SS Athens Cargo Hold" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"wZo" = ( +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_silos) +"wZI" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_east) +"wZM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/welcome_center/canteen) +"wZQ" = ( +/obj/structure/machinery/light/small, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"wZT" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/spawner/gibspawner/human, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"xao" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/internet_cafe) +"xat" = ( +/obj/structure/bed/bedroll{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"xay" = ( +/obj/item/stool{ + pixel_x = -4 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xaA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv873/indoors/lone_buildings/tcomms) +"xaB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor, +/area/lv873/indoors/bungalow_manager) +"xaD" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"xaN" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xaT" = ( +/obj/structure/prop/fishing/line/long/part2, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"xaU" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic{ + pixel_y = 12 + }, +/obj/item/explosive/plastic, +/turf/open/floor/plating, +/area/lv873/indoors/corpo_armory) +"xbr" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"xbu" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/outpatients_and_icu) +"xbw" = ( +/obj/structure/transmitter/colony_net{ + dir = 8; + pixel_x = 15; + phone_category = "Businesses"; + phone_id = "Juro's Sushi" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"xbx" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/lone_buildings/cheeseburger) +"xbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"xcy" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plating{ + dir = 6; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"xcJ" = ( +/obj/structure/sign/poster/pinup{ + pixel_y = 29 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"xcK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/pistol/holdout{ + current_rounds = 0 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"xcV" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/southeast) +"xcX" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"xdl" = ( +/obj/item/tank/emergency_oxygen{ + name = "anathesia tank" + }, +/obj/item/clothing/mask/breath/medical{ + pixel_y = -10 + }, +/obj/item/clothing/head/surgery, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreencorner" + }, +/area/lv873/indoors/hospital/operating_rooms) +"xdv" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"xdY" = ( +/obj/structure/machinery/shower{ + pixel_y = 17 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/southwest/slums) +"xdZ" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"xei" = ( +/obj/item/toy/beach_ball, +/obj/structure/prop/invuln{ + density = 0; + desc = "The Almayer has sprung a leak!"; + icon = 'icons/obj/structures/props/watercloset.dmi'; + icon_state = "water"; + name = "pipe water"; + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/lone_buildings/flooded) +"xet" = ( +/obj/item/spacecash/c10, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"xeU" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" + }, +/area/lv873/indoors/ss_athens) +"xeV" = ( +/obj/item/trash/cheesie, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/break_garden) +"xeY" = ( +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/hallway/north) +"xfb" = ( +/obj/structure/sign/safety/airtraffictower{ + pixel_x = 13; + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"xfc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"xfo" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_east, +/area/lv873/outdoors/hospital/road_north_west) +"xfq" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/hospital/road_north_east) +"xga" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/west_apartments) +"xgz" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xhe" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/toolbox{ + pixel_x = -6 + }, +/obj/structure/machinery/door_control{ + pixel_x = -24; + pixel_y = -7; + id = "mansion-garage" + }, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"xhj" = ( +/obj/structure/fence, +/turf/open/gm/road{ + icon_state = "browndirt_road_1" + }, +/area/lv873/outdoors/colony_streets/west) +"xhr" = ( +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 10; + layer = 4.1; + pixel_y = 10 + }, +/obj/item/bedsheet/captain{ + layer = 4.2; + pixel_y = 10 + }, +/obj/item/bedsheet/captain, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"xhA" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool/hugetank, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"xhO" = ( +/obj/item/clothing/head/soft/blue, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/lobby) +"xhY" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/east) +"xiq" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"xiF" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + dir = 4; + pixel_x = 4 + }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 6; + dir = 4; + pixel_x = 4 + }, +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"xiR" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"xiT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/phone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/lv873/oob) +"xiY" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/landing_zones_disembark) +"xiZ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + name = "\improper USCMC Bunks" + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"xjd" = ( +/turf/open/floor, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"xjw" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/serverroom) +"xjy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/wood, +/area/lv873/indoors/hospital/reception) +"xjE" = ( +/obj/structure/sign/poster/music{ + pixel_y = 32 + }, +/obj/structure/closet/cabinet{ + density = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"xjQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"xjT" = ( +/obj/item/clothing/under/rank/medical/lightblue, +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xjZ" = ( +/turf/open/floor{ + dir = 1; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"xke" = ( +/obj/item/frame/rack, +/obj/item/reagent_container/food/snacks/grown/ricestalk, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"xkm" = ( +/turf/closed/wall/wood/plain, +/area/lv873/indoors/south/slums) +"xkn" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"xkF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cargo_ship_r"; + name = "\improper SS Athens Cargo Hold" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"xkP" = ( +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"xle" = ( +/turf/closed/wall/rock/brown, +/area/lv873/oob) +"xlf" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/limb/arm/r_arm, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"xlv" = ( +/turf/open/floor/plating{ + dir = 1; + icon_state = "warnplate" + }, +/area/lv873/indoors/power_station) +"xlF" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/southwest) +"xlN" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/west) +"xlS" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/trash/crushed_cup{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xlY" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xmf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/hospital/road_north_east) +"xmD" = ( +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/southwest/slums) +"xmF" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1; + name = "\improper SS Athens Hallway" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"xmW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/backpack/souto, +/turf/open/asphalt/cement, +/area/lv873/indoors/east/slums) +"xni" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/floor) +"xnn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 5; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/xenobiological_research) +"xnp" = ( +/obj/item/weapon/pole/fancy_cane/this_is_a_knife/machete, +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"xnu" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Weyland-Yutani Gold Insurance" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"xnz" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_east, +/area/lv873/outdoors/colony_streets/northeast) +"xnR" = ( +/obj/structure/largecrate/random{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/colony_streets/south) +"xnS" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"xoa" = ( +/obj/item/clothing/head/beanie/royal_marine/turban, +/obj/structure/closet/cabinet{ + density = 0; + pixel_y = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"xox" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"xoy" = ( +/obj/item/stack/medical/bruise_pack{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_y = -1; + pixel_x = -8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xoJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"xoS" = ( +/obj/item/shard, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"xoZ" = ( +/obj/structure/filingcabinet, +/obj/item/folder/blue, +/turf/open/floor{ + dir = 9; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/offices) +"xpf" = ( +/obj/item/shard, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_apartments) +"xpg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = -14 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 16; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 4 + }, +/area/lv873/indoors/operations/lockerroom) +"xpq" = ( +/obj/structure/machinery/computer/arcade{ + icon_state = "arcadeb"; + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"xpx" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/south, +/area/lv873/oob) +"xpO" = ( +/obj/structure/closet, +/obj/item/storage/belt, +/obj/item/clothing/under/rank/synthetic/utility/yellow, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/bungalow_manager) +"xqb" = ( +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 12; + pixel_x = -4 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"xqn" = ( +/obj/structure/largecrate{ + pixel_x = 10 + }, +/obj/item/weapon/sword/machete{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/pouch/flare{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xqF" = ( +/obj/structure/curtain/red{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"xqO" = ( +/obj/structure/prop/cash_register/broken/open, +/obj/item/spacecash/c20, +/obj/structure/surface/table/reinforced{ + flipped = 1; + icon_state = "reinfflip1+" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"xqV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/mainhall) +"xrb" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xrB" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/flooded/east_apartments) +"xrK" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Colonial Marshals Bureau Firing Line" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/marshals/mainhall) +"xrL" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"xrS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/west) +"xsh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper USCMC Garrison Recruitment Center" + }, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"xsv" = ( +/turf/closed/wall, +/area/lv873/indoors/east/slums) +"xsw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/lv873/indoors/southwest/slums) +"xsy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Weyland-Yutani Welcome Center"; + phone_id = "Manager's Office" + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/offices) +"xsU" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"xtj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"xtM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"xtN" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"xul" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/flooded/east_apartments) +"xuo" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/hospital/research/toilets) +"xuu" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/lv873/indoors/northeast/slums) +"xux" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"xuz" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xuB" = ( +/turf/open/floor/prison{ + icon_state = "darkredfull2" + }, +/area/lv873/indoors/lone_buildings/pizza) +"xuC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"xuI" = ( +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/marshals/mainhall) +"xuL" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Colonial Marshals Bureau Garage" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/garage) +"xuM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"xuO" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"xuY" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"xuZ" = ( +/obj/structure/window_frame/hangar, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor{ + dir = 4; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/southwest) +"xvh" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/lz_sec_checkpoint) +"xvn" = ( +/obj/structure/flora/jungle/hedge{ + dir = 6 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/break_garden) +"xvJ" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"xwb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/closet/medical_wall{ + pixel_y = 30 + }, +/obj/item/reagent_container/blood/OMinus, +/turf/open/asphalt/cement, +/area/lv873/oob) +"xwr" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/cmb/exterior) +"xwJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/lone_buildings/mechanic_shop) +"xwS" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp{ + pixel_y = 16 + }, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"xwT" = ( +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt/cigarbutt, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/aerospace_control) +"xxi" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/lv873/indoors/southwest/slums) +"xxC" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/maintenance/south) +"xxK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"xxO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"xxP" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"xyg" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/bungalow_manager_exterior) +"xyj" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 22; + pixel_x = 6 + }, +/turf/open/asphalt/cement, +/area/lv873/outdoors/uscm_garrison_exterior/entrance) +"xyM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Army Surplus Storage" + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"xze" = ( +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/south_west, +/area/lv873/landing_zone_1) +"xzq" = ( +/obj/structure/window_frame/hangar, +/obj/item/shard, +/obj/item/shard, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"xzQ" = ( +/obj/structure/disposalpipe/segment{ + pixel_x = -7 + }, +/obj/structure/disposalpipe/segment{ + name = "waterpipe"; + dir = 1; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/hallway/north) +"xzS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/southwest) +"xzZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Apartment" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"xAf" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/insurance) +"xAk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/welcome_center/lobby) +"xAv" = ( +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/south) +"xAK" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 1 + }, +/area/lv873/outdoors/colony_streets/east) +"xAP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"xAS" = ( +/obj/item/trash/crushed_cup, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/east) +"xAV" = ( +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/colony_streets/south) +"xBp" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/misc/flashlight{ + pixel_y = 6 + }, +/obj/item/ammo_box/magazine/misc/flashlight{ + pixel_y = -2 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"xBG" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/northeast) +"xBH" = ( +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/flooded/west_apartments) +"xBI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/lone_buildings/weyyu_hostel) +"xBM" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 25; + density = 0 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 25; + density = 0 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"xBN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"xCM" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/cardboard{ + name = "soaked cardboard" + }, +/obj/structure/machinery/light_construct, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/west_slums) +"xCP" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv873/indoors/gated_community/head_of_corporate_engineering) +"xCR" = ( +/obj/structure/surface/rack, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"xDf" = ( +/obj/structure/sign/safety/landingzone{ + pixel_y = 32; + pixel_x = 1 + }, +/obj/structure/sign/safety/north{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/landing_zone_2) +"xDm" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ + pixel_y = 3; + pixel_x = 2 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -6 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"xDw" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/gm/road, +/area/lv873/outdoors/colony_streets/south) +"xDE" = ( +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 14 + }, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"xDG" = ( +/obj/structure/surface/rack, +/obj/item/toy/katana, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"xDL" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"xDM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/solid, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/oob) +"xDO" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/lv873/indoors/ss_athens) +"xEb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -14; + pixel_y = 20 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/power_station) +"xEh" = ( +/obj/item/clothing/gloves/black, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xEn" = ( +/obj/item/trash/chunk, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xEr" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/tcomms) +"xEB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/transmitter/colony_net{ + pixel_y = 24; + phone_category = "Businesses"; + phone_id = "Wey-Mart" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"xEJ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xEK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/ashtray/glass{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/clothing/head/hairflower, +/turf/open/floor/wood, +/area/lv873/indoors/bungalow_manager) +"xEY" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/clf_house) +"xFp" = ( +/obj/structure/mineral_door/wood, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/chinese) +"xFq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "west_gate"; + name = "\improper Western Gate" + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"xFr" = ( +/obj/structure/flora/jungle/hedge{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/indoors/lone_buildings/recruiter_house) +"xFD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door"; + welded = 1; + icon_state = "door_welded" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"xGa" = ( +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"xGh" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/item/folder/red, +/turf/open/floor{ + dir = 4; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"xGl" = ( +/turf/open/floor{ + dir = 8; + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/reception) +"xGn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/uscm_garrison_exterior/fenced) +"xGp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"xGu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"xGy" = ( +/obj/structure/surface/rack, +/obj/item/toy/deck, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"xGA" = ( +/turf/closed/wall/strata_ice/jungle/isaacs, +/area/lv873/outdoors/colony_streets/northeast) +"xGM" = ( +/turf/open/floor/prison, +/area/lv873/indoors/lone_buildings/neils_arcade) +"xHa" = ( +/obj/structure/cable{ + icon_state = "4-10" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"xHn" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"xHP" = ( +/turf/open/floor{ + dir = 1; + icon_state = "darkblue2" + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"xIr" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + name = "\improper USCMC Firing Range" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"xIL" = ( +/obj/structure/surface/rack, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"xIT" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/telecomms) +"xJx" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/trapped_house) +"xJF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"xKc" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/polemuseum) +"xKh" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/pizza) +"xKl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/outdoors/colony_streets/south) +"xKq" = ( +/turf/closed/wall/r_wall, +/area/lv873/indoors/gated_community/director_of_corporate_research) +"xKu" = ( +/obj/structure/bedsheetbin{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/bedsheetbin{ + pixel_x = -13; + pixel_y = 1 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = -8 + }, +/obj/item/prop/helmetgarb/raincover{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"xKQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"xKS" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor{ + dir = 6; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/outpatients_and_icu) +"xLn" = ( +/turf/open/floor/wood, +/area/lv873/indoors/east/slums) +"xLJ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/oob) +"xLM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations door" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/northwest) +"xLO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"xMa" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/polemuseum) +"xMn" = ( +/obj/structure/prop/dam/truck/cargo{ + icon_state = "tractor" + }, +/turf/open/gm/road, +/area/lv873/outdoors/lone_buildings/gas_n_gear) +"xMr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/liq_r_mart) +"xMH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"xNj" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/gm/road{ + icon_state = "browndirt_road_1"; + dir = 8 + }, +/area/lv873/outdoors/colony_streets/west) +"xOc" = ( +/turf/open/floor/wood, +/area/lv873/indoors/uscm_garrison/io_office) +"xOI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Paper and Printer Storage" + }, +/turf/open/floor, +/area/lv873/indoors/welcome_center/offices) +"xPb" = ( +/turf/open/floor, +/area/lv873/indoors/marshals/storage) +"xPy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/flynns_bar) +"xQd" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_2"; + icon_tag = "light_2" + }, +/turf/open/gm/grass/dirt, +/area/lv873/oob) +"xQq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"xQv" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 25 + }, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -5; + pixel_y = 28 + }, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 1; + pixel_y = 31 + }, +/turf/open/floor/wood, +/area/lv873/oob) +"xQz" = ( +/obj/structure/surface/rack, +/obj/item/trash/kepler, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/weymart) +"xQC" = ( +/obj/structure/surface/rack, +/obj/item/folded_tent/big, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/army_surplus) +"xQG" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"xQO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/road, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"xQS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains/human, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xRb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "marshal_garage_2"; + name = "\improper Colonial Marshals Bureau Garage" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"xRd" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"xRz" = ( +/obj/structure/filingcabinet, +/obj/item/folder/white, +/obj/item/folder/yellow, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"xRD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor{ + icon_state = "darkbluecorners2"; + dir = 1 + }, +/area/lv873/indoors/operations/hallway/north) +"xRE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spawner/gibspawner/robot, +/obj/item/stack/sheet/metal, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_house) +"xRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/recruiter_house) +"xRU" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/marshals/barracks) +"xSi" = ( +/turf/closed/wall, +/area/lv873/indoors/lone_buildings/army_surplus) +"xSj" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/school) +"xSm" = ( +/obj/item/shard, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"xSp" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/oob) +"xSz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_1) +"xSG" = ( +/obj/item/shard, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/reception) +"xTq" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/item/trash/burger{ + pixel_y = -17 + }, +/obj/item/trash/buritto{ + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/trapped_house) +"xTv" = ( +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/flynns_bar) +"xTC" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"xTO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Operations door"; + welded = 1; + icon_state = "door_welded" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/reception) +"xUw" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/lone_buildings/trapped_house) +"xUy" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor{ + dir = 9; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/offices/east) +"xUG" = ( +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"xUT" = ( +/obj/item/paper/crumpled{ + pixel_y = 18 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xUY" = ( +/turf/closed/wall, +/area/lv873/indoors/hospital/research/toilets) +"xUZ" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/hospital/research/offices) +"xVg" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor{ + dir = 8; + icon_state = "vault" + }, +/area/lv873/indoors/uscm_garrison/armory) +"xVs" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor{ + dir = 1; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"xVw" = ( +/obj/structure/largecrate/supply/weapons/m41a{ + desc = "A weapons chest containing ten M41A rifles. The chest claims to be from a USCM ship called the USS Arrow of Gold." + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xVB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"xVZ" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/oob) +"xWa" = ( +/turf/closed/wall, +/area/lv873/indoors/flooded/west_slums) +"xWd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/southwest) +"xWC" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1; + name = "\improper USCMC Bathrooms" + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"xWE" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor{ + icon_state = "redyellowfull" + }, +/area/lv873/indoors/south/slums) +"xWK" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 8 + }, +/area/lv873/outdoors/flooded_streets/west) +"xWW" = ( +/obj/structure/closet/secure_closet/personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/personal{ + pixel_x = 8 + }, +/obj/item/clothing/under/swimsuit/red, +/turf/open/floor, +/area/lv873/indoors/lone_buildings/polemuseum) +"xWZ" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/north_west, +/area/lv873/outdoors/colony_streets/east) +"xXb" = ( +/obj/item/clothing/head/soft/trucker, +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner2/south_west, +/area/lv873/outdoors/landing_zones_disembark) +"xXk" = ( +/obj/item/frame/table/reinforced, +/obj/item/shard, +/obj/structure/machinery/light_construct, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/indoors/flooded/waste_station) +"xXo" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xXy" = ( +/obj/item/frame/matrix_frame{ + name = "picture frame"; + desc = "A frame for putting pictures in."; + pixel_y = 30; + anchored = 1 + }, +/obj/item/prop/helmetgarb/family_photo{ + pixel_x = 3; + pixel_y = 30; + anchored = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xXG" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Jeppson's Memorial Hospital Research Wing Reception" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/research/reception) +"xYg" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/lv873/indoors/lone_buildings/farm_shack) +"xYh" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/packaged_burrito, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/canteen) +"xYm" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southeast) +"xYr" = ( +/obj/structure/flora/jungle/vines, +/turf/open/gm/dirtgrassborder/dirt/grassdirt_corner/north_west, +/area/lv873/oob) +"xYu" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/friedegg, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"xYB" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/lv873/indoors/marshals/cells) +"xYJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 1; + name = "\improper Security Checkpoint" + }, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/gated_community/residence_bunkhouse) +"xYN" = ( +/obj/item/prop/helmetgarb/spent_slug, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + ammo = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/suit/storage/CMB, +/obj/effect/spawner/gibspawner/human, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt/brown, +/area/lv873/landing_zone_2) +"xYP" = ( +/obj/item/trash/kepler, +/turf/open/floor/wood, +/area/lv873/indoors/northeast/slums) +"xYQ" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor{ + icon_state = "dark2" + }, +/area/lv873/indoors/operations/hallway/north) +"xYR" = ( +/obj/structure/surface/rack, +/obj/item/paper/janitor{ + info = "A standard Travel Agency slogan about sending you somewhere 'exciting'." + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"xYW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaGate"; + name = "\improper Exterior Colony Gate"; + use_power = 0 + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xZa" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/gm/dirt/brown, +/area/lv873/outdoors/landing_zones_disembark) +"xZd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1 + }, +/obj/structure/sign/poster/ad{ + pixel_y = 32 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/welcome_center/lobby) +"xZi" = ( +/obj/structure/flora/jungle/vines{ + icon_state = "light_3" + }, +/turf/open/gm/dirt/brown, +/area/lv873/oob) +"xZj" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southwest/slums) +"xZp" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/lone_buildings/polemuseum) +"xZC" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot{ + pixel_x = 10; + pixel_y = -15 + }, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"xZD" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"xZJ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/dirt/west, +/area/lv873/outdoors/colony_streets/northeast) +"xZR" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Colonial Marshals Bureau Barracks" + }, +/turf/open/floor, +/area/lv873/indoors/marshals/barracks) +"xZU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/strata{ + icon_state = "white_cyan1" + }, +/area/lv873/indoors/lone_buildings/pizza) +"xZV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/machinery/power/port_gen/pacman/super, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating{ + dir = 1; + icon_state = "asteroidfloor" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"xZW" = ( +/turf/open/asphalt/cement, +/area/lv873/outdoors/colony_streets/southeast) +"xZY" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"yax" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/colony_streets/south) +"ybb" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/flaregun/full, +/turf/open/floor/almayer, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"ybm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"ybp" = ( +/obj/structure/cable{ + icon_state = "1-6" + }, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/clf_communications) +"ybu" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_y = -32; + pixel_x = 7 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/lv873/indoors/flooded/west_apartments) +"ybJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor{ + dir = 1; + icon_state = "darkgreen2" + }, +/area/lv873/indoors/uscm_garrison/io_office) +"ybR" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 0 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/reception) +"ybT" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + name = "\improper Jeppson's Memorial Hospital Surgery Storage" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/hospital/operating_rooms) +"ybW" = ( +/turf/open/floor/plating, +/area/lv873/indoors/lone_buildings/weyyu_hostel) +"ycl" = ( +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/farm_shack) +"yct" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/screenwriter_house) +"ycu" = ( +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/southwest) +"ycO" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/uscm_garrison/recruitment_office) +"ydo" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Weyland-Yutani Corporate Travel Agency" + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/travel_agency) +"ydB" = ( +/obj/item/trash/kepler/flamehot, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"ydH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor{ + icon_state = "freezerfloor" + }, +/area/lv873/indoors/lone_buildings/jurossushi) +"ydN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"ydY" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Laurie's Laundromat" + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/laundromat) +"yed" = ( +/obj/structure/flora/jungle/hedge{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/welcome_center_exterior/east) +"yeg" = ( +/obj/item/frame/apc, +/obj/item/frame/camera{ + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southwest/slums) +"yek" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor{ + dir = 8; + icon_state = "darkblue2" + }, +/area/lv873/indoors/operations/serverroom) +"yeo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/ss_athens) +"yeA" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/wood, +/area/lv873/indoors/south/slums) +"yfc" = ( +/obj/item/weapon/stunprod, +/obj/structure/sign/poster/hunk{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/lv873/indoors/operations/maintenance/south) +"yfC" = ( +/obj/structure/flora/jungle/hedge, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 8 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/gated_community_exterior) +"yfF" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor{ + dir = 8; + icon_state = "barber" + }, +/area/lv873/indoors/uscm_garrison/garrison_bunks) +"yfP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/paper/crumpled{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"ygd" = ( +/obj/structure/ladder{ + height = 1; + id = "tunnel5a"; + pixel_y = 20 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/marshals/garage) +"ygf" = ( +/obj/structure/fence, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"ygo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom"; + dir = 1 + }, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"ygz" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = -9 + }, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40{ + pixel_x = 9 + }, +/obj/item/clothing/under/colonist/clf{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/clothing/under/colonist/clf{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv873/indoors/lone_buildings/clf_barracks) +"ygG" = ( +/obj/item/trash/cigbutt/bcigbutt{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor{ + icon_state = "dark" + }, +/area/lv873/indoors/operations/offices/east) +"yhg" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder{ + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/ss_athens) +"yhl" = ( +/obj/item/storage/toolbox, +/turf/open/gm/river{ + icon = 'icons/turf/ground_map_dirt.dmi' + }, +/area/lv873/outdoors/flooded_streets/west) +"yhG" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/lv873/indoors/southeast/slums) +"yic" = ( +/obj/structure/machinery/atm{ + pixel_y = 30 + }, +/obj/item/spacecash/ewallet, +/turf/open/floor/wood, +/area/lv873/indoors/welcome_center/lobby) +"yik" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 32 + }, +/turf/open/floor, +/area/lv873/indoors/flooded/east_apartments) +"yiy" = ( +/obj/structure/largecrate/supply/supplies/flares, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/lv873/indoors/lone_buildings/army_surplus) +"yiC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/alt{ + pixel_x = -16; + pixel_y = 26 + }, +/turf/open/asphalt/cement, +/area/lv873/indoors/lz_sec_checkpoint) +"yiE" = ( +/obj/item/tool/weldingtool/hugetank, +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, +/turf/open/asphalt/cement, +/area/lv873/indoors/bungalow_manager) +"yjj" = ( +/obj/structure/surface/rack, +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 1 + }, +/area/lv873/oob) +"yjx" = ( +/turf/open/gm/road{ + icon_state = "browndirt_road_3"; + dir = 4 + }, +/area/lv873/oob) +"yjY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"ykh" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement, +/area/lv873/indoors/flooded/east_apartments) +"yko" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/dirt/north, +/area/lv873/outdoors/hospital/road_north_west) +"ykp" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/item/device/radio/headset{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/floor/carpet{ + icon_state = "bcarpet03" + }, +/area/lv873/indoors/southeast/slums) +"yku" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window, +/obj/item/paper{ + icon_state = "paper_stack"; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor{ + icon_state = "floor4" + }, +/area/lv873/indoors/marshals/mainhall) +"ykw" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall, +/area/lv873/indoors/hospital/operating_rooms) +"ykH" = ( +/obj/structure/machinery/washing_machine{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/machinery/washing_machine{ + pixel_x = -4; + pixel_y = 21 + }, +/obj/structure/machinery/washing_machine{ + pixel_x = 20; + pixel_y = 6 + }, +/obj/structure/machinery/washing_machine{ + pixel_x = 20; + pixel_y = 21 + }, +/turf/open/floor{ + dir = 9; + icon_state = "whitegreen" + }, +/area/lv873/indoors/hospital/storage_laundyroom_and_breakroom) +"ykK" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/stack/sheet/metal, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/colony_streets/south) +"ykM" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/prop/flower_vase/redwhiteflowers{ + pixel_x = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/south/slums) +"yla" = ( +/obj/item/shard, +/turf/open/gm/dirtgrassborder/dirt/east, +/area/lv873/outdoors/landing_zones_disembark) +"ylm" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/hospital/road_north_west) +"ylq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor{ + icon_state = "whiteblue" + }, +/area/lv873/indoors/hospital/research/floor) +"ylL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox{ + pixel_y = 4 + }, +/obj/effect/spawner/random/toolbox{ + pixel_y = -3 + }, +/turf/open/floor{ + icon_state = "white" + }, +/area/lv873/indoors/lone_buildings/gas_n_gear) +"ylO" = ( +/obj/item/bedsheet/captain, +/turf/open/floor/plating, +/area/lv873/indoors/marshals/cells) +"ylS" = ( +/turf/open/gm/coast/dirt/beachcorner2/north_west, +/area/lv873/outdoors/flooded_streets/waste_treatment) +"ylW" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/dirt, +/area/lv873/outdoors/bungalow_manager_exterior) +"yme" = ( +/obj/item/trash/buritto{ + pixel_y = 9 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/lv873/indoors/southeast/slums) + +(1,1,1) = {" +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +"} +(2,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(3,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wTq +wTq +nOj +xpx +nOj +xpx +wTq +wTq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wTq +wTq +nOj +xpx +nOj +xpx +wTq +wTq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(4,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wTq +wTq +nmG +dsE +nmG +dsE +wTq +wTq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wTq +wTq +nmG +dsE +nmG +dsE +wTq +wTq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nJY +nJY +nRr +nRr +nRr +nJY +nJY +nRr +nRr +nRr +nRr +nJY +nJY +nRr +nJY +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +xvJ +bhp +nmG +nRr +nRr +nRr +dsE +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +gUi +vbZ +vbZ +vbZ +vbZ +vbZ +oCS +nJY +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(5,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oQL +oQL +oQL +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nJY +nJY +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +dsE +bhp +sRY +bhp +bKx +bhp +vbZ +vbZ +nJY +nRr +vAu +nJY +nRr +nJY +nRr +dsE +bhp +bhp +bhp +bhp +bhp +bhp +xQd +vbZ +bhp +bhp +bhp +bhp +xvJ +xQd +bKx +bhp +gUi +qFQ +nwr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(6,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +nmG +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +lap +lap +lap +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nJY +nJY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +dsE +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +sRY +bhp +lLd +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +onr +bKx +xaD +bhp +bhp +bhp +qFQ +nwr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(7,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +nRr +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +dep +vbZ +vbZ +vbZ +nJY +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nJY +vWz +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +xQd +bhp +bhp +vbZ +bhp +bhp +vbZ +vbZ +vbZ +xvJ +suZ +bhp +bhp +sRY +bhp +bhp +qFQ +nwr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(8,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +ozq +vbZ +vbZ +vbZ +nJY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vAu +vbZ +vbZ +nRr +nRr +dsE +bhp +vbZ +vbZ +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +xQd +xQd +bKx +bhp +xQd +bhp +bhp +bKx +qFQ +iwf +nwr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(9,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +bhp +gUi +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +lLd +nRr +nRr +dsE +bKx +bKx +bhp +nmG +nRr +nJY +nRr +ozq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +vkW +kkE +kkE +kkE +rKB +hdY +vbZ +vbZ +vbZ +bhp +xaD +sRY +bhp +qFQ +iwf +nwr +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(10,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +bhp +bhp +sRY +vbZ +vbZ +vbZ +vbZ +nRr +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nJY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nJY +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +dsE +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +bhp +bhp +sRY +bhp +bKx +vbZ +vbZ +nRr +nJY +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +cvv +vPV +hru +lkN +vPV +vPV +hru +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(11,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +sRY +vbZ +bhp +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +bhp +bhp +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nJY +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +pkF +car +car +gbx +pkF +pkF +pkF +pkF +pkF +pkF +pkF +pkF +kpR +jBJ +vcg +kpR +kpR +kpR +kpR +law +jBJ +jBJ +qkd +qrE +gAP +qrE +qrE +cvv +asv +svP +yek +lMd +lDc +vPV +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(12,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +sRY +nmG +dsE +nmG +dsE +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +bhp +xaD +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +gUi +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bKx +bhp +bKx +bhp +bhp +vbZ +vbZ +nRr +ozq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vwM +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +gUi +bhp +bhp +bhp +gbx +dmB +oOe +ozu +sTm +gbx +utM +uUo +bDB +qfJ +kkm +gbx +kFG +noP +eoF +hyh +lTf +sBC +jrY +dua +noP +oNN +ckB +mCD +kSG +gJM +lmb +lkN +jiq +vSW +tXh +xjw +pPc +lkN +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(13,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +xaD +bhp +bhp +nmG +dsE +nmG +dsE +xaD +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +xaD +bhp +nmG +dsE +nmG +dsE +bhp +xaD +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bKx +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +sRY +lwa +lwa +lwa +lwa +lwa +lwa +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +sRY +vbZ +xaD +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +gbx +aok +tNB +iOf +abW +gbx +upV +adK +iOf +iOf +nea +wdr +nQE +asZ +asZ +asZ +asZ +sLA +oSz +qtx +qtx +qtx +aZy +lgj +cIE +kBR +cSI +hru +tqU +lkN +lkN +lkN +gKz +vPV +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(14,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +sRY +bhp +vbZ +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +gUi +bhp +bhp +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +gUi +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +xaD +sRY +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +bhp +gUi +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +sRY +vbZ +vbZ +sRY +bhp +xaD +bKx +sRY +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +bhp +bhp +xaD +bhp +lwa +rrF +rrF +rrF +rrF +lwa +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +gUi +bhp +bhp +vbZ +vbZ +vbZ +bhp +xaD +bhp +bhp +bhp +bhp +bhp +sRY +gbx +fux +tNB +kOI +nea +nBy +iOf +lBl +lBl +kOI +nKb +fSv +rvB +jXk +lnf +uhk +nVh +sNy +gca +sZT +asZ +vBX +xuZ +bfV +fkH +mXw +mXd +vPV +eLh +tWz +jDI +tWz +iGI +vPV +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(15,1,1) = {" +oNn +vbZ +vbZ +vbZ +jrT +dep +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +xaD +bhp +bhp +bhp +sRY +bhp +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +gUi +bhp +xaD +nmG +dsE +nmG +dsE +bhp +bhp +bhp +bhp +bhp +vbZ +trG +trG +trG +trG +trG +trG +trG +bhp +xaD +bhp +sRY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +gUi +vbZ +vbZ +vbZ +sRY +bhp +xaD +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +bhp +bhp +bhp +xaD +vbZ +vbZ +vbZ +bhp +bhp +bhp +gUi +vbZ +xaD +bhp +gUi +bhp +bhp +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +xdZ +bhp +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +bhp +bhp +bhp +bhp +bhp +bhp +lwa +hnL +fia +rrF +rrF +lwa +bhp +xaD +vbZ +vbZ +vbZ +vbZ +xaD +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +gbx +lMt +ezd +iOf +pok +gbx +heV +uRg +vGY +smo +fda +gbx +bXn +asZ +jyM +vcg +jBJ +jBJ +vcg +sMy +asZ +jyM +gAP +cPS +sCi +qzO +wFU +lkN +lBg +iXx +pqm +oLl +qgu +lkN +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(16,1,1) = {" +oNn +vbZ +jrT +kkE +vWV +vWz +dep +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +xaD +bhp +bhp +bhp +pCm +nmG +dsE +nmG +dsE +qug +xaD +gUi +bhp +sRY +vbZ +trG +cGQ +cGQ +tfM +siR +jaJ +trG +sRY +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +ekl +nmG +dsE +nmG +dsE +ekl +sRY +bhp +bhp +sRY +bhp +bhp +vbZ +bhp +sRY +bhp +bhp +bhp +vbZ +bKx +bhp +sRY +bhp +bhp +xdZ +hgu +xQO +fMI +xQO +qnK +xQO +cdz +ecQ +xuC +hgu +xdZ +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +sRY +bhp +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +sRY +bhp +lwa +owY +fia +fia +eUh +lwa +sRY +bhp +bhp +bhp +vbZ +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +xaD +bhp +bhp +wau +wau +wau +pSv +wau +wau +wau +wau +uiQ +xLM +gbx +gbx +qZw +uKg +tUs +jBJ +mZV +wBT +jBJ +fDB +asZ +mKV +qkd +ckB +gAP +qkd +gAP +hru +akx +rdx +tWz +tWz +iGI +lkN +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(17,1,1) = {" +oNn +vbZ +nmG +nRr +vbZ +vbZ +tfr +vbZ +vbZ +vbZ +vbZ +iwf +nwr +vbZ +vbZ +vbZ +mKD +mKD +mKD +aJI +aJI +aJI +mKD +mKD +mKD +aJI +aJI +aJI +mKD +mKD +mKD +aJI +aJI +aJI +mKD +mKD +uNb +uzG +ibZ +sXn +qug +qug +izO +izO +izO +qug +trG +gdc +rFU +dOQ +hrs +uWl +trG +qug +iIB +izO +izO +qug +qug +qug +izO +izO +izO +qug +qug +qug +eDV +eDV +eDV +ekl +ekl +ekl +eDV +eDV +eDV +ekl +ekl +ekl +eDV +eDV +eDV +ekl +ekl +ekl +eDV +eDV +eDV +ekl +ekl +ekl +aXu +pWG +dbj +txz +ekl +ekl +ekl +eDV +eDV +eDV +ekl +ekl +ekl +eDV +eDV +eDV +ekl +xdZ +xdZ +kTq +kTq +kTq +xdZ +xdZ +hgu +xQO +pTe +xQO +pTe +xQO +eKS +xQO +xuC +hgu +xdZ +xdZ +ueo +ueo +ueo +xdZ +lwa +lwa +bgk +bgk +bgk +lwa +lwa +lwa +bgk +bgk +bgk +lwa +lwa +lwa +bgk +bgk +bgk +lwa +lwa +lwa +bgk +bgk +bgk +lwa +uDB +fia +fia +fia +lwa +bgk +bgk +bgk +lwa +lwa +eWz +qer +qer +qer +eWz +eWz +eWz +qer +qer +qer +eWz +eWz +eWz +eWz +wau +wau +wau +wau +wau +mJG +arE +pVv +fdM +oMP +bPF +wau +awn +lBl +dUe +gbx +qZw +oSz +jyM +vcg +sQC +dXX +mri +qZw +wlT +dKP +ixN +fjA +cWI +eOK +gch +lkN +tqU +lkN +qMk +lkN +gKz +hru +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(18,1,1) = {" +oNn +vbZ +nmG +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +mKD +mOb +cLu +tQJ +cLu +cLu +cLu +mOb +cLu +cLu +cLu +cLu +cLu +mOb +cLu +cLu +cLu +cLu +cLu +mKD +ueh +kIp +kIp +dwF +qug +cRq +lAL +jYz +kto +kto +trG +cGQ +rFU +rFU +rFU +fzr +mJv +bNn +dwF +qrT +qrT +qrT +pCv +kto +kto +kto +kto +kto +qdK +kto +ixY +rnz +rnz +rnz +xrS +fpl +rnz +rnz +rnz +rnz +xrS +rnz +rnz +nIV +rnz +rnz +xrS +fpl +rnz +cGV +rnz +rnz +cGV +ekl +rWq +wNK +wNK +gnS +ekl +rnz +rnz +rnz +rnz +rnz +rnz +xrS +rnz +rnz +rnz +rnz +rnz +wLc +sKo +pev +pev +pev +uGI +xdZ +hgu +xQO +pTe +xQO +pTe +xQO +uyd +xQO +xuC +hgu +xdZ +kFU +beB +tVg +tVg +beB +bgk +nbj +nbj +gys +lsf +nbj +oPB +nbj +pun +wYC +wYC +wYC +xBI +wYC +wYC +wYC +wYC +wYC +xBI +wYC +wYC +wYC +dWo +lwa +ubF +fia +fia +fia +lwa +nbj +nbj +nbj +oPB +bgk +ycu +ycu +ycu +ycu +ycu +ucO +tMo +ycu +ycu +dbH +cKY +cKY +cKY +unb +wau +uqA +voS +ueG +wau +iKB +hGQ +snx +dRO +oMP +jgz +tKp +jZu +lBl +iNU +gbx +nCX +wlT +vpB +jBJ +jBJ +vcg +jBJ +lRX +asZ +asZ +cya +ceb +peo +ceb +tig +lkN +akx +tXh +rlt +xjw +iGI +vPV +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(19,1,1) = {" +oNn +vbZ +qFQ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +mKD +wpX +cLu +cLu +ghT +wpX +cLu +gKI +cLu +cLu +cLu +tQJ +cLu +tQJ +cLu +cLu +cLu +gKI +tQJ +gKI +ueh +kIp +kIp +uKA +kto +kto +kto +sEy +pHS +tlk +trG +jmX +rFU +rFU +rFU +gse +trG +xWK +dwF +iCV +qrT +jYz +sEy +kIp +oAH +eqc +eqc +eqc +eqc +sYX +gnS +rnz +rnz +rnz +nIV +rnz +rnz +nIV +rnz +rnz +rnz +rnz +rnz +rnz +rnz +nIV +rnz +isj +bnp +bnp +nJD +bnp +bnp +bnp +wGn +wNK +wNK +gnS +rnz +rnz +nIV +rnz +rnz +nIV +rnz +fuK +wsO +wsO +wsO +wsO +tEt +wLc +pfF +xMn +loL +loL +tMW +xdZ +hgu +pTe +pTe +pTe +pTe +iLL +pTe +pTe +pTe +hgu +xdZ +tVg +tVg +pPt +tVg +tVg +bgk +nbj +nbj +lsf +nbj +nbj +nbj +pun +lLz +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +rQP +lwa +ubF +fia +fia +fia +lwa +dWo +pun +wYC +wYC +ezl +ycu +ycu +ycu +ycu +ycu +ycu +dbH +cKY +cKY +uWq +uZA +uZA +uZA +uZA +wau +tIr +bav +bav +eeu +pVv +pVv +cZY +kLn +oMP +slB +tSH +orE +kOI +hFz +gbx +qZw +asZ +jyM +mri +wpy +ilT +jBJ +qZw +oSz +lnf +nSp +qHv +ceb +dWL +mxI +lkN +aKI +acT +iGY +bBF +qKe +vPV +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(20,1,1) = {" +oNn +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +aJI +cLu +cLu +ghT +ghT +ghT +cLu +cLu +sKr +sLT +sLT +sLT +iqT +cLu +sKr +sLT +sLT +sLT +knJ +cLu +ueh +kIp +kIp +pHS +tlk +tlk +tlk +tlk +vWL +aam +trG +trG +rFU +rFU +rFU +trG +trG +sov +ehd +cRq +qrT +ueh +kIp +oAH +pJR +gUu +gUu +gUu +gUu +bNn +gvH +rnz +nIV +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +klz +klz +klz +klz +klz +klz +klz +sco +xNj +dYE +dYE +dYE +dYE +nrY +wNK +wNK +gnS +rnz +rnz +fpl +nIV +cGV +rnz +rnz +poy +poy +poy +poy +poy +bmF +wLc +pfF +loL +loL +loL +loL +xdZ +bNS +pTe +pTe +pTe +pTe +afa +pTe +pTe +pTe +bNS +xdZ +tVg +tVg +tVg +tVg +tVg +bgk +nbj +gys +nbj +nbj +pun +wYC +lLz +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +rQP +lLz +mqA +mqA +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +kqw +uZA +uZA +uZA +uZA +uZA +uZA +wau +hlk +dhf +lrQ +wau +gGK +uwi +jos +kLn +oMP +slB +ybR +lXI +lrd +fuc +gbx +ekB +asZ +fqB +jBJ +ehA +ooz +vcg +qZw +qtx +lWi +gAP +xbA +aHj +qoI +gAP +hru +iyC +aOE +iZH +rgc +iyC +lkN +cvv +nRr +nRr +vbZ +vbZ +oNn +"} +(21,1,1) = {" +oNn +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +sRY +aJI +tQJ +cLu +ghT +ghT +sKr +sLT +sLT +ePk +eHm +vhl +oYd +elo +sLT +ePk +eHm +vhl +oYd +elo +sLT +sEy +kIp +kIp +sFg +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +wJt +uKA +kto +kto +kto +sEy +kIp +fPg +bPM +gUu +gUu +gUu +gUu +bNn +gnS +rnz +rnz +rnz +rnz +rnz +rnz +cGV +rnz +rnz +rnz +klz +mUm +prn +klz +mUm +dyH +klz +ivV +iBd +phK +phK +phK +phK +cbI +wNK +wNK +gnS +xrS +rnz +rnz +rnz +rnz +rnz +rnz +wpv +poy +poy +poy +poy +bmF +wLc +bzj +wnG +gBW +rWx +rWx +xdZ +xdZ +kNs +kNs +kNs +xdZ +xdZ +kNs +kNs +kNs +xdZ +xdZ +tVg +tVg +tVg +beB +lwa +lwa +lwa +lwa +lwa +lwa +lwa +lwa +mqA +mqA +mqA +mqA +roO +twT +twT +twT +twT +xox +twT +twT +jeQ +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +dCQ +gqy +fia +vLi +fia +fia +oBk +uZA +uZA +uZA +uZA +uZA +uZA +wau +wau +wau +wau +wau +mJG +arE +glk +kLn +oMP +bPF +wau +uiQ +uiQ +gbx +gbx +sor +bvL +jyM +jBJ +jBJ +vcg +jBJ +qZw +qtx +jyM +ckB +qkd +gAP +ckB +qkd +cbS +dbY +ujd +dSg +atK +iyg +faI +qLF +nRr +nRr +vbZ +vbZ +oNn +"} +(22,1,1) = {" +oNn +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +nRr +dsE +bhp +bhp +aJI +cLu +cLu +ghT +cLu +jvR +eHm +vhl +vhl +ylS +gAw +oba +vhl +vhl +vhl +ylS +gAw +oba +vhl +oYd +kIp +kIp +kIp +sFg +hzl +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +gxd +tlk +tlk +tlk +hdT +kIp +kIp +kIp +fPg +jxV +jxV +jxV +jxV +xWK +gnS +rnz +rnz +rnz +nIV +rnz +rnz +rnz +rnz +rnz +rnz +klz +oEQ +vnS +klz +uYv +eLp +klz +phK +iBd +phK +iBd +oUh +oec +cfO +wNK +wNK +gnS +rnz +rnz +cGV +rnz +rnz +rnz +nIV +rnz +kgq +poy +poy +poy +bmF +sFF +sFF +sFF +sFF +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +fTP +wRC +wRC +wRC +wRC +jdw +lDo +tVg +beB +tVg +lwa +lwa +lwa +lwa +lwa +lwa +lwa +lwa +mqA +mqA +mqA +mqA +lBb +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +hKI +hKI +hKI +dCQ +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +mqA +dCQ +fia +fia +fia +fia +fia +oBk +uZA +uZA +uZA +uZA +gqh +flf +wau +sKW +cVJ +wau +sKW +iIe +hGQ +pVv +pVv +oMP +cyE +wau +dQl +dQl +jlP +nnA +vyC +bSy +uFU +hAl +exI +xzQ +xzQ +sAT +jVU +uFU +gBH +gBH +aWP +gBH +gBH +gBH +jVu +ehb +dSg +vxx +tOZ +fEP +jRF +nRr +nRr +vbZ +vbZ +oNn +"} +(23,1,1) = {" +oNn +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vbZ +bhp +bhp +mKD +cLu +cLu +cLu +sKr +ePk +iss +gAw +gAw +gAw +gAw +gAw +lFn +lFn +lFn +lFn +lFn +lFn +lFn +frz +kIp +kIp +kIp +sFg +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +aam +gxd +tlk +hdT +kIp +trG +trG +trG +trG +trG +trG +afX +fpl +rnz +rnz +rnz +nIV +klz +klz +klz +klz +klz +klz +klz +jHe +klz +jHe +klz +klz +klz +klz +nbh +klz +klz +uoK +bKm +wNK +wNK +gnS +wIx +wIx +iFM +jVg +iFM +wIx +wIx +rnz +kgq +poy +poy +poy +lSB +sFF +peI +jJh +sFF +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +dPL +wRC +wRC +wRC +wRC +wRC +jdw +lDo +cYg +tVg +lwa +lwa +wII +sGs +bRR +qlD +lwa +lwa +hOT +mqA +mqA +pCH +lBb +dCQ +ptv +jHE +dOr +dCQ +rsg +mrY +bYj +dCQ +jeg +tsl +rpf +dCQ +vLr +xqb +xxK +ngy +mqA +mqA +mqA +mqA +mqA +mqA +dCQ +ubF +ubF +xZY +xZY +fia +oBk +uZA +uZA +uZA +uZA +heP +lRS +sWL +fkw +fkw +sWL +fkw +ipO +iLl +xMH +iCD +fBW +fkw +xTO +lkg +dsY +dsY +lkg +xRD +bSy +mlx +lkg +dsY +dsY +dsY +bkO +dVJ +mlx +exf +mMB +exf +fvo +exf +exf +ehb +deN +gwE +pwu +kQI +tOS +qLF +nRr +nRr +vbZ +vbZ +oNn +"} +(24,1,1) = {" +oNn +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +vbZ +mKD +mOb +cLu +cLu +jvR +eHm +ylS +gAw +gAw +gAw +gAw +gAw +lFn +mov +mov +mov +mov +mov +lFn +frz +kIp +kIp +kIp +sFg +aam +aam +aam +aam +aam +aam +xet +trG +trG +trG +trG +trG +trG +trG +trG +trG +trG +aam +gxd +tlk +trG +fPS +pfZ +nXJ +wvj +trG +fpl +rnz +cGV +rnz +rnz +rnz +klz +pLc +pNt +eMv +sci +klz +qYF +mGm +mGm +mGm +hRR +klz +nfZ +qwu +mGm +iSx +klz +rnz +rWq +wNK +wNK +gnS +wIx +oLn +fzT +wNd +fzT +xFr +wIx +rnz +wpv +mLT +mLT +lSB +sFF +sFF +sFF +nyS +sFF +sFF +sFF +wRC +wRC +wRC +wRC +wRC +tQW +wRC +iQR +wRC +wRC +wRC +wRC +wRC +jdw +lDo +pPt +lwa +lwa +bGT +ooU +bGT +bGT +ybW +spK +mqA +mqA +mqA +mqA +lsz +dCQ +evT +vhM +dOr +dCQ +bmS +cEg +bYj +dCQ +sfR +cuE +rLe +dCQ +wRR +dCQ +dCQ +wUO +vLr +kzd +mqA +mqA +mqA +mqA +dCQ +dCQ +dCQ +dCQ +dCQ +dCQ +vZQ +uZA +uZA +uZA +uZA +heP +lRS +lwj +iYh +esa +lwj +esa +pVv +saA +wau +aDY +cFp +eaT +gYB +rCB +cUn +jVU +xYQ +bSy +vWG +bSy +jTN +bSy +bSy +bSy +bSy +exd +sAK +ttL +vUF +ttL +dSg +dSg +nmm +dSg +brb +nbP +hXp +kQI +tOS +jRF +nRr +nRr +vbZ +vbZ +oNn +"} +(25,1,1) = {" +oNn +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +bhp +mKD +wpX +cLu +cLu +jvR +iss +gAw +gAw +gAw +gAw +gAw +gAw +lFn +mov +iue +mov +mov +gAw +gAw +oba +hdT +kIp +kIp +sFg +agB +agB +rGZ +agB +agB +aam +aam +trG +rFU +rFU +fWE +gld +trG +rFU +rFU +cVa +trG +aam +aam +gJc +vqS +xpf +rFU +wif +pfZ +trG +trG +trG +trG +eDV +eDV +eDV +klz +hsZ +mGm +bJC +mGm +mGm +mGm +kRu +mGm +bFr +wHJ +kAv +mGm +npa +pNO +oDi +klz +cGV +rWq +wNK +wNK +gnS +iFM +vup +dJV +gZU +iCv +vup +iFM +nIV +cGV +rnz +fpl +rnz +sFF +ylL +smc +ljw +tCj +mHf +sFF +puw +dNa +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +jdw +lDo +lwa +lwa +cAf +hMT +fnb +ooU +ybW +rSF +mqA +mqA +mqA +mqA +fuw +dCQ +evT +vhM +ryr +dCQ +bcB +vhM +kQC +dCQ +rpf +wJS +ugG +iny +rpf +vNg +dCQ +dCQ +dCQ +dCQ +mqA +mqA +mqA +mqA +dCQ +ycu +qLP +tMo +ucO +rOS +uZA +uZA +uZA +uZA +uZA +ics +lRS +phL +eqb +eqb +brI +eqb +uwi +jdR +oTu +bWO +jEg +eqb +tps +cDQ +nDS +vWG +hWh +kCE +uxB +kCE +kCE +uli +uxB +kCE +jll +bSy +cdr +bwu +oom +oom +oom +kbA +tIX +cpU +hYt +qsu +sSL +kQI +tOS +gyO +nRr +nRr +vbZ +vbZ +oNn +"} +(26,1,1) = {" +oNn +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +sRY +bhp +aJI +cLu +cLu +cLu +jvR +iss +gAw +gAw +gAw +gAw +gAw +gAw +lFn +mov +mov +gAw +mov +gAw +gAw +gAw +wJt +kIp +kIp +sFg +iqg +cFT +iqg +piV +agB +aam +aam +wYu +rFU +rFU +rFU +cXf +trG +spj +rFU +gns +vqS +aam +aam +aam +vqS +xpf +xpf +lYv +ybu +trG +xga +rSA +trG +rnz +rnz +rnz +klz +cWZ +fwC +cvE +fmt +klz +uiL +qLH +mGm +gbI +iOy +klz +oZk +qTD +wHJ +lsY +klz +rnz +rWq +wNK +wNK +gnS +iTI +vup +toc +qaI +dJV +vup +iFM +rnz +rnz +rnz +nIV +rnz +sFF +sDJ +uZf +uZf +uZf +ljw +cqM +uHH +uHH +wRC +wRC +qvE +nJp +iye +nJp +wRC +wRC +wRC +wRC +wRC +wRC +wRC +oSa +lwa +lwa +ooU +bGT +bGT +ybW +ybW +rSF +mqA +mqA +mqA +mqA +rQP +dCQ +dCQ +bnf +dCQ +dCQ +dCQ +meC +dCQ +dCQ +dCQ +tyB +dCQ +dCQ +rpf +rpf +ehE +gMZ +hut +dCQ +mqA +mqA +mqA +mqA +dCQ +ycu +oem +dbH +cKY +uWq +uZA +uZA +uZA +uZA +uZA +eym +kpq +wau +iyb +ixK +wau +iyb +ofj +mtG +jGd +eqb +lcE +iyb +wau +wrx +sAT +xeY +tVX +sKw +dhY +dhY +say +jpX +dhY +dhY +sAT +vWG +tVX +bTu +bTu +cAc +bTu +bTu +tyk +fvZ +cpU +ttL +qIt +sML +tOS +jRF +nRr +nRr +vbZ +vbZ +oNn +"} +(27,1,1) = {" +oNn +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +xaD +bhp +aJI +tQJ +wpX +cLu +jvR +iss +gAw +gAw +gAw +gAw +gAw +gAw +lFn +mov +mov +gAw +gAw +gAw +lFn +gAw +wJt +kIp +kIp +sFg +iqg +cSC +iqg +xke +agB +aam +aam +wYu +rFU +rFU +rFU +rFU +rFU +rFU +rFU +tyX +vqS +oFh +gJc +aam +trG +spj +cBV +cSL +fPS +mTk +xBH +vjb +trG +nIV +cGV +rnz +klz +mGm +mGm +fCP +mGm +ocU +mGm +flK +mGm +vgd +mGm +lPd +wHJ +sUG +mGm +gfi +klz +rnz +rWq +wNK +wNK +gnS +iFM +vup +dJV +dJV +toc +wIx +wIx +wIx +wIx +wIx +rnz +cGV +sFF +suG +kne +ljw +osL +deY +sFF +sCS +hOt +wRC +wRC +wRC +wox +wRC +mzg +wRC +wRC +wRC +wRC +wRC +wRC +wRC +oSa +lwa +lwa +wGH +iEj +siv +eDE +lwa +lwa +vHg +mqA +mqA +mqA +mqA +dCQ +cBN +rpf +rpf +sFv +rpf +srJ +rpf +fmE +rpf +rpf +hSx +dCQ +dUg +rpf +qOy +mUn +pPd +dCQ +bXk +bXk +bXk +pDF +dCQ +dbH +bVL +uWq +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uzV +myE +uzV +fiv +fiv +fiv +fiv +fiv +fiv +fiv +fiv +fiv +fiv +xFD +xzq +gjI +fiv +fiv +nzf +nGG +nzf +nzf +nGG +qeH +nTB +lnm +nzf +kxr +vQv +nkS +vQv +kPp +dus +ocl +ttL +kQI +mZm +hUZ +nbP +nRr +nRr +vbZ +vbZ +oNn +"} +(28,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +bhp +bhp +aJI +cLu +cLu +cLu +jvR +iss +gAw +nAK +gAw +nAK +gAw +gAw +lFn +lFn +lFn +lFn +lFn +lFn +lFn +gAw +wJt +kIp +kIp +sFg +iqg +cSC +ace +sNa +agB +aam +aam +trG +xpf +rFU +jsP +ftZ +trG +rFU +rFU +rea +trG +gJc +aam +aam +rFU +rFU +rFU +rFU +mVI +trG +trG +trG +trG +rnz +rnz +rnz +klz +wHJ +mGm +mGm +mGm +mGm +mGm +kEq +mGm +kWL +mGm +qxN +mGm +oCt +qXE +qyg +klz +cGV +rWq +wNK +wNK +gnS +cjb +sTU +aIz +aIz +esD +wIx +dGJ +aJG +lEt +wIx +rnz +rnz +sFF +kCt +bbn +uZf +uZf +ljw +dgm +nDZ +nDZ +jqZ +wRC +wRC +wRC +wRC +wRC +wRC +wRC +wRC +jJr +jqZ +wRC +wRC +oSa +lwa +lwa +lwa +lwa +lwa +lwa +lwa +lwa +mqA +mqA +mqA +mqA +mqA +hKI +cBG +jIl +wCh +lSi +lCF +rpf +vqx +lGA +vzW +myG +jeg +dCQ +wRR +dCQ +bKP +cdL +dCQ +dCQ +uZA +uZA +uZA +qcQ +szV +rOS +jHF +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uzV +dPR +gsD +fiv +xUy +jWR +rZf +qxc +gju +iGZ +lcG +qJH +mzz +jyA +mSR +npH +aVK +fiv +nzf +wdk +mLO +ikT +tte +bZy +kTW +cXz +lqk +nkS +tkQ +bvJ +nkS +kxr +mDH +ocl +dSg +kQI +epX +gyO +nbP +nRr +nRr +vbZ +vbZ +oNn +"} +(29,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +nmG +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +mKD +cLu +cLu +cLu +jvR +iss +gAw +bLB +gAw +bLB +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +wJt +kIp +pHS +vWL +iqg +mVM +jzf +mVM +agB +aam +aam +trG +trG +trG +trG +trG +trG +rFU +rFU +rFU +rFU +aam +aam +xet +trG +nUi +rFU +mCH +pXs +mTk +xBH +vjb +trG +cGV +rnz +nIV +klz +oZk +mOK +mGm +mGm +mGm +mGm +mGm +mGm +mGm +mGm +klz +klz +klz +klz +klz +klz +xrS +rWq +wNK +wNK +gnS +iFM +mfi +aQt +afm +pRY +wIx +tss +qjk +jVS +wIx +rnz +fpl +sFF +oNi +mFh +uZf +qbK +ioi +dgm +tVg +tVg +jlE +wRC +wRC +wRC +wRC +wRC +wRC +wRC +jJr +wzK +jlE +wRC +wRC +oSa +lwa +lwa +lwa +lwa +lwa +lwa +lwa +lwa +mqA +mqA +mqA +mqA +mqA +maa +rpf +rpf +vjT +lSi +dRH +rpf +jpI +uxD +mJK +ovs +rpf +maa +iJr +afO +iJr +xjd +wLk +hKI +uZA +uZA +uZA +jNL +dbH +xzS +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uzV +dPR +gsI +fiv +vlL +gDr +cbi +tjx +cSW +gMa +oeT +ndb +oeT +eLL +hbY +npH +pqN +cys +nzf +tYw +ppS +onj +ddV +kTW +oBH +eah +jbH +cdJ +kFf +ljR +toL +kxr +mDH +qYO +dSg +kQI +tOS +nbP +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(30,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +nRr +vbZ +vbZ +vbZ +vbZ +nRr +dsE +vbZ +bhp +mKD +mOb +cLu +tQJ +jvR +iss +nIT +nIT +nIT +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +ayc +gxd +tlk +vWL +aam +agB +agB +agB +agB +agB +aam +aam +agB +iqg +iqg +iqg +lpf +trG +sXs +fPS +fIh +trG +aam +aam +aam +trG +rFU +rFU +rFU +rsV +trG +fPF +rSA +trG +rnz +rnz +rnz +klz +nfZ +wGQ +lux +oLA +uNU +jXr +xMr +mGm +mGm +cgF +klz +rnz +cGV +rnz +rnz +rnz +rnz +rWq +wNK +wNK +gnS +wIx +wIx +tYo +wIx +wIx +wIx +wIx +gAa +wIx +wIx +nIV +rnz +sFF +uPK +uZf +ljw +uZf +mcS +sFF +tVg +tVg +vjY +jqZ +wRC +wRC +wRC +wRC +wRC +wRC +oSa +cYg +jlE +wRC +wRC +jdw +lDo +bgk +nbj +nbj +nbj +gys +nbj +pZL +twT +jeQ +mqA +mqA +mqA +dCQ +mjg +jeg +rpf +rpf +rpf +oFS +rpf +rpf +rpf +rpf +rpf +glf +rpf +iJr +xjd +iJr +rpf +hKI +uZA +uZA +uZA +jgS +uWq +uZA +uZA +uZA +uZA +uZA +nSr +hwR +ruE +uZA +uZA +uZA +uZA +uzV +jgq +whT +fiv +kQN +hzT +dLm +kvT +qpl +kvT +kvT +lXp +lXp +kvT +hbY +npH +pqN +bMv +nzf +tYw +ddV +eah +pGD +nda +mzR +jPC +mRs +cdJ +tMG +vwo +bsO +nkS +mDH +ocl +klh +bTV +tOS +gyO +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(31,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +dsE +bhp +bhp +mKD +wpX +cLu +cLu +jvR +nIT +nIT +wZo +wZo +wZo +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +xxP +gAw +aam +uzx +pHA +aam +aam +aam +aam +aam +aam +aam +aam +iqg +iqg +mEC +iqg +vRr +xWa +trG +trG +trG +trG +agB +aam +aam +trG +trG +trG +rFU +trG +trG +trG +trG +trG +rnz +cGV +rnz +klz +aQV +wjx +wjx +wjx +aQV +klz +klz +mGm +mHw +klz +klz +rnz +rnz +nIV +cGV +rnz +nIV +rWq +wNK +wNK +gnS +wIx +mbO +aIz +bUT +msN +wIx +xRP +aIz +iAM +wIx +rnz +nIV +sFF +pWI +ioi +uZf +uUN +xhA +dgm +tVg +cYg +tVg +vjY +nDZ +nDZ +nDZ +nDZ +nDZ +nDZ +wzK +tVg +wlU +wRC +wRC +wRC +oSa +bgk +nbj +pJm +nbj +nbj +nbj +gys +nbj +pZL +jeQ +mqA +gEz +dCQ +dCQ +avz +dCQ +djX +dCQ +dCQ +dCQ +qSK +dCQ +nxR +dCQ +dCQ +mEO +ohL +rpf +ceK +bRf +dCQ +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +qcQ +myo +qBs +ruE +uZA +uZA +uZA +uzV +nXv +nsw +fiv +kvZ +psH +pls +uFZ +qeh +kOu +jbR +tyn +qkr +kvT +ygG +hWH +pqN +mlh +nzf +bsK +rEL +qkS +dHe +xpg +vuu +aDI +tfn +cdJ +fRR +wzp +hjP +vQv +bTx +ocl +qvC +cTl +hWI +nbP +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(32,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +aJI +cLu +gKI +cLu +nIT +nIT +wZo +wZo +wZo +wZo +wZo +nIT +nIT +gAw +gAw +mBS +wkm +wkm +wkm +wkm +uzx +tgj +lwo +pHA +aam +aam +aam +aam +aam +aam +aam +agB +iqg +iqg +wMw +uZH +agB +uZH +hZI +iqg +cPQ +agB +aam +aam +hzl +trG +cGQ +rFU +oIZ +trG +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +aes +vgz +wGn +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +ixY +rnz +nIV +rnz +rWq +wNK +wNK +gnS +dAm +myw +aIz +aQt +oEV +wIx +opE +aIz +xqF +fib +rnz +rnz +sFF +uZf +ljw +uZf +uZf +ljw +dgm +tVg +tVg +pPt +tVg +beB +tVg +tVg +pPt +tVg +tVg +tVg +beB +vjY +jqZ +wRC +wRC +oSa +bgk +nbj +nbj +nbj +nbj +pJm +nbj +nbj +nbj +pZL +twT +twT +dCQ +nhg +hRM +dCQ +mOd +qGF +dCQ +eKa +gtb +dCQ +sFB +uKi +dCQ +dCQ +dCQ +wRR +dCQ +dCQ +dCQ +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +gkr +myo +myo +rOS +uZA +uZA +uZA +uzV +dPR +iWG +fiv +bLj +qyz +mGc +fRy +nOS +pFD +pBB +fQl +riW +dLm +iTN +vjg +jYE +fiv +fiv +fiv +ejF +nkS +vQv +nkS +khv +nkS +kxr +nkS +dJQ +mSF +hjP +kxr +mDH +ocl +wqc +kQI +tOS +nbP +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(33,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +aJI +cLu +cLu +nIT +nIT +wZo +wZo +wZo +wZo +wZo +wZo +wZo +nIT +nIT +gAw +mBS +wkm +rQu +ksI +wkm +wJt +kIp +kIp +sFg +aam +muQ +muQ +aam +muQ +muQ +muQ +agB +agB +agB +agB +agB +agB +agB +iqg +iqg +iqg +oaJ +aam +aam +gJc +vqS +xpf +xpf +tyX +trG +rnz +nIV +cGV +nIV +rnz +nIV +rnz +rnz +cGV +rnz +rWq +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +ixY +rnz +rWq +wNK +wNK +gnS +dAm +pup +aIz +aIz +aIz +eXD +aIz +aIz +qyc +fib +cGV +rnz +sFF +oyP +eSw +qPb +pKO +lDF +sFF +ueo +ueo +ueo +xdZ +ueo +ueo +ueo +xdZ +ueo +ueo +ueo +xdZ +tVg +jlE +wRC +wRC +oSa +lwa +bgk +bgk +bgk +lwa +bgk +bgk +bgk +lwa +bgk +bgk +bgk +dCQ +jrH +brV +dCQ +rIk +nBH +dCQ +sTh +mqn +dCQ +quY +fYM +dCQ +dse +whA +msP +vLi +msP +gmN +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +gkr +myo +myo +ucO +rOS +uZA +uZA +uZA +uzV +wuz +kfK +hjV +bmX +pPF +tFH +pPF +tjU +jyA +vdE +gCp +kpQ +lXp +mhy +iKb +pqN +ica +fiv +paj +iOY +nkS +mXL +afN +glB +bYZ +xcK +nkS +oqx +iXS +cZR +nkS +mDH +sgW +dSg +ifW +tOS +nbP +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(34,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +aJI +cLu +tQJ +nIT +wZo +wZo +wZo +wZo +wZo +wZo +wZo +wZo +wZo +nIT +gAw +gAw +goa +uaZ +uaZ +wkm +wJt +kIp +kIp +sFg +aam +muQ +aam +aam +aam +aam +blf +agB +bVP +eMA +agB +isC +wBR +agB +iqg +iqg +xCM +agB +aam +aam +aam +vqS +xpf +rFU +qwS +trG +rnz +rnz +rnz +nIV +rnz +rnz +nIV +rnz +cGV +rnz +rWq +wNK +rIK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +wGn +wNK +wNK +gnS +wIx +ofo +aQt +rgt +bXZ +wIx +vQk +kTu +cLF +wIx +rnz +rnz +sFF +sFF +sFF +sFF +sFF +sFF +sFF +rnz +rnz +rnz +cGV +rnz +vgz +bnp +bnp +ixY +rnz +rnz +rnz +cGV +rWq +wNK +wNK +gnS +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +cGV +rnz +dCQ +dCQ +hKI +dCQ +hKI +dCQ +dCQ +dCQ +hKI +dCQ +nnX +dCQ +dCQ +fIb +enQ +hEx +msP +msP +kax +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +gkr +ycu +szV +myo +tMo +rOS +uZA +uZA +uZA +uzV +dPR +dPR +dCJ +tTA +qQJ +oeT +oui +oeT +fuu +eSq +hIp +kvT +lXp +lXp +xjQ +pqN +bMv +fiv +sAs +deX +vQv +vEg +nmO +wzp +wED +bDx +iiO +vNS +klH +ceY +vQv +mDH +ocl +uyP +kQI +tOS +nbP +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(35,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +bhp +mKD +wpX +cLu +nIT +wZo +wZo +wZo +wZo +wZo +wZo +wZo +wZo +wZo +nIT +gAw +gAw +goa +goa +kAq +wkm +wkm +kIp +kIp +sFg +aam +muQ +aam +aam +blf +yhl +blf +agB +bEM +iqg +agB +bEM +rza +oaJ +iqg +eRI +jHr +agB +aam +aam +mqj +trG +mCH +fAz +pfZ +trG +cGV +rnz +rnz +rnz +rnz +cGV +rnz +cGV +rnz +rnz +rWq +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +gnS +wIx +wIx +tYo +wIx +wIx +wIx +wIx +wIx +wIx +wIx +rnz +fpl +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +vgz +wGn +wNK +wNK +sos +bnp +ixY +nIV +rnz +rWq +wNK +wNK +gnS +rnz +rnz +fuK +wsO +wsO +wsO +tEt +rnz +nIV +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +tMo +ycu +ycu +ycu +ycu +lHW +ycu +qBs +hwR +hwR +ruE +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +hHG +hHG +hHG +hHG +hHG +ycu +rOS +uZA +uZA +uZA +uzV +uLl +vSy +uzV +nsA +qLi +pgr +lXp +lXp +nKD +kvT +kvT +kvT +tEH +lBc +npH +pqN +dfW +fiv +yfc +cdK +nkS +hQp +xnn +bic +bxV +aPS +nkS +iEE +nww +vbk +nkS +gyO +iBx +aea +ell +nbP +gyO +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(36,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +mKD +mOb +cLu +nIT +wZo +wZo +wZo +wZo +wZo +wZo +wZo +wZo +wZo +jgW +gAw +gAw +sla +qwk +uaZ +raj +wkm +kIp +kIp +lwo +pHA +muQ +muQ +muQ +agB +agB +agB +agB +agB +rGZ +agB +agB +agB +agB +agB +agB +agB +agB +aam +aam +uVm +trG +trG +trG +trG +trG +rnz +cGV +rnz +xrS +vgz +bnp +ixY +rnz +rnz +nIV +kmJ +rjz +bKm +wNK +wNK +wNK +wNK +ahf +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +gnS +rWq +wNK +wNK +wNK +gnS +rnz +rnz +xrS +rnz +rnz +nIV +rnz +rnz +mhG +mhG +cGV +rnz +rnz +rnz +nIV +rnz +mhG +rnz +rWq +wNK +nBC +wNK +pQu +wNK +gnS +rnz +rnz +rWq +wNK +wNK +sos +ixY +rnz +pPy +poy +poy +poy +poy +tEt +rnz +nIV +rnz +cGV +rnz +rnz +rnz +xrS +rnz +ycu +ycu +szV +ycu +ycu +szV +ycu +tMo +ycu +ycu +qBs +ruE +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +bVx +rkI +xtM +qMJ +hHG +szV +rOS +uZA +uZA +uZA +uzV +uzV +uzV +uzV +nOd +oDF +spe +spe +vjG +fcs +ivu +joR +gcX +vjG +lOe +vDh +gsF +fiv +fiv +kfn +dBI +nkS +ssm +ucn +ucn +urq +ssm +nkS +spQ +bfs +rKl +nkS +bTx +ocl +dSg +kQI +hWI +nbP +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(37,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +mKD +cLu +cLu +nIT +nIT +wZo +wZo +wZo +wZo +wZo +wZo +wZo +jgW +jgW +gAw +gAw +sla +uaZ +sla +wQJ +wkm +kIp +kIp +kIp +sFg +aam +aam +aam +agB +iqg +iqg +iqg +oaJ +iqg +tVr +iqg +bWG +agB +gJa +aam +aam +aam +aam +aam +aam +uzx +tgj +kIp +kIp +uKA +bnp +bnp +bnp +bnp +wGn +wNK +sos +bnp +ixY +rnz +rnz +nIV +kmJ +rjz +rjz +rjz +rjz +afX +cGV +kmJ +rjz +bKm +wNK +wNK +wNK +wNK +wNK +sos +wGn +wNK +wNK +wNK +sos +bnp +bnp +bnp +ixY +rnz +rnz +rnz +mhG +mhG +mhG +mhG +mhG +rnz +cGV +rnz +mhG +mhG +mhG +rWq +wNK +wNK +wNK +wNK +wNK +gnS +xrS +rnz +rWq +wNK +wNK +wNK +gnS +rnz +wpv +mLT +poy +poy +poy +bmF +rnz +rnz +rnz +vgz +bnp +bnp +bnp +bnp +bnp +cKY +cKY +kEO +ycu +ycu +ycu +ycu +ycu +ycu +ucO +dbH +uWq +uZA +uZA +uZA +uZA +uZA +gqh +uvd +uvd +uvd +bVx +jQc +aHJ +tYU +hHG +ycu +rOS +uZA +uZA +uZA +uZA +uzV +uzV +uzV +joq +cTZ +ozX +iSP +cTZ +cTZ +cTZ +cTZ +wjY +cTZ +cTZ +cTZ +aCI +cTZ +xxC +adQ +dCZ +nkS +nkS +vQv +kxr +nkS +nkS +kxr +nkS +nkS +vQv +kxr +mDH +ocl +pwY +kQI +tOS +qLF +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(38,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +aJI +gKI +cLu +cLu +nIT +nIT +wZo +wZo +wZo +wZo +wZo +jgW +jgW +gAw +gAw +gAw +uaZ +sla +sla +rLa +wkm +kIp +kIp +kIp +lwo +pHA +hzl +aam +agB +iqg +iqg +nXX +agB +iqg +iqg +iqg +iqg +oaJ +aam +aam +aam +hzl +aam +uzx +eyb +tgj +kIp +kIp +kIp +kIp +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +bnp +bnp +ixY +rnz +rnz +cGV +rnz +rnz +nIV +rnz +xrS +rWq +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +ixY +rnz +rnz +mhG +mhG +mhG +mhG +mhG +mhG +rnz +rnz +mhG +mhG +cGV +rWq +wNK +wNK +wNK +wNK +wNK +sos +bnp +bnp +wGn +wNK +wNK +wNK +gnS +xrS +rnz +rnz +wpv +mLT +mLT +lSB +vgz +bnp +bnp +wGn +wNK +wNK +wNK +wNK +wNK +uZA +uZA +jgS +cKY +cKY +cKY +cKY +cKY +cKY +cKY +uWq +uZA +uZA +uZA +uZA +uZA +uZA +heP +lRS +lRS +lRS +bVx +kNz +iKz +elU +hHG +szV +rOS +uZA +uZA +uZA +uZA +uZA +uzV +uzV +nPN +nPN +fiv +fiv +nPN +nPN +vTT +fiv +fiv +vTT +nPN +nPN +fiv +fiv +wKj +wKj +wKj +nkS +kEO +ycu +ucO +hXF +bhp +sRY +bhp +vbZ +vbZ +nbP +nbP +sVL +aea +nqg +nbP +qLF +fOB +nRr +vbZ +vbZ +vbZ +oNn +"} +(39,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +xaD +bhp +aJI +cLu +cLu +wpX +cLu +nIT +nIT +wZo +wZo +wZo +nIT +nIT +gAw +gAw +gAw +ydB +wkm +rVY +rPt +xXk +wkm +hdT +kIp +kIp +kIp +sFg +aam +aam +oaJ +iqg +iqg +aDQ +agB +wMw +bjg +uRS +goh +agB +aam +aam +uzx +eyb +eyb +tgj +kIp +kIp +kIp +kIp +kIp +kIp +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +bnp +bnp +bnp +ixY +rnz +vgz +bnp +wGn +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +mwz +rnz +rnz +mhG +mhG +mhG +mhG +rnz +nIV +rnz +rnz +xrS +vgz +wGn +wNK +wNK +wNK +ufz +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +bnp +bnp +bnp +bnp +bnp +bnp +wGn +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +hHG +bVx +bVx +hHG +ydo +hHG +tAG +lPF +elU +hHG +tMo +qBs +ruE +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +jgS +cIW +frr +mqf +eWz +bhp +xaD +vbZ +vbZ +vbZ +hxS +wQx +wQx +wQx +iWa +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(40,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +bhp +bhp +aJI +tQJ +cLu +cLu +tQJ +cLu +nIT +nIT +nIT +nIT +nIT +gAw +gAw +gAw +gAw +gAw +uaZ +ocp +ocp +lUa +wkm +wJt +kIp +kIp +nSD +lwo +pHA +aam +agB +gdz +iaU +cnK +agB +agB +agB +agB +agB +agB +uzx +eyb +tgj +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +wGn +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +gnS +cGV +rnz +mhG +mhG +rnz +rnz +rnz +vgz +bnp +bnp +bnp +wGn +wNK +wNK +wNK +fNf +wNK +cSS +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +gkr +bVx +spA +fxN +oSx +elU +qLu +tYU +kIn +tYU +hHG +tMo +ycu +qBs +ruE +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +jgS +cKY +vqb +kkE +kkE +kkE +kkE +kkE +vWV +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(41,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +vbZ +bhp +sRY +mKD +cLu +cLu +cLu +cLu +cLu +iBV +iBV +atF +eew +bLB +gAw +gAw +gAw +gAw +qaE +wkm +bbd +snR +gmz +wkm +gxd +hdT +kIp +kIp +pHS +vWL +aam +agB +agB +agB +agB +agB +jkD +jkD +ofG +vHP +vHP +qHX +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +wNK +ahf +rjz +rjz +rjz +rjz +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ahf +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +ixY +rnz +rnz +rnz +rnz +rnz +vgz +wGn +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +kMa +bFO +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +weH +ycu +bVx +xYR +tYU +tYU +swz +hHG +hHG +hHG +hHG +hHG +uMF +uMF +tMo +rOS +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +ixQ +iwf +iwf +iwf +iwf +iwf +nwr +nRr +nRr +nRr +nRr +xlY +nRr +uTk +jxw +nRr +vbZ +vbZ +oNn +"} +(42,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +mKD +mOb +cLu +cLu +cLu +cLu +iBV +iBV +atF +iBu +cGB +gAw +gAw +gAw +gAw +xxP +wkm +wkm +wkm +wkm +wkm +jkD +sUj +vmX +ieN +aFg +ofG +vHP +sZz +jkD +jkD +jkD +jkD +ofG +vHP +qHX +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +qSU +ahn +ahn +ahn +szD +nFc +ahf +afX +cGV +cGV +rnz +nIV +rnz +rWq +wNK +ahf +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ahf +rjz +rjz +afX +xrS +kmJ +bKm +wNK +wNK +wNK +ahf +bKm +wNK +wNK +wNK +wNK +sos +ixY +rnz +xrS +rnz +vgz +wGn +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ufz +ufz +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +gkr +szV +ycu +bVx +tYU +elU +rYK +swz +hHG +irQ +bjG +kZM +sMz +kpK +uMF +cKY +uWq +uZA +nSr +hwR +hwR +ruE +uZA +uZA +uZA +uZA +nSr +hwR +hwR +hwR +ruE +uZA +uZA +uZA +uZA +uZA +uZA +nSr +ruE +uZA +uZA +uZA +jgS +vqb +kkE +kkE +kkE +kkE +kkE +vWV +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +xlY +vbZ +vbZ +oNn +"} +(43,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +bhp +mKD +wpX +cLu +cLu +cLu +cLu +nIT +nIT +nIT +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +sUj +sik +hij +bhh +nFc +hfC +vHP +vHP +vHP +vHP +qHX +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +qSU +ahn +uMo +wdV +tkK +tkK +qxb +qxb +qxb +qxb +qxb +qxb +nIV +rnz +vgz +wGn +wNK +fao +kmJ +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ahf +rjz +afX +cGV +rnz +cGV +rnz +nIV +rWq +wNK +wNK +wNK +gnS +kmJ +bKm +wNK +wNK +wNK +wNK +sos +bnp +bnp +bnp +wGn +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +bFO +wNK +ahf +rjz +rjz +rjz +rjz +bKm +wNK +wNK +ahf +rjz +rjz +rjz +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +uZA +uZA +uZA +nSr +hwR +hwR +hwR +hwR +hwR +gkr +hHG +hHG +hHG +hHG +bXD +rXJ +avW +ljx +hHG +wYR +rWt +gCF +dKf +fcV +bov +uZA +uZA +uZA +qcQ +ucO +qBa +uWq +uZA +uZA +uZA +uZA +oaR +oaR +eai +oaR +oaR +uZA +uZA +uZA +oaR +oaR +oaR +oaR +bnG +ruE +uZA +uZA +uZA +xYW +gYk +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +nED +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(44,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +bhp +aJI +cLu +gKI +tQJ +cLu +nIT +nIT +wZo +wZo +wZo +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +jkD +boy +ofG +qHX +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +qSU +ahn +ahn +teC +cRY +qxb +xrB +qcJ +xrB +qxb +tZB +joz +fjQ +pAS +qxb +rnz +cGV +rWq +wNK +wNK +gnS +nIV +cGV +kmJ +rjz +rjz +rjz +rjz +rjz +rjz +rjz +rjz +afX +nIV +rnz +rnz +rnz +nIV +rnz +rnz +rWq +wNK +wNK +wNK +sos +ixY +kmJ +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ahf +rjz +rjz +bKm +vVQ +gBB +bMF +wLo +gnS +rnz +rnz +rnz +rnz +kmJ +rjz +rjz +afX +xrS +rnz +rnz +rnz +kmJ +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +uZA +uZA +uZA +jgS +nrq +tMo +ycu +szV +ycu +ycu +hHG +bmd +rlu +hHG +xkP +tYU +cgm +gom +hHG +tqr +fcV +aeO +izd +fFk +oaR +oaR +eai +eai +oaR +oaR +uWq +uZA +uZA +uZA +uZA +uZA +oaR +pPC +bcu +acl +oaR +oaR +rOr +oaR +oaR +fXw +ieG +oaR +tMo +rOS +uZA +uZA +eWz +eWz +eWz +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +sRY +xaD +nmG +nRr +fOB +nRr +xqn +vbZ +vbZ +oNn +"} +(45,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +bhp +aJI +cLu +cLu +cLu +nIT +nIT +wZo +ntX +pMg +wZo +nyj +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +jkD +xaT +sUj +jAC +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +qSU +ahn +teC +tkK +wdV +tkK +tkK +qxb +sWB +eop +eop +qxb +icJ +eop +eop +xHn +qxb +qxb +qxb +rWq +wNK +ahf +afX +cGV +rnz +rnz +oJK +oJK +oJK +oJK +oJK +oJK +oJK +oJK +oJK +oJK +oJK +oJK +oJK +rRh +cgN +gDU +afU +aiK +aiK +aiK +aiK +afU +afU +oVp +psN +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +xSi +xSi +xSi +xSi +xSi +dmw +exm +xSi +chZ +chZ +chZ +chZ +xSi +xSi +xSi +bnp +ixY +cGV +qbB +qbB +qbB +qbB +kmJ +rjz +bKm +wNK +wNK +wNK +wNK +wNK +ahf +bKm +mEX +mEX +mEX +mEX +uZA +uZA +ccA +jgS +kEO +ycu +ycu +tMo +ycu +hHG +bmE +jLo +hus +elU +tYU +tYU +tYU +hHG +gfr +uMF +uMF +rtm +cyd +oaR +lPl +amJ +pBx +taQ +oaR +uZA +uZA +uZA +uZA +uZA +nSr +eai +nPa +bus +abM +oaR +avt +aOJ +aOJ +lFp +pRJ +kbG +oaR +szV +rOS +uZA +uZA +pis +eWz +bhp +bhp +bhp +sRY +vbZ +vbZ +vbZ +bhp +xaD +vbZ +vbZ +nRr +nRr +nRr +sRI +vbZ +vbZ +oNn +"} +(46,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +sRY +aJI +cLu +cLu +nIT +nIT +wZo +aJX +wZo +ngF +wZo +wZo +wZo +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +jkD +jkD +jkD +sUj +jAC +nFc +nFc +nFc +nFc +nFc +nFc +nFc +nFc +qSU +qxb +qxb +qxb +qxb +oeN +oeN +oeN +qxb +rhY +vFz +eop +rEn +eop +opK +hKm +pSF +qxb +hyT +qxb +aIV +nFc +lsB +oJK +oJK +oJK +oJK +oJK +iTl +gCX +deT +dqX +waf +fuQ +rtE +unM +rPF +wIu +qfo +oJK +rRh +rRh +afU +aiK +aiK +aiK +aiK +aiK +dBK +afU +cgN +oVp +psN +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ahf +wNK +wNK +xSi +qDC +dot +hBf +inP +iyl +qLa +inP +iKQ +gJq +ulD +mGt +inP +xQC +xSi +wNK +sos +ixY +qbB +dFu +tpb +qbB +rnz +xrS +rWq +wNK +wNK +wNK +wNK +wNK +gnS +kmJ +mEX +qRZ +eqs +mEX +mEX +nTe +kIX +mEX +mEX +mEX +mEX +szV +ycu +hHG +fUX +tVn +hHG +xRz +rdC +vqi +rHy +hHG +fcV +vqp +oaR +oaR +oaR +oaR +dKf +dKf +dKf +dKf +pXj +uZA +uZA +uZA +uZA +nSr +gkr +oaR +fsb +evt +kPH +goG +aOJ +aOJ +boR +oaR +oaR +oaR +oaR +dbH +uWq +uZA +uZA +uZA +fyi +bhp +xaD +xaD +bhp +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +kQi +vbZ +vbZ +oNn +"} +(47,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +bhp +mKD +cLu +tQJ +nIT +mGe +wZo +maI +wZo +wZo +mGe +mGe +wZo +wZo +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +xAS +jkD +jkD +uUA +jkD +jkD +sUj +jAC +nFc +nFc +nFc +nFc +nFc +nFc +qSU +pZe +qxb +cmI +kjt +qxb +eNG +kwi +jAC +qxb +yik +hQi +rEJ +qxb +ldm +rmD +beD +hIk +cfi +gmO +qxb +aIV +nFc +lsB +oJK +yfF +rZN +gNo +dqX +fMS +gRZ +deT +dqX +hCv +ddS +tyF +fhR +nFl +eBX +mqx +oJK +rRh +rRh +afU +mwu +aiK +aiK +aiK +aiK +aiK +afU +pUy +rRh +oVp +psN +wNK +wNK +wNK +wNK +wNK +ahf +afX +rWq +wNK +xSi +ncB +hkF +qiY +vKX +ngj +syk +qLa +ngj +ngj +ngj +ngj +ngj +xBp +xSi +wNK +kjX +gnS +qbB +muk +sVN +qbB +aes +cGV +rWq +wNK +wNK +wNK +wNK +wNK +gnS +xrS +mEX +aIs +uyw +qaA +cdO +ecX +eLw +mEX +hDD +lmZ +mEX +ycu +ycu +hHG +hHG +hHG +hHG +hHG +hHG +hHG +hHG +hHG +bWy +jOG +oaR +nYn +oqu +pdG +dKf +mIv +dKf +eXA +oaR +uZA +uZA +uZA +uZA +qcQ +tMo +oaR +oaR +oaR +oaR +oaR +tmu +aOJ +bKU +oaR +ucO +kWA +cKY +uWq +uZA +uZA +uZA +uZA +fyi +sRY +bhp +bhp +bhp +sRY +bKx +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(48,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +mKD +mOb +cLu +nIT +wZo +ngF +wZo +wZo +wZo +pMg +wZo +wZo +oMx +nIT +gAw +gAw +gAw +gAw +inc +inc +inc +inc +inc +inc +mHl +mHl +inc +inc +sUj +jAC +nFc +nFc +nFc +nFc +nFc +qxb +qxb +qxb +iPu +qxb +qxb +hij +jkD +bhh +qxb +qxb +qxb +qxb +qxb +qxb +qxb +qxb +qxb +qxb +qxb +qxb +kQh +nFc +lsB +oJK +yfF +ghY +gNo +dqX +fMS +dda +deT +dqX +qzb +ddS +rtE +ddS +vTO +ceg +mqx +oJK +rRh +rRh +afU +aiK +aiK +aiK +aiK +aiK +aiK +afU +rRh +pUy +rRh +oVp +psN +wNK +wNK +wNK +wNK +gnS +mxq +dYE +ijq +xSi +bwE +iyl +xqO +ngj +xoJ +jbN +bVG +ePI +agg +iNv +mGt +ngj +upD +xSi +wNK +flk +gnS +qbB +wuw +qbB +qbB +oxg +oxg +qbB +wNK +wNK +wNK +wNK +wNK +sos +ixY +mEX +mEX +mEX +mEX +iuZ +fIu +fIu +fCc +tYe +fEW +aZm +ycu +ycu +uMF +lkM +xxi +fJV +dKf +gfr +enB +ngt +uMF +uMF +uMF +oaR +xdY +kDM +oaR +oaR +oaR +buB +oaR +oaR +ruE +uZA +uZA +uZA +qcQ +ucO +oaR +xoa +hRU +sfp +goG +aOJ +hRp +hRp +oaR +kWA +uWq +uZA +uZA +uZA +uZA +uZA +nSr +ukM +bhp +bhp +vbZ +vbZ +xaD +bhp +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(49,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +mKD +cLu +cLu +nIT +pMg +wZo +nyj +mGe +wZo +hpz +uSF +wZo +wZo +nIT +gAw +gAw +gAw +gAw +inc +dcw +wPF +egA +inc +wqW +uFf +uFf +inA +inc +jkD +bhh +nFc +eNG +kwi +jAC +eNG +qxb +rdK +vLa +vLa +bWX +qxb +jkD +jkD +sUj +hij +jkD +jkD +jkD +jkD +sUj +jAC +vjr +oeN +oeN +oeN +kQh +nFc +nFc +lsB +oJK +yfF +gRZ +gNo +dqX +dqX +rkb +dqX +dqX +rux +ddS +ddS +ddS +hgt +arM +tUx +oJK +rRh +rRh +afU +tCm +aiK +djR +aiK +xcX +ycO +qGR +qGR +qGR +qGR +cgN +kSr +wNK +wNK +wNK +wNK +gnS +bHJ +phK +uPY +xSi +xSi +hkF +xSi +hRQ +jDt +dOp +ngj +wKf +ggE +iEh +cQK +ngj +fzQ +xSi +wNK +qgV +gnS +qbB +fyh +aUT +pZP +lJx +mep +qbB +wNK +wNK +wNK +wNK +wNK +wNK +gnS +ycu +ycu +szV +aZm +okl +fIu +dmI +mEX +mEX +mEX +mEX +ycu +ycu +uMF +mSl +oel +ngJ +xxi +uMF +qDG +fcV +uMF +tFz +oUJ +oaR +oaR +oaR +oaR +vua +fJV +dKf +oaR +bDo +uWq +uZA +uZA +nSr +pyg +igw +eai +aOJ +aOJ +sfp +oaR +aLv +wMc +qIh +oaR +uWq +uZA +uZA +uZA +uZA +uZA +uZA +jNL +eWz +bhp +vbZ +vbZ +bKx +onr +sRY +vbZ +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(50,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +bhp +bhp +aJI +cLu +cLu +nIT +nIT +wZo +wZo +mJR +wZo +wZo +mgf +wZo +nIT +nIT +gAw +gAw +gAw +gAw +inc +gKy +nuL +tkp +nKl +nuL +uFf +uFf +cTU +gCR +jkD +sUj +kwi +hij +jkD +sUj +hij +aNn +rdK +vLa +vLa +uJc +nRs +jkD +jkD +jkD +jkD +jkD +jkD +jkD +jkD +jkD +sUj +jAC +nFc +nFc +nFc +nFc +nFc +qSU +teC +oJK +feC +gRZ +gRZ +xWC +ddS +ddS +eIh +ddS +ddS +eIh +ddS +ddS +ddS +ddS +qFe +oJK +rRh +rRh +afU +qSQ +aiK +xyj +aiK +aiK +dBK +qGR +cXp +wTr +qGR +rRh +kSr +wNK +wNK +wNK +wNK +gnS +bHJ +uPY +uPY +xSi +mmi +ngj +pla +pla +hvi +pla +jmg +ngj +ngj +ngj +ngj +ngj +gRV +xSi +wNK +wNK +gnS +qbB +nbi +wXs +uXs +bxA +bxA +sdp +wNK +wNK +wNK +wNK +wNK +wNK +sos +kEO +tMo +ycu +aZm +ust +fIu +fIu +fCc +wUH +pOG +aZm +ycu +szV +uMF +tgE +dKf +kNj +oGI +uMF +bWY +uMF +uMF +wmB +ktO +uMF +szT +oYM +oaR +fZZ +dKf +okL +oaR +uMF +hVf +uMF +qdA +uMF +uMF +tMo +oaR +fsb +ugH +sSx +oaR +oaR +oaR +oaR +oaR +uZA +uZA +uZA +uZA +eWz +eWz +vIE +eWz +eWz +eWz +eWz +eWz +eWz +bhp +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(51,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +xaD +sRY +aJI +cLu +cLu +cLu +nIT +nIT +wZo +ngF +wZo +ngF +wZo +nIT +nIT +gAw +gAw +gAw +gAw +gAw +inc +nuL +nuL +czd +sXj +nuL +awf +uFf +rcy +gCR +jkD +bPJ +jkD +jkD +jkD +jkD +jkD +aNn +vLa +vLa +vLa +qdh +qxb +jkD +jkD +jkD +jkD +jkD +uUA +jkD +jkD +jkD +jkD +bhh +qxb +wKD +pKB +pKB +qxb +tkK +vHf +oJK +feC +rWn +gRZ +dqX +dqX +xiZ +dqX +dqX +dqX +dqX +qDx +ddS +tBM +dqX +dqX +oJK +oJK +uHg +uHg +gzd +dgj +dgj +qGR +qGR +qGR +qGR +cMW +xbr +qGR +nYo +kSr +wNK +wNK +wNK +ahf +afX +bHJ +uPY +uPY +xSi +iAS +ngj +ngj +pxw +ngj +ngj +pxw +crE +iVA +aML +oYl +pxw +kGe +xSi +wNK +ahf +afX +qbB +ueM +rZI +qbB +tBm +nyC +qbB +wNK +wNK +wNK +wNK +wNK +wNK +wNK +qcQ +ycu +tMo +mEX +kKj +fIu +fIu +mEX +wkL +fKs +mEX +ycu +ycu +uMF +gmW +wjd +dKf +api +uMF +pFK +vYP +uMF +pLD +lLr +uMF +xdY +qYg +oaR +rPk +dKf +aAc +oaR +djV +pYV +uMF +mSl +aME +uMF +uMF +oaR +oaR +oaR +oaR +oaR +vHc +lGp +fxV +uZA +uZA +uZA +uZA +uZA +eWz +tTm +dKf +dKf +tZt +dKf +dKf +cvO +eWz +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(52,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +aJI +cLu +gKI +cLu +cLu +nIT +nIT +wZo +bCL +mgf +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +inc +nuL +qLB +egA +inc +lgK +sXN +vbq +iWl +gCR +jkD +jkD +ofG +sZz +ofG +vHP +sZz +aen +vLa +vLa +vLa +kVw +aNn +jkD +pXg +qxb +qxb +aNn +aNn +aNn +qxb +qxb +nvw +hGm +qxb +ykh +pKB +pBJ +qxb +vHf +tkK +oJK +oJK +oJK +oJK +oJK +ukr +ddS +ukr +dqX +wJW +vvN +ddS +ddS +ddS +gDo +dqX +jgV +jgV +vLN +qGR +bQg +wIM +sGa +qGR +kQl +lBa +qGR +qGR +iZp +qGR +aCa +kSr +wNK +wNK +wNK +gnS +rnz +bHJ +phK +uPY +xSi +xSi +xSi +rlo +xSi +xSi +xyM +xSi +xSi +xSi +xSi +xSi +xSi +xSi +xSi +rjz +afX +rnz +qbB +qbB +qbB +qbB +qbB +qbB +qbB +dYE +dYE +ara +wNK +wNK +wNK +wNK +jgS +kEO +ycu +mEX +mEX +mEX +jjy +mEX +mEX +mEX +mEX +ycu +ycu +uMF +uMF +bWY +uMF +fxV +uMF +uMF +uMF +uMF +uMF +uMF +uMF +uMF +bWY +oaR +qCi +dKf +oYw +oaR +rMn +pjG +gfr +dKf +xxi +uMF +ngJ +vqp +uMF +uzi +mSl +gfr +mSl +qtI +uMF +uZA +uZA +uZA +uZA +uZA +pfX +nkV +dKf +wmB +eWz +mpc +dKf +aXt +eWz +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(53,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +bhp +mKD +cLu +tQJ +tQJ +gKI +cLu +nIT +nIT +nIT +nIT +nIT +gAw +gAw +gAw +gAw +gAw +gAw +gAw +inc +nuL +inc +inc +inc +hkd +eDt +tVU +aPq +inc +jkD +jkD +bhh +hfC +qHX +nFc +aFg +qxb +vLa +vLa +vLa +rdK +aNn +uUA +jkD +qxb +vLa +vLa +rdK +qds +oIg +qxb +qHX +qSU +qxb +dYL +pKB +pKB +qxb +tkK +tkK +oJK +skU +hxX +aHe +oJK +siq +ddS +ajU +dqX +vJG +dSE +eDD +xiR +pFz +oQs +jTu +jgV +nJy +jgV +qGR +jdu +hGz +wph +qGR +xHP +sQd +ggR +sRu +wxr +qGR +rUE +stx +wNK +wNK +wNK +gnS +xrS +bHJ +uPY +phK +uQW +xSi +sfk +kiP +xSi +cBI +xtN +kFl +xSi +vgz +wGn +wNK +sos +bnp +ixY +rnz +cGV +rnz +bHJ +phK +phK +phK +jjz +iTO +pXR +phK +phK +xhj +wNK +wNK +wNK +wNK +uZA +qcQ +szV +mEX +kTw +qtQ +lkc +fTF +mEX +szV +ycu +ycu +ycu +ycu +ycu +ycu +ycu +ycu +dbH +uMF +bKp +ltI +kQo +uMF +kAZ +crb +dKf +oaR +oaR +oaR +oaR +oaR +uMF +uMF +uMF +cep +mQc +uMF +qDG +bfg +uMF +dKf +qCC +uMF +dKf +xxi +bov +uZA +uZA +uZA +uZA +uZA +pfX +xYu +dKf +tAr +eWz +qDG +dKf +dKf +eWz +bKx +vbZ +vbZ +vbZ +nmG +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(54,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +mKD +mOb +cLu +cLu +cLu +cLu +sjW +jvP +vUI +cGB +gAw +gAw +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +nuL +pLo +inc +gUe +hkd +fQt +oPG +ktC +jkD +ofG +qHX +nFc +nFc +eNG +qxb +qxb +qxb +uJc +qxb +qxb +qxb +jkD +jkD +nRs +vLa +vLa +rdK +vLa +tts +qxb +qSU +teC +qxb +qxb +qxb +qxb +qxb +vbZ +tkK +oJK +cPv +pgp +nDQ +oJK +oOk +ddS +qxi +dqX +gVP +ddS +cnN +alH +dyk +xKQ +jTu +jgV +jgV +jgV +qGR +cug +oxC +cug +sUh +cjN +wxr +exB +bAr +biZ +qGR +jiD +lhO +wNK +wNK +wNK +gnS +rnz +bHJ +uPY +phK +phK +xSi +rFt +kiP +xSi +eoK +xtN +bTt +xSi +rWq +ahf +bKm +wNK +wNK +gnS +cGV +fpl +rnz +bHJ +wmU +fYO +phK +phK +phK +phK +phK +phK +xhj +wNK +wNK +wNK +wNK +uZA +qcQ +ucO +mEX +ixo +lkc +neC +ewJ +mEX +ycu +ycu +tMo +ycu +ycu +szV +ycu +dbH +cKY +uWq +uMF +bAE +eIC +dKf +uMF +phg +uYz +xxi +dKf +uMF +lKM +oYM +uMF +klT +ukw +aGM +szb +bRI +uMF +wqa +xxi +bov +fcV +djS +uMF +ici +qyO +uMF +uZA +uZA +uZA +uZA +uZA +eWz +lPl +dKf +wBX +eWz +djS +dKf +dKf +eWz +bhp +xaD +bKx +vbZ +nmG +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(55,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +mKD +cLu +cLu +cLu +tQJ +wpX +cLu +lyz +uol +kOF +wOY +gAw +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +inc +nrG +inc +htP +sWH +lWj +vXx +inc +ofG +qHX +nFc +nFc +nFc +aFg +qxb +vLa +vLa +vLa +qxb +szD +hfC +sZz +jkD +qxb +uJc +vLa +vLa +vLa +qcC +qxb +teC +vHf +tkK +vbZ +vbZ +vbZ +vbZ +vbZ +vHf +oJK +gKg +pgp +nDQ +oJK +vXZ +ddS +ukr +dqX +meZ +ddS +hDz +eiP +uWW +xKQ +jTu +vLN +tUC +jgV +qGR +qGR +qGR +qGR +qGR +xHP +wxr +cXO +onY +eOG +qGR +fXW +lhO +wNK +wNK +wNK +gnS +rnz +fJv +rWU +rWU +sLt +xSi +xSi +xSi +xSi +pVB +xtN +yiy +xSi +rWq +gnS +oyJ +oyJ +oyJ +oyJ +eDV +eDV +eDV +lMv +wRa +wRa +wRa +lMv +hUs +jvC +wPQ +phK +xhj +wNK +wNK +wNK +wNK +uZA +jgS +kEO +mEX +waU +lkc +lkc +hsw +mEX +ucO +tMo +ycu +szV +tMo +ycu +dbH +uWq +uZA +uZA +gfr +mSl +uYz +xxi +gfr +fcV +uYz +dKf +mSl +uMF +lDk +nYx +pyA +dKf +hQs +fcV +dKf +aQN +uMF +uMF +oaR +oaR +oaR +oaR +oaR +vUg +asy +qhM +uZA +uZA +uZA +uZA +uZA +eWz +eWz +eWz +eWz +eWz +eWz +eWz +cTC +eWz +sRY +bKx +xaD +bhp +nmG +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(56,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +aJI +tQJ +cLu +tQJ +cLu +cLu +gKI +cLu +sjW +uol +vUI +wOY +gAw +gAw +gAw +gAw +gAw +gAw +jkD +jkD +inc +inc +inc +inc +inc +inc +inc +inc +bhh +nFc +nFc +nFc +eNG +hij +ndI +vLa +vLa +nwO +qxb +jxy +szD +qxb +qxb +qxb +qxb +qxb +qxb +vLa +qxb +qxb +tkK +lRw +vbZ +vbZ +vbZ +vbZ +vbZ +tkK +tkK +oJK +uoI +cID +cRa +oJK +dqX +jTu +dqX +dqX +mVD +ybb +ddS +ddS +ddS +lEw +dqX +jgV +jgV +jgV +qGR +uzP +pbd +wxr +pVz +wxr +wxr +pOy +xZD +sRO +eNt +lhO +lhO +wNK +wNK +wNK +sos +ixY +ljG +poy +poy +poy +poy +poy +kFQ +xSi +fRs +xtN +gpt +xSi +kmJ +afX +oyJ +fZM +qZO +oyJ +bnp +ixY +rnz +lMv +fOM +qMP +fsN +lMv +uPY +uPY +uPY +uPY +xhj +wNK +wNK +wNK +wNK +uZA +uZA +jgS +mEX +mEX +aZm +aZm +mEX +mEX +cKY +cKY +cKY +cKY +cKY +nrq +rOS +uZA +uZA +nSr +uMF +nFm +jrI +aNG +uMF +xjE +uYz +cKd +nKG +oaR +oaR +oaR +oaR +oaR +uMF +uMF +qdA +uMF +uMF +lTE +oaR +rkR +fJV +nxG +oaR +uMF +uMF +uMF +uZA +uZA +uZA +uZA +uZA +sVD +nrq +uMF +mCn +oYM +eWz +krY +wfX +eWz +bhp +vbZ +bhp +sRY +nmG +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(57,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +aJI +cLu +oFl +oFl +oFl +oFl +tQJ +cLu +tQJ +sjW +uol +vUI +wOY +gAw +gAw +gAw +gAw +gAw +jkD +jkD +jkD +jkD +jkD +jkD +jkD +jkD +jkD +ofG +qHX +nFc +nFc +nFc +hfC +sZz +ndI +pLT +rdK +rmT +qxb +vHf +jxy +qxb +kCM +jqe +qxb +xul +vLa +vLa +jUX +qxb +tkK +tkK +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +ewg +sht +pgp +xIr +dVj +dVj +vyZ +dqX +qzC +haZ +cvc +eIh +ddS +dyC +dqX +nJy +vLN +jgV +qGR +lDh +jxt +vYq +qGR +map +wxr +myK +dEp +dxR +eNt +fXW +uox +bKm +wNK +wNK +wNK +sos +bbo +poy +poy +poy +poy +lSB +rWq +xSi +pAV +pAV +pAV +xSi +ixY +rnz +oyJ +naB +nBx +oyJ +sLK +gnS +cGV +lMv +dLq +nUE +uoQ +lMv +lMv +wRa +wRa +lMv +lMv +vVA +rjz +bKm +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +jgS +uWq +uZA +uZA +qcQ +uMF +oaR +oaR +oaR +oaR +oaR +nyq +oaR +oaR +oaR +jIW +tSY +xwS +oaR +gIo +elc +nRr +vWz +dep +mDn +oaR +dKf +dKf +puR +eai +spM +nSZ +gwi +uZA +uZA +uZA +uZA +uZA +uZA +jgS +uMF +xdY +mSl +eWz +vHY +kDM +eWz +vbZ +vbZ +vbZ +bhp +nmG +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(58,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +aJI +cLu +oFl +oFl +oFl +oFl +cLu +gKI +cLu +gKI +sjW +uol +vUI +kHN +wOY +gAw +gAw +gAw +jkD +jkD +jkD +jkD +jkD +jkD +jkD +jkD +ofG +qHX +nFc +nFc +nFc +nFc +nFc +hfC +qxb +fHq +wdx +eJb +qxb +tkK +lRw +qxb +rJC +lVT +cfi +vLa +vLa +vLa +nwO +qxb +vHf +vHf +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +oJK +oJK +vcr +dVj +hkN +dqX +dqX +dqX +dqX +dqX +gWk +dqX +dqX +jgV +jgV +jgV +qGR +hJG +bMd +sFf +fFQ +vrM +wxr +nRD +djx +qbF +gzd +lhO +qsO +rWq +wNK +wNK +wNK +wNK +sos +ixY +wpv +poy +lSB +vgz +wGn +hEF +phK +phK +phK +cbI +gnS +cGV +oyJ +ula +oyJ +oyJ +oyJ +hFn +rnz +lMv +deh +qMP +wTX +lMv +gOb +bdc +wps +ivL +lMv +rnz +rnz +rWq +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +qcQ +szV +oaR +lPl +fJV +dKf +qfP +uYz +wPh +lpJ +tZt +uYz +lLE +lwN +oaR +qUQ +sMs +nwr +nRr +dXt +oaR +oaR +buB +oaR +oaR +oaR +oaR +gmG +eoD +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uMF +uMF +bov +eWz +eWz +eWz +eWz +vbZ +vbZ +vbZ +vbZ +nmG +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(59,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +dsE +bhp +fEb +fEb +fEb +fEb +txI +txI +fEb +fEb +cLu +wpX +cLu +cLu +sjW +abs +uol +vUI +wOY +gAw +gAw +jkD +jkD +jkD +jkD +jkD +jkD +ofG +vHP +qHX +nFc +nFc +nFc +nFc +qSU +ahn +szD +qxb +qxb +qxb +qxb +qxb +pma +pma +qxb +qxb +qxb +qxb +aEh +vLa +vLa +jFV +qxb +tkK +tkK +fwL +fwL +ijh +gKM +pKc +cCw +hWu +fwL +fwL +fwL +vLN +nJy +sqd +dVj +hkN +jgV +vLN +aKx +keh +gsO +dVj +pzf +qTd +jgV +jgV +nJy +qGR +qGR +qGR +qGR +qGR +aCw +vsv +emj +wxr +ijj +dgj +fXW +ssp +hGx +wNK +wNK +wNK +wNK +wNK +sos +bnp +bnp +bnp +wGn +wNK +qwq +oec +oec +oec +cfO +gnS +rnz +oyJ +cPO +iPy +nUL +oyJ +poy +tEt +lMv +iPN +qMP +bTo +lMv +ljs +qMP +qMP +roy +wRa +rnz +nIV +rWq +wNK +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +qcQ +ucO +oaR +mvu +dKf +iWD +vST +aYR +nel +uIh +oaR +nyq +oaR +oaR +oaR +uMF +uMF +nAs +nRr +dXt +oaR +fUV +dKf +fJV +omF +dKf +pXj +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uMF +dKf +vRj +nAT +aXt +uMF +vbZ +vbZ +vbZ +vbZ +vWV +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(60,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +bhp +fEb +obC +txI +txI +ncJ +ncJ +txI +fEb +cLu +cLu +tQJ +cLu +cLu +cLu +sjW +uol +vUI +kHN +kHN +vHP +sZz +jkD +jkD +jkD +ofG +qHX +qSU +szD +nFc +nFc +nFc +qSU +teC +tkK +jxy +ahn +teC +tkK +tkK +tkK +tkK +tkK +tkK +lRw +tkK +qxb +aqi +inn +tei +uDQ +qxb +lRw +tkK +fwL +fwL +sjT +cyp +jxI +jxI +muS +fwL +fwL +fwL +loY +qgw +gJn +dVj +hkN +uVc +jgV +jgV +fcI +gJn +dVj +dVj +pzf +qTd +jgV +jgV +jgV +uHg +rRh +nYo +qGR +qGR +qGR +qGR +xsh +qGR +qGR +lhO +ssp +rWq +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +ixY +oyJ +pcN +fbA +cPO +oyJ +poy +poy +lMv +nZE +qMP +khx +lMv +qeJ +qMP +jHO +nDq +lMv +rnz +sOB +rWq +wNK +uZA +uZA +uZA +iUh +iUh +iUh +iUh +iUh +iUh +iUh +iUh +uZA +uZA +uZA +uZA +uZA +uZA +uZA +jgS +kEO +eai +gLs +dKf +dKf +wTN +djf +dKf +qxJ +pdG +mKQ +ord +oaR +cre +vml +fxV +nAs +nRr +dXt +eai +ebc +dKf +hlb +wPY +ssy +oaR +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +fxV +ngJ +jma +eSv +fcV +uMF +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(61,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +fEb +txI +txI +txI +txI +txI +txI +fEb +cLu +tQJ +cLu +cLu +cLu +cLu +wpX +sjW +abs +abs +abs +szD +hfC +vHP +vHP +vHP +qHX +qSU +teC +aIV +nFc +nFc +nFc +lsB +tkK +vHf +tkK +tkK +tkK +tkK +lRw +tkK +vHf +tkK +wdV +tkK +tkK +qxb +qxb +qxb +qxb +qxb +qxb +tyz +vHf +fwL +fwL +eXl +jxI +jxI +cyp +woP +vXJ +nlx +vXJ +dVj +dVj +dVj +dVj +pzf +qgw +qgw +qgw +gJn +dVj +dVj +dVj +dVj +pzf +qgw +qgw +qgw +uHg +kZe +wcJ +stx +lhO +lhO +lhO +lhO +lhO +lhO +lhO +hsa +wGn +wNK +wNK +wNK +wNK +ahf +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +sos +oyJ +oyJ +oyJ +yct +oyJ +poy +poy +lMv +lMv +szi +lMv +lMv +lMv +dqa +qMP +ipj +wRa +rnz +kgh +kmJ +bKm +uZA +uZA +uZA +iUh +meg +xGy +bvT +xDG +vJU +psA +iUh +uZA +uZA +uZA +uZA +ocZ +uZA +uZA +uZA +jgS +eai +cwl +dKf +jou +xpq +yeg +dKf +pSN +oaR +tce +kbm +oaR +uoz +lFJ +uMF +sZy +iwf +vTc +oaR +lPl +dKf +ybm +rbC +lTI +eai +uZA +uZA +uZA +uZA +uZA +nSr +ruE +uZA +uZA +uZA +uMF +eYC +fcV +uYz +aXt +uMF +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +dsE +vbZ +vbZ +vbZ +vbZ +oNn +"} +(62,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +fEb +txI +txI +txI +iXO +txI +txI +fEb +gKI +cLu +cLu +cLu +tQJ +cLu +cLu +tQJ +cLu +tQJ +cLu +jxy +ahn +ahn +ahn +ahn +ahn +teC +tkK +aIV +nFc +nFc +qSU +teC +tkK +lRw +wdV +tkK +tkK +tkK +vHf +tkK +tkK +tkK +tkK +tkK +vHf +tkK +tyz +tyz +tyz +tyz +tyz +tyz +tyz +fwL +fwL +jLD +cIJ +ptG +vTE +jxI +bFP +cyp +bFP +dVj +wTY +dVj +wTY +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +qhX +lhO +lhO +lhO +lhO +lhO +uox +nbD +psN +lhO +lhO +lhO +wNK +wNK +wNK +wNK +wNK +gnS +xrS +kmJ +rjz +rjz +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +reC +ffd +hlh +amY +pcN +oyJ +poy +poy +lMv +wae +qMP +tzp +sRq +rNP +nUE +qMP +fjc +lMv +rnz +qbm +rnz +rWq +uZA +uZA +uZA +iUh +gtm +xGM +xGM +xGM +xGM +xGM +iUh +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +oaR +oaR +vIE +oaR +oaR +oaR +buB +oaR +oaR +oaR +oaR +oaR +uMF +lxN +uMF +uMF +fxV +uMF +oaR +nax +dKf +wnn +dKf +qdq +eai +uZA +uZA +uZA +uZA +nSr +weH +rOS +uZA +uZA +uZA +gfr +fcV +xxi +jwt +xxi +uMF +vbZ +vbZ +vbZ +vbZ +vAu +nRr +nRr +nRr +dsE +vbZ +vbZ +vbZ +vbZ +oNn +"} +(63,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +fEb +tew +txI +txI +txI +txI +txI +fEb +cLu +gKI +tQJ +cLu +wpX +cLu +gKI +cLu +cLu +cLu +cLu +wdV +tkK +vHf +lRw +tkK +wdV +vHf +tkK +aIV +qSU +szD +lsB +tkK +wdV +tkK +tkK +vHf +tkK +tkK +tkK +wdV +tkK +tkK +vHf +lRw +tkK +tyz +tyz +tyz +tkK +vHf +tyz +tyz +tyz +fwL +fwL +djt +tpf +bCd +xVg +cyp +bFP +jxI +bFP +dVj +dVj +wTY +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +dVj +qhX +lhO +lhO +lhO +uox +nbD +fsW +nYo +oVp +nbD +nbD +nbD +bKm +wNK +wNK +wNK +wNK +sos +ixY +fuK +poy +poy +poy +meE +rjz +rjz +rjz +bKm +wNK +wNK +wNK +ffd +dGO +dfy +cPO +oyJ +poy +poy +lMv +sWh +tmE +qMP +qMP +lMv +lMv +lMv +lMv +lMv +rnz +rnz +cGV +rWq +uZA +uZA +uZA +iUh +iUh +unF +kGE +kGE +iUh +xGM +iUh +dMX +uvd +uvd +uvd +uvd +kqw +uZA +uZA +uZA +uZA +uZA +uZA +uZA +oaR +lll +cwM +wfx +oaR +vPf +ejr +eej +adB +ktU +gWI +uMF +wUJ +vqp +oaR +oaR +oaR +oaR +fEm +oaR +oaR +uZA +uZA +uZA +uZA +qcQ +tMo +qBs +ruE +uZA +uZA +uMF +dAF +aNG +lUK +djS +uMF +vbZ +vbZ +vbZ +vbZ +vbZ +oJE +nRr +nRr +dsE +vbZ +vbZ +vbZ +vbZ +oNn +"} +(64,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +vbZ +fEb +aRT +txI +txI +txI +rbU +xIT +fEb +cLu +cLu +cLu +cLu +mOb +cLu +cLu +cLu +tQJ +cLu +mOb +tkK +vHf +tkK +wdV +tkK +cRY +tkK +dAl +aIV +lsB +aIV +lsB +dAl +tkK +cRY +tkK +tkK +tkK +tkK +tkK +cRY +vHf +vHf +tkK +tkK +tkK +tyz +tkK +tkK +vHf +tkK +tkK +tyz +tyz +fwL +fwL +bjS +jxI +jxI +cyp +wwd +mtU +oCE +mtU +dVj +dVj +dVj +dVj +dVj +rVM +chF +chF +chF +chF +chF +chF +chF +chF +chF +chF +chF +uHg +iJZ +uHg +rmR +fsW +rRh +rRh +rRh +rRh +rRh +rRh +tSy +rWq +wNK +wNK +ahf +wtM +wNK +gnS +ljG +poy +poy +poy +poy +poy +tEt +xrS +kmJ +bKm +wNK +wNK +bve +kFE +cPO +ivi +oyJ +poy +poy +lMv +oDe +dgT +qMP +oXG +dju +sYV +vfW +lMv +rnz +rnz +nIV +rnz +rWq +uZA +uZA +uZA +oSp +elz +elz +elz +elz +rsX +elz +iUh +rnA +iBr +rnA +xao +xao +rnA +oLM +uZA +uZA +uZA +uZA +uZA +uZA +eai +dKf +stz +dGp +oaR +wAn +tXC +aEo +eiG +uSI +vBH +uMF +mKq +tlw +uMF +eTy +hFA +oaR +lEp +dEk +oaR +pYg +uZA +uZA +uZA +qcQ +szV +tMo +rOS +uZA +uZA +eWz +eWz +eWz +eWz +uMF +uMF +vbZ +vbZ +vbZ +vbZ +vbZ +nJY +nRr +nRr +dsE +ner +vbZ +vbZ +vbZ +oNn +"} +(65,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +aJI +aJI +aJI +mKD +mKD +mKD +aJI +aJI +aJI +mKD +mKD +dAl +pma +pma +pma +dAl +dAl +dAl +dAl +fYE +mFU +fYE +mFU +dAl +dAl +dAl +dAl +pma +pma +pma +dAl +dAl +dAl +pma +pma +pma +dAl +dAl +dAl +pma +pma +pma +dAl +dAl +dAl +fwL +fwL +cAI +cyp +jxI +jxI +jLV +fwL +fwL +fwL +tna +xGn +xGn +xGn +dVj +hkN +tUC +nJy +jgV +jgV +nJy +jgV +uVc +jgV +jgV +jgV +jgV +oPS +nlq +uHg +rRh +rRh +rRh +rRh +rRh +rRh +rRh +rRh +uHg +lnT +wNK +wNK +tnG +uHg +wNK +gnS +wpv +poy +lSB +wpv +poy +poy +poy +tEt +rnz +kmJ +bKm +wNK +bve +lyc +cPO +oGt +oyJ +mLT +lSB +lMv +lex +qMP +byH +ejI +lMv +fQf +aVy +lMv +rnz +nIV +rnz +rnz +rWq +uZA +uZA +uZA +elz +elz +elz +elz +elz +vDk +kyj +iUh +oeR +rZS +cST +qAV +wnU +rnA +gwi +uZA +uZA +uZA +uZA +uZA +uZA +oaR +pnX +azH +siG +oaR +rSR +bOV +lOo +fHi +nWm +nsi +uMF +bWY +uMF +uMF +umC +rNL +oaR +qYl +kbG +oaR +vXd +uZA +uZA +uZA +bOd +ycu +uGK +rOS +uZA +uZA +pfX +bXl +wdC +eWz +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +dsE +vbZ +vbZ +vbZ +vbZ +oNn +"} +(66,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +dAl +nmG +dsE +nmG +dsE +dAl +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +fwL +fwL +fkE +ube +djp +pgH +fVH +fwL +fwL +fwL +dVj +xGn +xGn +xGn +nPC +iwz +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +uHg +jcF +jcF +jcF +uHg +uHg +ygf +ygf +ygf +pOz +xFq +fMW +fMW +ckv +pOz +pOz +ygf +ygf +ygf +ygf +ygf +pOz +pOz +pOz +pOz +pOz +rnz +rWq +wNK +oyJ +oyJ +qAe +oyJ +oyJ +ixY +rnz +lMv +lMv +fQC +lMv +lMv +lMv +lMv +lMv +lMv +xrS +rnz +cGV +vgz +wGn +uZA +uZA +uZA +iUh +fcc +fcc +fcc +elz +vDk +kyj +iUh +nLS +rZS +rZS +qAV +wnU +rnA +hsE +oLM +uZA +uZA +uZA +uZA +uZA +oaR +oaR +oaR +oaR +oaR +gbb +lOo +lOo +fHi +iXC +lFe +uMF +dKf +joh +vvY +pkT +vZW +oaR +oaR +oaR +oaR +uZA +uZA +uZA +uZA +qcQ +tMo +eWz +eWz +vIE +eWz +eWz +xdY +mnq +eWz +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +gYk +tfr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(67,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +sRY +bhp +vbZ +vbZ +bhp +xaD +bhp +bhp +bhp +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +bhp +sRY +bhp +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +bhp +gUi +bhp +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +dVj +xGn +xGn +xGn +dVj +iwz +fjE +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +eAo +jcF +gRK +nOw +nOw +pOz +lHp +jDg +jDg +uen +pOz +fTh +lgh +xTC +lgh +xTC +lgh +lgh +pOz +kiA +vIG +pOz +cGV +rWq +wNK +wNK +wNK +wNK +wNK +wNK +sos +bnp +bnp +bnp +bnp +wGn +wNK +wNK +wNK +sos +bnp +bnp +bnp +bnp +wGn +wNK +uZA +uZA +uZA +teI +kyj +kyj +kyj +elz +vDk +kyj +iUh +uxh +aKc +rZS +qAV +wnU +rnA +utW +cxD +hmt +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uMF +jzg +jzg +jzg +oaR +oaR +oaR +oaR +bIL +mfU +kXm +cMs +mfU +xmD +uMF +edG +eoD +uZA +uZA +uZA +uZA +qcQ +ycu +pfX +qMy +uEi +nSz +eWz +eWz +cTC +eWz +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(68,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +xaD +bhp +bhp +nmG +dsE +nmG +dsE +bhp +sRY +xaD +bhp +vbZ +vbZ +bhp +jrT +kkE +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +fwL +nbL +dVj +xGn +xGn +xGn +dVj +iwz +qgs +qMp +lHq +lHq +lHq +qMp +lHq +lHq +lHq +lHq +qMp +lHq +lHq +lHq +qMp +lHq +lHq +qgs +jcF +mDB +lgh +lgh +qaO +lHp +jDg +jDg +uen +qaO +fTh +lgh +lgh +lgh +lgh +lgh +xTC +pOz +poH +usp +pOz +rnz +rWq +wNK +wNK +wNK +cSS +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +wNK +uZA +uZA +uZA +teI +kyj +kyj +kyj +elz +vDk +kyj +iUh +rZS +ePt +rZS +qAV +wnU +rnA +spM +spM +cxD +oLM +uZA +uZA +uZA +uZA +uZA +uZA +uZA +bov +pTQ +vzD +kOl +oaR +jjZ +vqp +oaR +uMF +uMF +uMF +uig +oFQ +fuX +uMF +eoD +uZA +uZA +uZA +uZA +uZA +qcQ +ucO +eWz +qEh +hQQ +plq +eTw +esT +oko +eWz +vbZ +vbZ +vbZ +vbZ +vbZ +vAu +nRr +nRr +gYk +tfr +onr +lYB +vbZ +vbZ +vbZ +oNn +"} +(69,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +iwz +uoe +exu +ghD +gJn +dVj +xGn +xGn +xGn +dVj +iwz +qgs +lHq +lHq +bdg +bdg +bdg +bdg +bdg +bdg +bdg +bdg +lHq +kKK +kKK +kKK +kKK +kKK +kKK +xKq +xKq +xKq +lgh +lgh +lHp +jDg +jDg +uen +dQM +fTh +lgh +lgh +xTC +lgh +xTC +pOz +pOz +ekj +jfR +pOz +pOz +rWq +wNK +wNK +cSS +fNf +cSS +wNK +wNK +wNK +voQ +rjz +bKm +wNK +wNK +wNK +wNK +wNK +wNK +wNK +ahf +rjz +bKm +wNK +uZA +uZA +uZA +teI +nRj +nRj +nRj +elz +vDk +kyj +iUh +ekF +rZS +bOk +qAV +wnU +rnA +spM +spM +utW +uiV +oLM +uZA +uZA +uZA +uZA +uZA +uZA +uMF +mEk +oYW +kgx +oaR +lVv +jmI +oaR +wJu +cGd +uMF +wKp +qRS +ktT +bov +uZA +uZA +uZA +uZA +uZA +uZA +jgS +kEO +pfX +jDQ +lOB +xxi +aWG +dKf +qVf +eWz +vbZ +vbZ +vbZ +vbZ +vbZ +mFP +nRr +nRr +dsE +vbZ +vbZ +lYB +bKx +vbZ +vbZ +oNn +"} +(70,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +jrT +vWV +nRr +vbZ +nRr +vbZ +nRr +dsE +bhp +bhp +nmG +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +iwz +mZd +qtJ +rmk +dVj +dVj +dVj +dVj +dVj +rVM +iwz +yfC +lHq +qMp +bdg +sBI +fEd +jCJ +lYn +dJP +dJP +gVH +lHq +rpu +ufe +jiv +wKZ +ods +kKK +jSK +snm +xKq +xTC +lgh +lHp +jDg +jDg +pPh +pOz +pOz +pOz +pAN +huK +sCt +lgh +jtH +mhv +jaQ +blP +dmM +pOz +rWq +wNK +xEY +xEY +xRE +xEY +xEY +wNK +wNK +gnS +upx +upx +scj +scj +scj +upx +uPB +uPB +uPB +upx +upx +kmJ +bKm +uZA +uZA +uZA +teI +fcc +fcc +fcc +elz +vDk +kyj +iUh +rnA +nIR +rnA +rnA +rnA +rnA +oaR +spM +spM +utW +cxD +hmt +uZA +uZA +uZA +uZA +uZA +uMF +fxV +oaR +oaR +oaR +fEm +oaR +oaR +djS +ooj +bov +pkT +gnm +wwt +uMF +uZA +uZA +uZA +uZA +uZA +uZA +uZA +qcQ +pfX +tJw +brQ +wtK +hQQ +vaG +plq +eWz +vbZ +vbZ +vbZ +vbZ +vbZ +ptU +iwf +iwf +tfr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +oNn +"} +(71,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +jrT +vWV +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +bhp +bhp +vbZ +nRr +vbZ +vbZ +knU +vsE +knU +vbZ +vbZ +vbZ +sRY +bhp +bhp +iwz +qtJ +vXF +aLn +chF +gsO +snw +dVj +dVj +hkN +iwz +qgs +lHq +lHq +bdg +wFN +qph +bdg +jtE +dwr +frI +gVH +qMp +rpu +lqP +igJ +rUL +igJ +kKK +jOV +sDl +xKq +lgh +lgh +lHp +jDg +jDg +jDg +rDS +hFV +xYJ +jDg +jDg +uen +dQM +pOz +xDm +iSm +bDm +jxm +pOz +kmJ +rjz +xEY +juy +phA +btf +xEY +wNK +wNK +sos +upx +nHK +onQ +cSG +onQ +mGx +onQ +mSh +onQ +rxx +upx +cGV +kmJ +ruE +uZA +uZA +teI +kyj +kyj +kyj +elz +vDk +kyj +iUh +cMI +qLn +rnA +hKt +ioP +sEZ +oaR +oaR +spM +spM +spM +wEN +uZA +uZA +uZA +tid +xlF +xlF +oLM +eai +phs +kVF +eIC +koQ +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +vMN +uZA +uZA +uZA +uZA +uZA +jgS +aUB +aUB +aUB +aUB +aUB +aUB +aUB +aUB +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +onr +bhp +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +oNn +"} +(72,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +qFQ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +bhp +bhp +iwz +qtJ +qtJ +xZV +rjV +rjV +rjV +pdF +rjV +rjV +iwz +qgs +lHq +lHq +bdg +bdg +bdg +bdg +jtE +hen +tcB +bdg +lHq +kKK +sZg +igJ +kKK +hNf +kKK +kKK +xGu +xKq +lgh +xTC +lHp +jDg +jDg +aPk +pOz +pOz +pOz +jDg +jDg +pPh +huK +pOz +ekj +aQU +jZC +kch +pOz +rnz +rnz +xEY +pkG +mzr +arR +xEY +wNK +wNK +wNK +upx +lMw +onQ +onQ +has +onQ +has +has +onQ +rxx +upx +rnz +xrS +rOS +uZA +uZA +teI +kyj +kyj +kyj +elz +vDk +kyj +iUh +jLr +wKx +rnA +mcT +xsw +sEZ +puf +eai +spM +spM +spM +wEN +uZA +uZA +uZA +jQk +spM +spM +gwi +eai +wPm +dKf +nyq +oaR +oaR +jHU +mUv +oXQ +aOJ +oaR +vCf +rcX +oaR +acB +ruE +uZA +uZA +uZA +uZA +uZA +nLe +igs +gLG +gLG +gLG +gLG +gLG +aUB +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +oNn +"} +(73,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +bhp +bhp +bhp +vbZ +vbZ +gYk +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +gUi +bhp +iwz +rjV +rjV +rjV +rjV +fOK +cIF +pkE +oqP +alc +iwz +qgs +lHq +lHq +bdg +rwb +jtE +fgp +jtE +jtE +hQJ +bdg +lbP +kKK +rpu +kKK +kKK +igJ +igJ +igJ +cWS +xKq +lgh +lgh +lHp +jDg +jDg +jDg +jDg +jDg +jDg +jDg +jDg +jDg +jDg +sOs +aAL +bIc +qsy +enb +pOz +fuK +tEt +xEY +ini +mzr +sAE +xEY +wNK +wNK +wNK +upx +kxx +hJC +has +onQ +dKD +onQ +has +onQ +bBw +upx +fpl +cGV +rOS +uZA +uZA +teI +nRj +nRj +nRj +elz +vDk +kyj +iUh +rnA +rnA +rnA +xrL +mPx +ooS +sEZ +eai +spM +spM +spM +wEN +uZA +uZA +uZA +jQk +spM +edG +eoD +oaR +qjL +xxi +lQY +rsO +oaR +mvt +aOJ +aOJ +aOJ +pdG +wfX +kbG +oaR +ucO +rOS +uZA +uZA +uZA +uZA +gqh +kEm +swg +hhN +azR +tZk +sZQ +rxw +aUB +jmQ +jmQ +jmQ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bhp +vbZ +oNn +"} +(74,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +gYk +tfr +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +bhp +vbZ +vbZ +vbZ +nRr +kyd +oQL +bng +iej +vbZ +vbZ +bhp +sRY +iwz +mGP +sIc +chQ +rjV +iSd +pkE +vuB +pkE +uNR +iwz +qgs +lHq +lHq +bdg +lVQ +qUL +bdg +bdg +jtE +tQd +bdg +cKB +cKB +cKB +rMT +igJ +igJ +igJ +knf +cVj +xKq +lgh +xTC +lHp +jDg +jDg +xfo +ijU +sCK +jDg +xfo +ijU +sCK +jDg +pOz +ekj +jUb +ozF +xLO +pOz +ljG +poy +xEY +xEY +kAN +xEY +xEY +wNK +wNK +wNK +upx +onQ +onQ +gBD +onQ +onQ +onQ +onQ +onQ +pjk +upx +rnz +rnz +rOS +uZA +uZA +iUh +elz +iVc +mZg +elz +wAO +kyj +iUh +lhn +lhn +oaR +ktP +vKA +gtK +hIu +uqc +eJL +spM +spM +wEN +uZA +uZA +uZA +pZY +whU +gwi +uZA +pXj +dKf +mSl +oUu +mpt +oaR +oaR +inB +aOJ +oaR +oaR +oaR +oaR +oaR +szV +mDK +uZA +uZA +uZA +uZA +heP +kEm +bBr +cvW +vgS +gLG +spc +gLG +aUB +reO +llH +jmQ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +oNn +"} +(75,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vWV +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +nRr +dsE +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +vbZ +vbZ +vbZ +vbZ +ayP +wPP +bme +vbZ +vbZ +bhp +bhp +bhp +iwz +rWT +xOc +xOc +dly +pkE +pkE +dgB +tOr +avQ +iwz +qgs +qMp +lHq +bdg +jtE +aFe +jtE +bdg +lyq +bdg +bdg +cKB +cKB +cKB +kKK +dwu +sNp +hHQ +afs +opw +xKq +lgh +dQM +lHp +jDg +jDg +ekj +ekj +ekj +qme +ekj +ekj +lHp +jDg +pOz +tul +trg +lWO +aaZ +pOz +ljG +poy +lSB +xEY +dug +ckJ +xEY +wNK +wNK +wNK +myk +onQ +onQ +onQ +onQ +onQ +onQ +rxx +onQ +mQm +upx +rnz +rnz +rOS +uZA +uZA +iUh +iUh +iUh +iUh +dnS +iUh +iUh +iUh +pkM +pkM +oaR +oaR +oaR +iSU +oaR +oaR +ikB +qUH +qUH +mvk +ruE +uZA +uZA +uZA +pZY +eoD +uZA +oaR +lVI +fcV +wME +aLE +oaR +mcx +aOJ +aOJ +goG +aOJ +wRW +oLi +oaR +qwc +rOS +uZA +uZA +uZA +uZA +heP +kEm +bBr +rVP +cEn +ybp +vSe +gBv +aUB +reO +reO +jmQ +bhp +sRY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +ner +bhp +vbZ +oNn +"} +(76,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vWV +nRr +vWz +vWV +dsE +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +sRY +bhp +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +sRY +bhp +gUi +iwz +ovB +xOc +xnp +rjV +ybJ +pkE +pkE +mZG +mGN +iwz +qgs +lHq +lHq +bdg +wbA +sxe +vgC +gVH +cKB +cKB +cKB +cKB +cKB +cKB +kKK +kKK +kKK +kKK +kKK +kKK +xKq +huK +huK +cfs +jDg +jDg +asb +fGw +gIG +ejS +wpE +ekj +lHp +jDg +jtH +mhv +oHC +tvA +tnY +pOz +ljG +poy +rnz +xEY +aoR +sHj +xEY +wNK +wNK +wNK +upx +gTE +rxx +rxx +iyI +iyd +scZ +rxx +onQ +uMm +upx +cGV +nIV +rOS +uZA +uZA +nSr +gkr +tMo +iUh +rAL +mUt +iUh +uZA +uZA +uZA +jgS +cKY +uWq +uZA +uZA +jgS +cKY +cKY +eFi +kEO +uCe +ruE +uZA +uZA +uZA +uZA +uZA +oaR +oaR +oaR +oaR +oaR +oaR +wAW +jCs +aOJ +oaR +qIh +aOJ +aOJ +eai +tMo +rOS +uZA +uZA +uZA +uZA +eym +kEm +bBr +egw +tqv +cmQ +gLG +gLG +aUB +wqX +reO +hXK +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +oNn +"} +(77,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +vWz +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +sRY +bhp +bhp +sRY +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +iwz +byk +oYX +hJS +rjV +kZk +szK +iuo +eZt +hzz +iwz +qgs +lHq +lHq +bdg +bdg +oNp +gVH +bdg +cKB +cKB +cKB +cKB +cKB +cKB +cKB +cKB +cKB +cKB +cKB +hCg +tsc +jDg +jDg +jDg +jDg +jDg +asb +ejS +cSN +cSN +wPX +ekj +cfs +jDg +pOz +pOz +pOz +pOz +pOz +pOz +ljG +poy +tEt +xEY +xEY +xEY +xEY +tKk +tKk +tKk +upx +upx +upx +upx +upx +upx +upx +upx +upx +upx +upx +rnz +rnz +rOS +uZA +uZA +qcQ +ycu +szV +iUh +iUh +iUh +iUh +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +jgS +cKY +uWq +uZA +uZA +uZA +uZA +uZA +pZY +xWd +xWd +xWd +xWd +oaR +eai +oaR +rOr +oaR +fsb +uag +aOJ +oaR +kWx +rOS +uZA +uZA +uZA +uZA +uZA +nLe +qGo +cup +kKO +nLe +tbe +nLe +nLe +reO +tOz +hXK +xaD +bhp +xaD +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +oNn +"} +(78,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vQU +vQU +jOA +jOA +jOA +jOA +jOA +jOA +vQU +vQU +vQU +vQU +jOA +jOA +jOA +jOA +jOA +jOA +vQU +iwz +iwz +iwz +iwz +iwz +vQU +vQU +vQU +vQU +vQU +vQU +qgs +lHq +lHq +lHq +lHq +adY +lHq +vwq +cKB +cKB +cKB +cKB +rNz +cKB +cKB +cKB +cKB +cKB +cKB +cKB +tsc +jDg +jDg +jDg +jDg +jDg +asb +ejS +tBp +mhM +twI +ekj +jDg +jDg +jDg +jDg +uen +ygf +fuK +poy +oRL +oRL +poy +poy +poy +rnz +rnz +rnz +rnz +rnz +eDV +rnz +rnz +rnz +rnz +rnz +rnz +rnz +rnz +fpl +rnz +cGV +rnz +rOS +uZA +uZA +qcQ +tMo +ycu +ycu +ycu +ycu +rOS +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +oaR +oaR +eai +eai +oaR +cKY +uWq +uZA +uZA +uZA +uZA +nSr +nLe +gVa +xQq +ryY +nLe +tIV +kuq +nLe +pTb +reO +hXK +bhp +bhp +sRY +bhp +bKx +vbZ +vbZ +vbZ +vbZ +bhp +bKx +vbZ +oNn +"} +(79,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +hIT +nUM +vWz +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vQU +pZb +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +nUX +gRs +mBB +wWr +knY +vQU +qgs +lHq +lHq +lHq +tuZ +tuZ +tuZ +tuZ +tuZ +tuZ +tuZ +cKB +cKB +cKB +cKB +cKB +cKB +sec +sec +hjO +jTD +jTD +ijU +sCK +jDg +jDg +ekj +ekj +ekj +ekj +ekj +ekj +tzG +jDg +jDg +jDg +uen +ygf +wpv +poy +oRL +oRL +poy +poy +poy +cGV +rnz +rnz +cGV +rnz +eDV +cGV +rnz +rnz +rnz +rnz +rnz +cGV +rnz +cGV +rnz +nIV +rnz +rOS +uZA +uZA +jgS +fRu +fRu +fRu +fRu +dbH +uWq +uZA +uZA +uZA +nSr +hwR +oaR +oaR +rOr +oaR +eai +eai +oaR +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +nSr +vKw +nLe +nLe +fkD +nLe +nLe +phC +oZm +dEm +nqw +wqX +jmQ +bhp +xaD +bhp +vbZ +ner +ner +bKx +vbZ +vbZ +vbZ +siL +vbZ +oNn +"} +(80,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +wPP +lQP +rBv +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +jOA +eeo +voE +voE +voE +voE +lfw +voE +lfw +voE +voE +voE +voE +voE +lfw +voE +voE +voE +voE +voE +lfw +voE +mzV +kub +nUX +xpO +fMG +rdb +hBn +vQU +qgs +lHq +lHq +xSm +tuZ +nsb +noc +kVr +lcl +osK +tuZ +cKB +cKB +cKB +cKB +cKB +cKB +hjO +qgy +hfD +sYC +jTD +dQM +lHp +jDg +jDg +uen +lgh +fTh +lgh +xTC +lHp +jDg +jDg +jDg +jDg +xuo +xuo +xuo +xuo +xuo +xuo +xuo +ljG +lSB +rnz +fpl +rnz +rnz +rnz +eDV +rnz +rnz +fpl +rnz +rnz +rnz +rnz +rnz +rnz +rnz +fpl +cGV +rOS +uZA +uZA +uZA +czs +jUR +kqV +fRu +uWq +uZA +uZA +nSr +hwR +gkr +tMo +oaR +cVb +aOJ +xHa +aOJ +aOJ +oaR +oaR +oaR +oaR +oaR +hwR +ruE +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +uZA +qcQ +tMo +nLe +syw +nxx +uIK +nLe +cxv +soC +nLe +wLY +llH +jmQ +sRY +bhp +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +rKB +vbZ +oNn +"} +(81,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +wPP +lQP +rBv +nRr +gYk +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +bhp +jOA +eeo +ufw +tvG +tvG +kAw +hEU +nus +nus +nus +dUL +lfw +voE +voE +voE +voE +voE +voE +lfw +voE +voE +voE +qVR +iTX +pJF +rdb +uLn +rdb +fpy +vQU +qgs +lHq +qMp +lHq +xCP +nbA +gPv +gPv +gPv +gPv +gMX +cKB +cKB +cKB +sec +sec +tbM +sec +kke +ewK +gDV +jTD +lgh +lHp +jDg +jDg +uen +lgh +fTh +xTC +lgh +fYK +ijU +ijU +ijU +ijU +xuo +lMR +vJB +xUY +lMR +vJB +xuo +sYB +sYB +sYB +sYB +sYB +sYB +sYB +sYB +sYB +rnz +rnz +cGV +rnz +rnz +rnz +rnz +cGV +rnz +rnz +rnz +rOS +uZA +uZA +uZA +tEx +eDL +nSm +fRu +uZA +uZA +uZA +qcQ +oaR +oaR +oaR +oaR +xZj +aOJ +sbF +aOJ +aOJ +oaR +ahU +nCz +aOJ +oaR +tMo +qBs +ruE +dpN +iaW +oru +oru +uQn +dpN +uZA +uZA +nSr +hwR +hwR +hwR +hwR +hwR +ruE +uZA +uZA +uZA +uZA +nSr +hUv +szV +dEm +wxE +deR +pNE +nLe +nLe +rZL +nLe +reO +reO +jmQ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +oNn +"} +(82,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +bhp +vbZ +dsE +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +wPP +lQP +woM +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +dsE +bhp +vbZ +vbZ +vbZ +vbZ +bhp +jOA +eeo +vZH +bCN +vag +lYV +ruF +fZa +qLK +mqQ +qvl +qvl +nLO +nLO +qvl +qvl +nLO +nLO +qvl +qvl +voE +voE +qVR +gBJ +nUX +ayL +oqo +aPi +nXn +vQU +qgs +lHq +lHq +lHq +mxO +gPv +gPv +cET +gPv +tuZ +tuZ +mxO +tuZ +cKB +sec +sSb +kke +sec +sec +ewK +oNo +jTD +lgh +lHp +jDg +jDg +uen +dQM +sYB +sYB +sYB +sYB +sYB +sYB +sYB +sYB +xuo +lMR +eld +xUY +ksG +jTc +xUY +cvV +ioF +bBt +ggW +ioF +bBt +eYj +ppo +sYB +uhK +qpM +qpM +qpM +qpM +qpM +qpM +qpM +uhK +uhK +reO +xAV +tKS +tKS +tKS +jml +rVW +dhQ +fRu +tKS +tKS +tKS +muq +oaR +krY +suA +oaR +pIC +aOJ +aOJ +aOJ +aOJ +goG +aOJ +sfp +aOJ +oaR +ycu +szV +qBs +dpN +vme +ppH +hPk +sEp +dpN +uvd +uvd +mqN +mqN +mqN +mqN +mqN +mqN +mqN +xAv +skh +tKS +tKS +muq +llH +xIL +nLe +hqq +drD +fLp +eLz +kEu +aBx +nLe +reO +reO +hXK +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +oNn +"} +(83,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +wPP +lQP +rBv +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +xaD +bhp +jOA +eeo +vZH +bCN +vag +lYV +ruF +tcc +nOb +wHe +qvl +oZf +wLf +wLf +jIe +wgy +hgo +oBM +bEQ +qvl +voE +voE +qVR +iTX +nUX +nUX +nUX +nUX +nUX +vQU +qgs +lHq +lHq +qMp +tuZ +bQL +tuZ +tuZ +wSX +tuZ +poh +uBT +tuZ +fzk +sec +sOz +ewK +oLw +szN +ewK +nRV +jTD +xTC +lHp +jDg +jDg +uen +lgh +sYB +hCP +bLv +rBG +veX +gqX +qAu +amM +xUY +hGs +eld +xUY +hGs +pwq +xUY +oci +pqC +fWd +dhJ +xni +fWd +mTx +tzN +sYB +wGs +wGs +wGs +wGs +wGs +wGs +wGs +wGs +dzw +uhK +nmH +xAV +tKS +tKS +tKS +uHp +xbx +sZY +fRu +tKS +tKS +nTq +ttB +oaR +wvi +kyt +lFp +aOJ +aOJ +euv +nZb +gSS +oaR +mha +mWO +fsb +oaR +ycu +ucO +ycu +dpN +jiV +jHg +jHg +jHg +xFp +lRS +lRS +mqN +hjm +rTj +mqN +oGe +qRc +mqN +fSZ +wTH +tKS +tKS +muq +wqX +ykK +dEm +qli +fyZ +iya +mOf +pjA +jGy +nLe +tOz +reO +hXK +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(84,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +hIT +lQP +maT +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +sRY +bhp +jOA +eeo +vZH +bCN +vag +lYV +hYX +qLh +nOb +nOb +qvl +fJK +jkC +fiM +vdW +wgy +iQo +hGr +iOI +qvl +voE +lfw +qVR +iTX +weF +voE +voE +voE +eeo +vQU +qgs +lHq +lHq +lHq +tuZ +bap +fUJ +tuZ +gPv +gPv +gPv +uLi +mxO +xSm +hjO +sQq +fom +tFT +sec +sec +sec +jTD +lgh +lHp +jDg +jDg +uen +lgh +sYB +fhJ +fWd +fWd +fWd +fWd +fWd +ylq +xUY +xUY +jEG +xUY +xUY +jEG +xUY +fhJ +fWd +fWd +fWd +fWd +fWd +fWd +kNR +sYB +qQU +dWb +cdU +cdU +cdU +cdU +dWb +cdU +eEI +qpM +reO +xAV +tKS +tKS +tKS +fRu +vwO +fRu +fRu +tKS +tKS +muq +tOz +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +oaR +ycu +ycu +tMo +dpN +qzE +mmm +dPI +cpi +dpN +jas +oek +mqN +diQ +hUp +mqN +nqJ +eor +mqN +wlv +xAV +tKS +tKS +fFi +mNr +wqX +nLe +skc +eaQ +euM +nLe +nLe +jIg +nLe +reO +reO +hXK +sRY +xaD +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(85,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +vQU +eeo +nRu +mSI +mSI +sPC +gHh +xyg +nOb +nOb +dJl +wgy +qzg +qzg +wgy +wgy +fqY +iOI +tza +qvl +nus +qxQ +uos +iTX +weF +lfw +voE +lfw +utU +vQU +bcy +lHq +qMp +lHq +tuZ +tUe +vhs +tuZ +iKl +ppE +ohN +kXF +mxO +lHq +dql +qTA +gTv +llj +sec +szS +nlT +jTD +lgh +lHp +jDg +jDg +uen +lgh +sYB +fhJ +umM +tdq +nRX +gYm +fWd +hpX +toW +qKg +fWd +rYY +iOm +fWd +toW +gFc +fWd +fWd +fWd +fWd +ujO +fWd +ecE +sYB +gkV +aph +aph +aph +aph +aph +rfO +cdU +eEI +qpM +tOz +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +muq +llH +wqX +reO +reO +reO +reO +reO +hre +kpV +kpV +kpV +kpV +uGi +reO +reO +reO +reO +reO +dpN +dpN +dpN +dpN +dpN +dpN +iRI +iRI +mqN +mqN +nna +mqN +mqN +nir +mqN +mqN +xAV +tKS +tKS +tKS +fFi +kpV +nLe +nLe +cWT +nLe +nLe +tmh +pEN +nLe +reO +reO +jmQ +bhp +xaD +bhp +bKx +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(86,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +oQL +ohG +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vQU +eeo +ufw +qmg +qmg +nmE +gHh +xyg +nOb +jWz +qvl +dEI +wgy +wgy +wgy +wgy +wgy +wgy +leB +oXX +oYS +jGS +iTX +iTX +weF +ylW +voE +voE +mzV +lLu +sZd +lHq +lHq +lHq +tuZ +tuZ +tuZ +tuZ +tuZ +tuZ +tuZ +tuZ +tuZ +lHq +sec +kUB +vVU +cKa +pzr +wpI +qZM +jTD +lgh +lHp +jDg +jDg +uen +lgh +sYB +fhJ +pOf +rYk +rPY +tPC +fWd +fWd +fWd +fWd +fWd +ujO +fWd +fWd +fWd +fWd +fWd +fWd +fWd +fWd +fWd +fWd +fWd +exa +lCA +lCA +lCA +hFt +hFt +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +fFi +kpV +kpV +kpV +kpV +kpV +kpV +kpV +osF +tKS +tKS +tKS +tKS +muq +reO +wqX +tOz +reO +reO +reO +reO +tOz +reO +reO +reO +reO +reO +reO +mqN +eIa +eIa +eIa +eIa +uBu +mqN +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +buV +nLe +tVP +oxa +nLe +reO +llH +jmQ +bhp +sRY +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(87,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +lQP +wPP +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vQU +eeo +vZH +rSH +duG +lYV +tRG +jqa +nOb +vQD +nLO +mtg +qYv +dyj +wgy +wgy +wgy +wgy +leB +jHZ +wgy +pXK +iTX +iTX +weF +voE +voE +mzV +uos +pKe +bQY +lbP +uAK +qMp +lHq +lHq +lHq +lHq +lHq +lHq +qMp +lHq +lHq +lHq +sec +sec +jTD +jTD +jTD +jTD +jTD +jTD +xTC +lHp +jDg +jDg +uen +lgh +sYB +fhJ +ujO +fWd +fWd +fWd +fWd +fkJ +dmo +nVK +sql +gIL +vEj +nBw +eci +eXZ +dmo +tHS +fkJ +ffb +jop +fWd +fWd +fWd +lCA +lCA +lCA +dlb +qtl +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +tKS +nTq +skh +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +muq +reO +reO +reO +reO +reO +wqX +reO +reO +reO +tOz +reO +reO +wqX +reO +ghi +eIa +hUp +eIa +eIa +ooG +mqN +aVp +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +nTq +nLe +nLe +nLe +nLe +reO +reO +jmQ +xaD +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vwM +vbZ +vbZ +vbZ +oNn +"} +(88,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +lQP +hIT +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wtp +vQU +eeo +vZH +qnp +sVB +lYV +ruF +fZa +nOb +ahR +nLO +vms +wgy +wgy +wgy +wgy +wgy +wgy +wgy +wgy +wgy +pXK +iTX +iTX +weF +voE +voE +pnN +kqN +iEF +fzk +fzk +hyK +lHq +lHq +lHq +lHq +qMp +lHq +lHq +lHq +lHq +lHq +lHq +lHq +vRg +jcF +fTh +lgh +jdj +dLu +sVq +dQM +lHp +jDg +jDg +uen +lgh +sYB +gvT +uoC +uKM +qKQ +uoC +tHS +kNR +riy +riy +riy +riy +riy +riy +riy +riy +riy +nDA +kNR +uhK +uhK +swE +uhK +sYB +iPl +lCA +lCA +hZT +dlb +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +tKS +lpB +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +jtu +jtu +jtu +jtu +jGj +wtA +jtu +jtu +xwr +xwr +xwr +ciM +pYN +pYN +pYN +pYN +pYN +pYN +nVL +reO +reO +reO +mqN +rRe +siH +hUp +nnm +jyk +mqN +qDw +tKS +tKS +tKS +mqN +mqN +mqN +mqN +xAv +sTk +reO +wqX +reO +wqX +reO +reO +hXK +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +lYB +bKx +vbZ +vbZ +oNn +"} +(89,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +mQI +wtp +wtp +wtp +jOA +eeo +vZH +hPJ +jJf +lYV +ruF +tcc +vSf +nOb +qvl +iSI +dsO +qNy +wgy +wgy +weR +uJT +cuj +nLO +qZH +vXC +iTX +iTX +weF +voE +lfw +voE +pZb +vQU +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +jyz +oyu +jcF +fTh +xTC +jdj +dLu +sVq +lgh +lHp +jDg +jDg +uen +jxJ +jxJ +jdk +jdk +jdk +jdk +jdk +ewr +tzE +riy +tVw +nXf +trv +riy +xoZ +cyS +obP +riy +fhJ +kNR +uhK +dbq +fWd +qRz +sYB +nqT +lCA +lCA +hGv +qhU +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +tKS +fFi +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +jtu +jWb +wSU +oiH +jGj +jGj +fBD +jtu +ovc +ovc +ovc +hnx +hnx +hnx +hnx +hnx +hnx +hnx +cUi +reO +reO +reO +mqN +mqN +mqN +nna +mqN +mqN +mqN +skh +tKS +tKS +tKS +mqN +aWJ +bZX +mqN +xux +wqX +tOz +reO +tOz +reO +tOz +reO +hXK +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +oNn +"} +(90,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wtp +wtp +wtp +wtp +wtp +wtp +jOA +eeo +nRu +mSI +mSI +sPC +hYX +vQV +vQV +qvl +qvl +qvl +qvl +qvl +wgy +cga +qvl +qvl +qvl +qvl +qvl +gHL +iTX +iTX +weF +ylW +voE +voE +eeo +vLw +vLw +vLw +bht +bht +bht +bht +vLw +vLw +vLw +vLw +bht +bht +bht +bht +vLw +vLw +vLw +fTh +lgh +jdj +dLu +sVq +lgh +lHp +jDg +jDg +uen +jxJ +oZY +cIR +iCP +pAy +hLU +jdk +ewr +iFo +uSY +ptt +ptt +ptt +riy +xjZ +eRE +eRE +ozH +qoO +kNR +eoB +eWw +fWd +kNR +kCd +maP +lCA +lCA +lCA +lCA +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +jtu +wrm +jGj +jGj +jGj +wrm +wOe +jtu +fKd +fKd +fKd +hnx +ovc +ovc +ovc +ovc +ovc +hnx +amg +reO +reO +reO +reO +mqN +oeI +eIa +eIa +mqN +wqX +chK +tKS +tKS +nTq +mqN +nqJ +uqy +mqN +mqN +mqN +mqN +mqN +mqN +reO +reO +reO +hXK +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(91,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +wtp +vbZ +vbZ +vbZ +vbZ +wtp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +wtp +igM +wtp +igM +wtp +jOA +eeo +voE +gHh +fIS +qJR +qJR +mQP +rpM +qvl +rSk +jgr +wgy +wIn +wgy +wgy +qTs +wgy +wgy +szf +qvl +qVR +iTX +iTX +weF +voE +voE +voE +eeo +vLw +vLw +azB +fPz +fPz +fPz +fPz +fPz +fPz +fPz +fPz +fPz +fPz +fPz +fPz +mut +vLw +vLw +fTh +lgh +jdj +dLu +sVq +xTC +lHp +jDg +jDg +uen +jxJ +ewr +iFo +iFo +iFo +iFo +cuA +iFo +usg +riy +ptt +nBN +nBN +riy +nmI +lqe +ajK +qrP +boT +kNR +eoB +cqF +lBL +ecE +sYB +cpC +lCA +lCA +lCA +lCA +lCA +pPb +cdU +eEI +uhK +reO +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +jtu +jGj +wrm +jGj +jGj +jGj +nsP +jtu +fKd +fKd +vZb +hnx +rxJ +avj +dKQ +avj +lgS +hnx +jpf +reO +tOz +reO +llH +mqN +eIa +hUp +caq +mqN +tOz +xAV +tKS +tKS +muq +mqN +mqN +bpx +mqN +aBo +sJq +iOR +pje +mqN +reO +reO +wqX +jmQ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(92,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +nRr +vbZ +vbZ +oQL +oQL +oQL +vbZ +vbZ +igM +wtp +vbZ +vbZ +vbZ +mQI +igM +wtp +vbZ +vbZ +vbZ +wtp +wtp +wtp +mQI +vbZ +vbZ +vbZ +wtp +mQI +vbZ +vbZ +vbZ +vbZ +wtp +vbZ +vbZ +vbZ +wtp +wtp +wtp +mQI +wtp +jOA +eeo +lfw +gHh +skt +vZR +hNv +kDN +gHh +nLO +mkj +wgy +cga +qvl +qvl +oZC +qvl +ppr +wgy +hgU +nLO +qVR +iTX +iTX +weF +lfw +voE +voE +eeo +vLw +azB +hEI +vcC +vcC +vcC +lGB +vcC +vcC +vcC +vcC +lGB +vcC +vcC +vcC +sxm +mut +vLw +fTh +lgh +yjY +rwn +ylm +lgh +lHp +jDg +jDg +uen +jxJ +jNq +gJK +nXQ +gJK +lOS +jdk +ewr +tzE +wDq +qdg +wFg +etx +riy +woO +mEN +ovq +wRN +fhJ +kNR +eoB +rZw +qmb +kNR +kCd +nUA +lCA +lCA +lCA +lCA +lCA +pPb +cdU +eEI +qkl +nmH +xAV +tKS +tKS +tKS +nTq +xAv +dea +dea +rDq +rDq +rDq +dea +xRb +xRb +xRb +dea +jtu +jGj +vBZ +jtu +afM +ewp +jtu +jtu +fKd +fKd +fKd +nWw +hWC +hWC +hWC +hWC +hWC +nEn +amg +reO +reO +reO +reO +mqN +diQ +nnm +rhD +mqN +xKl +osF +tKS +tKS +fFi +mqN +olF +iOR +miB +ikc +vDe +vlF +isa +mqN +tOz +reO +llH +jmQ +bhp +xaD +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(93,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +wPP +wPP +hIT +vbZ +igM +wtp +wtp +rlL +vbZ +igM +wtp +rlL +wtp +mQI +vbZ +vbZ +vbZ +wtp +wtp +vbZ +vbZ +vbZ +wtp +wtp +igM +wtp +wtp +vbZ +wtp +mQI +wtp +igM +vbZ +vbZ +wtp +igM +wtp +wtp +jOA +eeo +voE +gHh +rzZ +hNv +mES +kDN +gHh +nLO +oYO +wgy +wgy +qvl +qNp +aFB +qvl +dIx +swL +dSf +nLO +qVR +iTX +iTX +weF +voE +voE +voE +eeo +bht +aPn +vcC +lGB +fTA +vcC +vcC +vcC +eIy +lGB +vcC +vcC +eIy +vcC +lGB +vcC +aPn +bht +fTh +xTC +lgh +lgh +lgh +lgh +lHp +jDg +jDg +uen +jxJ +jdk +wRi +qUS +wAf +jdk +jdk +ewr +tzE +wDq +qdg +nlP +nZw +riy +nPR +tGs +oFU +wRN +fhJ +ahW +uhK +hyO +pym +jtt +sYB +pOK +rYd +lCA +hFt +hFt +lCA +pPb +dWb +eEI +qpM +tOz +xAV +tKS +tKS +tKS +muq +llH +dea +bdt +xGa +xGa +xGa +svd +xGa +xGa +xGa +pMV +jtu +jGj +wrm +ugX +kpl +ahx +uYm +jtu +fKd +fKd +fKd +esE +hWC +hWC +hWC +hWC +hWC +nEn +jpf +wqX +hre +kpV +kpV +mqN +mqN +mqN +mqN +mqN +osF +tKS +tKS +tKS +tKS +mqN +qdT +iOR +iOR +iOR +nOB +qQY +vQJ +mqN +reO +reO +reO +jmQ +bhp +bhp +sRY +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(94,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +mQI +wtp +igM +wtp +pQo +wtp +rlL +wtp +mQI +wtp +pQo +wtp +wtp +wtp +wtp +wtp +pQo +pQo +wtp +mQI +wtp +wtp +pQo +pQo +wtp +wtp +wtp +wtp +wtp +pQo +wtp +wtp +wtp +wtp +vQU +eeo +voE +gHh +skt +slO +nji +kDN +gHh +qvl +gbV +jBN +lNm +qvl +mfc +eum +qvl +tZj +xEK +uob +qvl +qVR +iTX +iTX +weF +ylW +voE +voE +eeo +bht +aPn +lGB +vcC +vLw +qmD +qmD +vLw +vLw +vLw +qmD +qmD +vLw +vcC +vcC +vcC +aPn +bht +fTh +lgh +lgh +xTC +lgh +xTC +lHp +jDg +jDg +uen +jxJ +cBK +xGl +xGl +xGl +qXc +xXG +iFo +tzE +wDq +qdg +ptt +ptt +kNT +kNT +kNT +kNT +kNT +okB +sYB +sYB +kCd +kCd +kCd +sYB +iAE +maP +lCA +qtl +dlb +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +nTq +ttB +reO +dea +vGK +xGa +mVi +xGa +xGa +xGa +xGa +xGa +vJe +jtu +jGj +jGj +wzF +wrm +qxW +jGj +jtu +fKd +fKd +fKd +esE +otV +hWC +pkS +hWC +sDv +nEn +amg +reO +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +vBQ +efl +tNU +vTl +dwG +iOR +mqN +mqN +mqN +mqN +tOz +reO +reO +hXK +bhp +bhp +xaD +bKx +sRY +nmL +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(95,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +jxa +jxa +tnO +tnO +tnO +jxa +jxa +jxa +tnO +tnO +tnO +jxa +jxa +jxa +tnO +tnO +tnO +jxa +jxa +jxa +tnO +tnO +tnO +jxa +jxa +jxa +tnO +tnO +tnO +jxa +jxa +jxa +tnO +tnO +tnO +jxa +vQU +eeo +voE +gHh +skt +hNv +hNv +kDN +gHh +qvl +qvl +qvl +qvl +qvl +qvl +qvl +qvl +qvl +qvl +qvl +qvl +uos +iTX +iTX +weF +voE +voE +lfw +eeo +bht +aPn +vcC +gFT +vLw +vTA +cFB +nDn +rZu +hMY +dro +jEV +vLw +vLw +vLw +vLw +vLw +vLw +vLw +vLw +xTC +lgh +lgh +dQM +lHp +jDg +jDg +uen +jxJ +wEU +iFo +iFo +bBh +iIO +jdk +rdX +lOW +riy +hcw +pbx +ptt +kNT +eUI +iZc +lqp +kNT +lCA +ihY +nmR +aph +aph +aph +aph +maP +lCA +gyV +dlb +hZT +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +muq +wqX +reO +dea +aSQ +mVi +xGa +xGa +xGa +xGa +xGa +xGa +qWy +jtu +jGj +jGj +uRX +jGj +oTo +jGj +jtu +fKd +fKd +fKd +esE +hWC +hWC +hWC +hWC +hWC +nEn +amg +hre +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +nTq +mqN +mqN +mqN +kny +mqN +mqN +reO +reO +reO +wqX +reO +tOz +hXK +bhp +bhp +bhp +bKx +bKx +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(96,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +igM +vbZ +jxa +mBJ +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +kIP +khI +vQU +eeo +lfw +gHh +skt +hNv +hNv +kDN +gHh +qvl +jVO +xaB +kRP +vRz +qvl +xhe +eak +vDV +yiE +qDs +qvl +iTX +iTX +iTX +weF +lfw +voE +voE +eeo +vLw +aPn +vcC +vcC +qmD +hni +jDG +qCK +qCK +qCK +lfk +hni +seQ +kgu +cWC +mFY +hKc +xsy +oyn +vLw +vLw +vLw +vLw +vLw +yko +jDg +jDg +uen +jxJ +jxJ +iFo +hhR +jxJ +jxJ +jxJ +jxJ +jxJ +kNT +kNT +kNT +lOA +kNT +tSD +vib +lyJ +kNT +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +qhU +qhU +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +muq +reO +tOz +dea +xGa +xGa +xGa +xGa +xGa +xGa +mVi +xGa +xGa +lcg +gDj +gDj +dey +dey +dey +dey +hnx +fKd +fKd +fKd +esE +hWC +hWC +hWC +hWC +hWC +nEn +amg +xAV +tKS +tKS +jmQ +jmQ +jmQ +jmQ +jmQ +jmQ +jmQ +jmQ +tKS +nTq +vqO +bPk +mqN +aoL +iOR +jAn +mqN +xkm +dmC +xkm +xkm +wqX +reO +hXK +bhp +bhp +bKx +bhp +bhp +xaD +bhp +onr +vbZ +nRr +vbZ +vbZ +oNn +"} +(97,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +wtp +mQI +tnO +hcT +wtp +wtp +wtp +wtp +wtp +wtp +wtp +wtp +wtp +wtp +rci +wtp +wtp +wtp +wtp +wtp +wtp +wtp +wtp +wtp +wtp +rci +wtp +wtp +wtp +wtp +rci +wtp +wtp +wtp +wtp +wtp +wtp +hcT +jOA +eeo +voE +gHh +skt +hNv +hNv +kDN +gHh +mND +mRF +mRF +mRF +mRF +qvl +bVn +bVn +bVn +eEn +bVn +kAM +iTX +iTX +iTX +weF +voE +voE +voE +eeo +vLw +aPn +vcC +xlN +qmD +ldi +mOQ +ryg +qCK +qCK +ouq +iDo +jvu +kQm +pjK +pjK +pjK +pjK +pjK +vLw +fHY +pjK +iGL +vLw +lHp +jDg +jDg +pPh +huK +cfs +jDg +jDg +uen +fTh +qpM +kPX +xeV +lCA +kbt +thu +ruK +vib +vib +vib +dtw +kNT +rYd +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +pPb +cdU +eEI +qpM +reO +xAV +tKS +tKS +muq +tOz +reO +dea +ygd +xGa +xGa +xGa +xGa +xGa +xGa +xGa +xGa +gNR +gDj +gDj +dCD +xuI +miv +mAO +iOG +fKd +fKd +fKd +pNi +gNN +gNN +gNN +gNN +gNN +ihO +amg +xAV +tKS +tKS +jmQ +aWJ +fhn +jmQ +wvO +ury +cQj +jmQ +tKS +muq +wqX +tOz +mqN +iOR +iOR +ftW +mqN +egP +eIa +ptb +jmQ +jmQ +jmQ +jmQ +bhp +bhp +vbZ +vbZ +onr +bhp +bhp +bhp +vbZ +iwf +vbZ +vbZ +oNn +"} +(98,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +mQI +rlL +tnO +hcT +wtp +iHb +vvK +vvK +xze +rci +wtp +wtp +wtp +wtp +wtp +iHb +vvK +vvK +vvK +xze +wtp +rci +wtp +wtp +wtp +wtp +iHb +vvK +vvK +xze +wtp +wtp +wtp +pQh +wtp +wtp +wtp +hcT +jOA +eeo +voE +gHh +skt +hNv +hNv +kDN +gHh +qvl +czG +eta +rWe +aLQ +qvl +bVn +bVn +bVn +bVn +bVn +kAM +iTX +iTX +iTX +weF +ylW +voE +voE +eeo +vLw +aPn +vcC +uYI +nZN +bho +qCK +qCK +qCK +qCK +qhm +hni +nLC +hBW +oQS +rlO +pjK +ceR +pjK +wRD +wvs +enf +pMF +vLw +lHp +jDg +jDg +jDg +jDg +jDg +jDg +jDg +uen +fTh +qpM +tKe +lCA +hex +kNT +ecL +tFU +xUZ +vib +vib +dkf +kNT +oab +rYd +lCA +dFn +vyg +vyg +rYd +lCA +dFn +vyg +vyg +vyg +vyg +eVF +cdU +eEI +qpM +reO +xAV +tKS +tKS +muq +reO +reO +dea +rkU +rkU +dea +rkU +rkU +xuL +qJd +qJd +qJd +qJd +gDj +fxE +dey +xuI +cLB +xuI +iOG +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +amg +xAV +tKS +nTq +jmQ +nqJ +fhn +jmQ +gLa +uDc +mtt +jmQ +tKS +muq +llH +bwp +mqN +mkI +ykM +isa +mqN +xBN +opS +rsb +jmQ +aWJ +uIi +jmQ +bhp +sRY +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +bhp +vbZ +vbZ +oNn +"} +(99,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +wtp +wtp +tnO +hcT +wtp +pEj +snl +mPK +eVb +ihM +ihM +wjC +ihM +ihM +ihM +hyQ +mPK +tHm +nGS +eVb +ihM +wjC +ihM +ihM +ihM +ihM +hOF +oXn +snl +trD +wtp +rci +wtp +wtp +wtp +rci +wtp +hcT +jOA +eeo +voE +gHh +mIV +geT +geT +hcr +rpM +qvl +qvl +qvl +qvl +qvl +qvl +sTz +qvl +qvl +qvl +qvl +qvl +doi +iTX +iTX +weF +voE +voE +voE +eeo +bht +aPn +lGB +vcC +qmD +ldi +bNX +qCK +qCK +qCK +toP +ldi +nLC +lIC +ogU +kbd +vzU +qYz +pjK +vLw +jwM +luw +pjK +vLw +lHp +jDg +jDg +xfo +ijU +ijU +ijU +ijU +mSb +fTh +mpC +mpC +mpC +mpC +mpC +mpC +mpC +mpC +mpC +poi +oJe +kNT +uAb +uAb +bHf +uAb +uAb +uAb +nqT +lCA +cmF +eFv +cdU +cdU +cdU +dWb +cdU +eEI +qpM +reO +xAV +tKS +tKS +muq +reO +reO +hnx +mcl +aFI +iOG +wmw +vJQ +gDj +oLa +hbr +riw +rMf +gDj +gDj +hxg +vhG +eVu +eqQ +iOG +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +amg +xAV +tKS +muq +jmQ +jmQ +nir +jmQ +vOF +eIa +ouK +jmQ +tKS +fFi +tqq +kyh +mqN +awl +iOR +tQH +mqN +ilc +eIa +iKU +jmQ +nqJ +uqy +jmQ +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +sRY +vbZ +bKx +vbZ +vbZ +oNn +"} +(100,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +igM +jxa +hcT +wtp +pEj +num +pfn +dtx +icw +icw +icw +icw +icw +icw +icw +icw +dtx +icw +icw +icw +icw +icw +icw +icw +icw +dtx +hrC +tzM +trD +wtp +wtp +rci +wtp +wtp +wtp +wtp +hcT +jOA +eeo +voE +gHh +gHh +gHh +gHh +gHh +gHh +gHh +gHh +gHh +gHh +gHh +gHh +gHh +voE +lfw +voE +voE +voE +qVR +iTX +iTX +weF +lfw +voE +lfw +eeo +bht +aPn +lGB +gFT +vLw +cEU +qCK +cYn +qCK +aJB +qCK +jko +seQ +poQ +pjK +gvc +gvc +pjK +iMP +vLw +vLw +vLw +oOn +vLw +yko +jDg +jDg +uen +dQM +xTC +mpC +mpC +mpC +mpC +mpC +fdo +mex +cmS +wfs +gFi +mex +gAr +mpC +mpC +mpC +mpC +uAb +xVs +lUN +fLT +tAm +uAb +qkl +bHf +qkl +qkl +qkl +qkl +wGs +wGs +wGs +xvn +qkl +reO +xAV +tKS +tKS +muq +reO +wqX +hnx +sZw +cjF +iOG +gDj +gDj +gDj +oLa +wOl +tIJ +oLa +gDj +gDj +dey +dey +dey +dey +hnx +fKd +fKd +fKd +vZb +wSL +wSL +wSL +wSL +wSL +wSL +wSL +xAV +tKS +lpB +jmQ +eIa +ury +eIa +eIa +eIa +eIa +jmQ +tKS +tKS +muq +wqX +mqN +mqN +mqN +mqN +mqN +xkm +vbp +jmQ +jmQ +jmQ +bpx +jmQ +jmQ +bhp +bhp +vbZ +vbZ +bhp +xaD +bhp +onr +lYB +vbZ +vbZ +oNn +"} +(101,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nmG +nRr +vbZ +vbZ +vbZ +vbZ +jxa +hcT +wtp +tqZ +mQd +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +oFH +omD +wtp +wtp +wtp +wtp +wtp +wtp +wtp +hcT +jOA +eeo +voE +voE +voE +lfw +voE +voE +lfw +voE +voE +voE +voE +voE +lfw +voE +voE +voE +voE +voE +stl +qVR +iTX +iTX +weF +pbC +voE +voE +eeo +bht +aPn +vcC +vLw +vLw +seQ +xOI +seQ +qCK +mxN +seQ +seQ +seQ +sbC +pjK +pjK +meH +pjK +pjK +aAG +vLw +owf +mtW +vLw +lHp +jDg +jDg +uen +lgh +lgh +mpC +jPY +bDw +xdl +ybT +ckn +ckn +iVb +wfs +fKh +pBS +ckn +ybT +qLN +bDw +uKs +qkl +fRx +lUN +lUN +soL +uAb +qZQ +lUN +izl +klM +bva +qkl +qpM +qpM +qpM +qkl +qkl +llH +xAV +tKS +tKS +muq +reO +reO +hnx +lts +aNs +hnx +gDj +gDj +gDj +oLa +rbd +tou +oLa +klV +gDj +fLz +tXu +sLk +lzU +hnx +fKd +fKd +fKd +fKd +uKK +mJN +xUG +tRW +oIL +lSW +wSL +xAV +tKS +muq +jmQ +eIa +eIa +uDc +ury +eIa +eIa +jmQ +tKS +tKS +fFi +mNr +wqX +hre +dmC +oyA +snb +tFs +eIa +jmQ +ukZ +iOR +iOR +pmH +jmQ +bhp +sRY +vbZ +vbZ +vbZ +bhp +bhp +vbZ +bKx +vbZ +vbZ +oNn +"} +(102,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +wtp +vbZ +vbZ +jxa +hcT +wtp +wtp +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +rNe +xze +wtp +niz +wtp +wtp +wtp +niz +wtp +hcT +vQU +utU +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +bLO +vQU +qVR +iTX +iTX +weF +vQU +bLO +bLO +gae +vLw +aPn +vcC +vLw +pnP +hKr +uMh +seQ +qCK +qCK +qCK +qCA +seQ +poQ +ttp +pjK +pjK +pjK +pjK +iuY +vLw +vLw +vLw +vLw +lHp +jDg +jDg +uen +xTC +lgh +mpC +akK +omL +omL +ykw +cFz +mcf +riQ +wfs +dhP +mcf +ltH +ykw +omL +omL +rjd +qkl +wsT +vWS +lUN +vcY +uAb +dAO +lUN +hWS +spF +dXy +mqc +reO +reO +nmH +tOz +hre +kpV +osF +tKS +tKS +muq +tOz +nmH +hnx +bhA +nfc +bTb +gDj +gDj +gDj +oLa +oLa +oLa +oLa +lZW +gDj +gDj +gDj +hEr +gDj +mDc +fKd +fKd +fKd +fKd +uKK +hNa +xUG +uKK +eoL +qBB +aGd +xAV +tKS +muq +jmQ +jmQ +nna +jmQ +jmQ +jmQ +tgs +jmQ +tKS +tKS +tKS +fFi +kpV +osF +xkm +bhy +jCr +fNn +bxh +jmQ +vCg +kcd +iOR +ugi +jmQ +bhp +bhp +vbZ +vbZ +vbZ +xaD +xaD +vbZ +kkE +vbZ +vbZ +oNn +"} +(103,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +wtp +wtp +igM +tnO +hcT +rci +wtp +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +tzM +ucD +vvK +vvK +vvK +vvK +vvK +vvK +xze +hcT +vQU +vQU +jOA +jOA +jOA +vQU +vQU +vQU +jOA +jOA +jOA +vQU +vQU +vQU +jOA +jOA +jOA +vQU +vQU +vQU +vQU +gaj +nVC +nVC +vgF +vQU +vQU +vQU +vQU +vQU +qLd +kib +vLw +gYF +hVA +loz +seQ +qCK +qCK +qCK +elS +seQ +ine +pjK +pjK +def +pjK +pjK +pjK +uRc +vzr +qUz +seQ +gXl +uOD +bXB +uen +dXY +dXY +dXY +lbr +lbr +lbr +wfs +fKh +ckn +usc +wfs +fKh +sti +usc +wfs +wfs +wfs +wfs +qkl +qkl +jGl +wTw +qkl +uAb +cWb +lUN +lUN +vKQ +tEb +mqc +reO +reO +wqX +hre +osF +tKS +tKS +tKS +tKS +muq +wqX +hnx +hnx +dey +dey +dey +gDj +gDj +gDj +gDj +gDj +gDj +gDj +gDj +bQE +bQE +bQE +bQE +bQE +bQE +fKd +fKd +fKd +fKd +uKK +hNa +xUG +wSL +lmn +rrO +lmn +xAV +tKS +muq +jmQ +jIM +eIa +ury +jmQ +eVt +tKS +aTf +lnZ +tKS +tKS +tKS +tKS +tKS +jqk +vtS +eIa +vtS +eIa +jmQ +cqg +lem +fYH +ogP +jmQ +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +vbZ +nRr +vbZ +vbZ +oNn +"} +(104,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +igM +mQI +rlL +tnO +hcT +wtp +wtp +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +bYP +bak +bak +bak +bak +bak +bak +bak +ucD +oWT +oBJ +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +wpR +oBJ +mMD +jKZ +jKZ +bdT +oBJ +ten +ten +ten +ten +qLd +ucb +seQ +seQ +seQ +seQ +seQ +qCK +mxN +seQ +seQ +seQ +seQ +hNt +hNt +seQ +seQ +seQ +seQ +vLw +vLw +vLw +vLw +sqX +quK +awS +pPh +dXY +unC +vid +ahc +cDA +tlz +wfs +gNB +ckn +ptq +wfs +oEz +wNZ +liz +wfs +rOk +eMw +eMw +lhm +nGx +bAQ +lUN +uDN +sia +lUN +lUN +lUN +wQq +dJb +mqc +reO +wqX +tOz +xAV +tKS +nTq +skh +tKS +tKS +muq +wqX +hnx +nWI +cCA +frq +ahM +gDj +gDj +cCx +nfc +gDj +owW +owW +gDj +gAz +irh +irh +reF +irh +bQE +fKd +fKd +fKd +fKd +uKK +hNa +xUG +wDm +qgB +dpq +ylO +xAV +tKS +muq +jmQ +eIa +eIa +uDc +jmQ +unG +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +xkm +kCo +twB +eIa +jwc +jmQ +pnA +job +sVh +fGi +jmQ +bhp +sRY +vbZ +vbZ +vbZ +bhp +sRY +vbZ +nRr +vbZ +vbZ +oNn +"} +(105,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +wtp +wtp +tnO +hcT +wtp +wtp +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +lAN +bak +bak +bak +bak +bak +bak +hnH +hwO +xSz +rhj +bYP +bak +bak +bak +bak +bak +kNY +bak +bak +ucD +wKk +udv +fKk +fKk +fKk +fKk +fKk +fKk +fKk +fKk +fKk +fKk +fKk +fKk +eAV +oea +wpR +wpR +oea +wpR +wdJ +mMD +jKZ +jKZ +bdT +wdJ +wpR +wpR +wpR +hWa +dDA +ucb +ucb +ucb +ucb +ucb +sRs +ucb +ucb +sRs +ucb +wQk +ucb +ucb +ucb +sRs +bYG +tAM +mwM +qLd +gZi +dMB +dMB +wcr +pxm +qkW +nVG +iIm +vid +vid +vid +fCt +vtp +wfs +wfs +oLx +wfs +wfs +wfs +oLx +wfs +wfs +iXM +mSm +okH +jEt +hVN +bZo +lUN +ttw +lUN +hWS +lUN +lUN +spF +dXy +mqc +reO +reO +tXr +tXr +nBZ +tXr +osF +tKS +tKS +muq +tOz +hnx +cHY +nfc +nfc +nfc +gDj +gDj +cCx +nfc +gDj +owW +owW +gDj +bQE +sOD +dLJ +vnJ +irh +bQE +fKd +fKd +fKd +fKd +uKK +mLG +xUG +uKK +arq +pRb +wSL +xAV +tKS +muq +jmQ +yeA +ouK +yeA +jmQ +xnR +cpa +uAV +tKS +mqN +mqN +mqN +mqN +mqN +mqN +mqN +mqN +xkm +jqk +jmQ +jmQ +uzL +jmQ +jmQ +jmQ +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +vbZ +nRr +vbZ +vbZ +oNn +"} +(106,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +dsE +vbZ +wtp +wtp +igM +jxa +hcT +wtp +wtp +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +bYP +bak +bak +bak +bak +bak +bak +bak +bak +bak +vBJ +mMD +qhh +fBL +lAp +xZa +lAp +vET +lAp +xZa +lAp +xZa +lAp +anx +bdT +wpR +wpR +wpR +wpR +wpR +wpR +mMD +jKZ +jKZ +bdT +wpR +wpR +wpR +oea +hWa +dtE +veS +ucb +ucb +ucb +ucb +viA +ucb +ucb +wqB +ucb +ucb +viA +ucb +ucb +dLV +gwH +iRN +mIF +dDA +gZi +nqj +dMB +wcr +cas +cZg +nVG +iIm +vid +vid +eZO +oal +rAr +lbr +nrA +kYG +itg +hXl +sNu +kYG +iSa +eMw +eWC +beW +uIF +qkl +qkl +jGl +kvy +qkl +uAb +sRE +lUN +ick +vKQ +qyv +qkl +reO +reO +tXr +idm +xYg +fJQ +tKS +tKS +tKS +muq +reO +hnx +dey +dey +rDY +nfc +gDj +gDj +cCx +nfc +gDj +owW +owW +gDj +hII +irh +vaW +uVJ +hcv +bQE +fKd +fKd +fKd +fKd +uKK +kAk +xYB +wSL +wSL +wSL +wSL +xAV +tKS +muq +jmQ +jmQ +jmQ +jmQ +jmQ +jmQ +jmQ +tKS +tKS +mqN +aWJ +bZX +mqN +eIa +eIa +eIa +mqN +qYc +sEb +xkm +xAV +tKS +tKS +ajX +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +nRr +vbZ +vbZ +oNn +"} +(107,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +dsE +vbZ +vbZ +wtp +vbZ +jxa +hcT +wtp +rci +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +kZu +bBT +kHS +kHS +kHS +kHS +fkA +xRd +bak +bak +vBJ +mMD +dSO +iME +jKZ +iME +jKZ +iME +rAk +sRV +jKZ +iME +jKZ +iME +bdT +oea +udv +rcz +oBJ +oBJ +oBJ +dgw +jKZ +jKZ +bdT +oea +wpR +wpR +wpR +bAn +qLd +dDA +qLd +bYG +rjL +bYG +bYG +xZd +dLV +wqB +wqB +ucb +ucb +ucb +ucb +ucb +gwH +mwM +ibP +dtE +lnV +dMB +dMB +wcr +iaK +xmf +xmf +iIm +eZO +vid +oal +guk +oal +tzO +kYG +mSm +kYG +kYG +kYG +mSm +kYG +beW +kYG +beW +mfT +qkl +ykH +bAQ +lUN +lnr +uAb +qkl +hdR +qkl +hdR +qkl +qkl +reO +tOz +tXr +clL +ycl +rLK +tKS +tKS +tKS +muq +llH +hnx +cBu +edN +gDj +gDj +gDj +gDj +gDj +gDj +gDj +gDj +gDj +gDj +hII +sOD +fjZ +ejE +irh +bQE +fKd +fKd +fKd +fKd +uKK +hNa +xUG +odG +xUG +qql +wSL +xAV +tKS +muq +jmQ +ugV +uwC +tju +uTi +tju +aST +tKS +tKS +mqN +nqJ +feG +iVG +eIa +ouK +ouK +mqN +mwD +bwH +raS +xAV +tKS +tKS +ajX +bhp +bhp +xaD +bhp +bhp +sRY +bhp +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(108,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +wtp +rlL +jxa +hcT +wtp +wtp +fSE +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +gmP +cgP +cgP +cgP +jni +jni +knw +bak +bak +xRd +vBJ +mMD +dSO +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +iME +bdT +wpR +mMD +jKZ +lUS +oJv +laO +jKZ +jKZ +jKZ +bdT +wpR +wpR +wpR +wpR +jzF +hWa +hWa +qLd +uEX +dkP +rnb +bYG +nSq +ucb +wqB +wqB +wqB +dLV +ucb +ucb +ucb +gwH +tUp +bOi +dDA +gZi +nqj +nqj +wcr +nVG +iHU +nVG +iIm +vid +vid +lSp +kNe +ngu +lbr +ulC +pXv +uBY +kUi +xhO +pXv +ulC +uBY +eid +beW +pwF +qkl +aRl +lUN +lUN +dZn +uAb +idu +lUN +qkl +lUN +pRr +qkl +reO +reO +tXr +jHq +nSs +ogD +tKS +tKS +tKS +muq +reO +hnx +qab +neb +gDj +gDj +gDj +gDj +jBL +eto +cpK +hnx +hnx +xrK +bQE +bQE +bQE +bQE +bQE +bQE +fKd +fKd +fKd +fKd +uKK +hNa +xUG +uKK +arq +tRt +wSL +osF +tKS +lpB +jmQ +ftO +ffQ +mgn +ueN +mgn +sLp +tKS +tKS +mqN +mqN +mqN +mqN +eIa +eIa +eIa +mqN +mqN +mqN +mqN +wJb +tKS +tKS +ajX +bhp +xaD +bhp +xaD +bhp +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(109,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +jqz +vbZ +vbZ +wtp +tnO +hcT +wtp +iHb +wxf +xSz +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +bak +rhj +mde +nsh +fEV +rBe +tmr +jni +pEj +bak +fZU +bak +vBJ +mMD +dSO +jKZ +uCX +uCX +uCX +uCX +uCX +uCX +uCX +ssw +jKZ +iME +bdT +oea +mMD +aYf +oBJ +oBJ +oBJ +pod +jKZ +jKZ +bdT +wpR +wpR +oea +wpR +wpR +wpR +hWa +qLd +bEO +gZy +hnB +bYG +bZK +ucb +mnt +vim +wqB +wqB +ucb +ucb +ucb +bYG +yic +mwM +rDQ +gZi +dMB +dMB +wcr +sQN +xmf +ksh +dXY +ndn +vid +vid +jsn +dBR +lbr +qmk +qmk +qmk +jPs +jPs +jPs +jPs +jPs +aAk +beW +oTw +qkl +lDU +hVN +fAA +pYZ +uAb +jJN +fZK +qkl +orQ +pmD +qkl +reO +reO +tXr +tXr +tXr +tXr +skh +tKS +tKS +muq +reO +hnx +rtD +wrN +gDj +sBY +gFP +gDj +dey +dey +dey +hnx +nfg +nfg +trE +bbm +lSL +gDj +hnx +fKd +fKd +fKd +fKd +fKd +uKK +hNa +xUG +wSL +wSL +wSL +wSL +tKS +tKS +muq +jmQ +oSS +uwC +tju +uTi +tju +aST +tKS +tKS +mqN +eIa +eIa +lsi +eIa +eIa +eIa +lsi +eIa +eIa +mqN +xAV +tKS +tKS +jmQ +bhp +sRY +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(110,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +kkX +qvv +had +vbZ +mQI +tnO +hcT +wtp +pEj +num +wUA +beC +vbr +vbr +vbr +vbr +vbr +vbr +vbr +vbr +beC +vbr +vbr +vbr +vbr +vbr +vbr +vbr +vbr +beC +ebw +mde +uaw +mRy +osu +oHR +jni +pEj +nha +nha +fZU +oBJ +bay +jKZ +jKZ +eXg +hCM +smp +abd +smp +smp +hCM +pod +jKZ +jKZ +bdT +dWI +mMD +bdT +wpR +wpR +dWI +mMD +jKZ +jsF +bdT +dWI +wpR +wpR +wpR +dWI +wpR +vaZ +qLd +qLd +qLd +qLd +bYG +nBa +ucb +mnt +mnt +wqB +wqB +wqB +ucb +hJX +qLd +qLd +qLd +qLd +qLd +rhx +woq +wcr +nVG +nVG +ejw +dXY +dXY +dXY +lbr +lbr +lbr +lbr +kdJ +gcA +nol +jPs +jRW +iTd +bHZ +jPs +kLN +beW +ski +qkl +qkl +qkl +qkl +qkl +uAb +qkl +qkl +qkl +qkl +qkl +qkl +reO +wqX +reO +reO +reO +reO +xAV +tKS +tKS +fFi +uGi +hnx +kZP +tGc +gDj +iSL +yfP +efb +dey +mpI +vTn +hnx +nfg +oQz +iOG +cXW +bbm +gDj +hnx +fKd +fKd +fKd +fKd +fKd +uKK +hNa +xUG +nNA +xUG +qql +wSL +tKS +tKS +muq +jmQ +pYO +ffQ +luH +ffQ +luH +sLp +tKS +tKS +mqN +eIa +eIa +mqN +eIa +eIa +eIa +mqN +eIa +ktB +mqN +xAV +tKS +eAB +jmQ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(111,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +sQZ +wtp +wtp +tnO +hcT +wtp +pEj +snl +nkO +eWE +eKA +eKA +eKA +eKA +eKA +eKA +fJa +nkO +ijJ +nkO +eWE +eKA +eKA +eKA +eKA +pLW +rtG +rMt +iEI +mde +udr +xat +lnK +sfW +jni +sXD +jug +wmT +xQG +xiY +bsa +jKZ +jKZ +tfl +rcz +rcz +rcz +rcz +rcz +rcz +dgw +jKZ +jKZ +tfl +rcz +dgw +tfl +rcz +rcz +rcz +dgw +jKZ +oNw +xXb +rcz +rcz +rcz +rcz +rcz +rcz +naR +qLd +qky +kmv +qLd +nYE +ucb +viA +xAk +diR +wqB +drI +ixE +ucb +ucb +nYE +qLd +qky +kmv +qLd +dnU +dnU +dDz +nVG +xmf +aPh +dnU +dnU +jPs +qFV +qFV +qmk +tje +tJt +qtW +wVU +jAt +fgJ +iuK +lgw +jPs +nYW +kYG +vxv +rdD +fnZ +mgG +oau +ksa +ttJ +reO +reO +reO +wqX +reO +hXK +reO +nmH +wqX +reO +reO +hre +osF +tKS +tKS +tKS +muq +hnx +vrI +otR +gDj +mjo +rEo +gDj +ugd +xqV +pnx +hnx +mBx +oQz +iOG +cyn +gDj +jwz +hnx +fKd +fKd +fKd +fKd +fKd +uKK +hNa +xUG +uKK +arq +tRt +wSL +tKS +tKS +jmQ +jmQ +jmQ +jmQ +jmQ +kBr +uwC +jmQ +tKS +tKS +mqN +jNJ +eIa +mqN +mqN +tgs +mqN +mqN +eIa +yeA +mqN +xAV +tKS +tKS +jmQ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(112,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +iEc +nRr +nRr +vbZ +vbZ +vbZ +mQI +igM +jxa +hcT +wtp +tqZ +kHS +kHS +jMx +wtp +wtp +wtp +wtp +wtp +wtp +tqZ +kHS +kHS +kHS +omD +wtp +wtp +wtp +wtp +jJZ +rMt +rMt +fmh +jni +umk +xwT +uas +bFb +jni +pay +wlk +bTR +xlf +wqp +ibS +jKZ +aSI +uMM +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +ihT +ucb +ucb +ihT +ucb +ucb +ucb +kpw +wqB +twt +qUr +pdI +ucb +ucb +ucb +ihT +ucb +ucb +ihT +nVG +nVG +nVG +nVG +nVG +nVG +nVG +xmf +ata +hFe +iuK +ata +iuK +hFe +iuK +wVU +puz +uMB +iuK +iuK +utg +kLN +mSm +oJS +dzk +beW +dAB +dAB +sDC +ttJ +reO +wqX +nmH +reO +reO +hXK +reO +reO +jmQ +cvL +cvL +cTy +unv +tKS +tKS +tKS +muq +hnx +psr +hSn +nrZ +ksM +mze +gDj +dey +dey +dey +hnx +nfg +oQz +iOG +aER +eMu +mVr +hnx +fKd +fKd +fKd +fKd +fKd +wSL +xUG +nvb +wSL +wSL +wSL +wSL +tKS +tKS +jmQ +ouK +ouK +eIa +jmQ +nhl +ffQ +kwm +tKS +tKS +mqN +mqN +mqN +mqN +mCZ +tKS +tKS +mqN +mqN +mqN +mqN +osF +tKS +tKS +ajX +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(113,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +iEc +iEc +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +iXK +aSC +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +eOb +ryB +keF +qeO +jov +rJk +adv +dxj +dxj +brH +nhs +jni +ryu +alT +xYN +bKv +ueg +tEK +aSI +jKZ +jKZ +jKZ +dqS +aSI +jKZ +jKZ +aSI +jKZ +pLH +uMM +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +rJz +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +beX +qLd +dLV +vjH +qLd +fCT +ucb +ucb +dgU +idp +qLd +mnt +hKz +ucb +ucb +fUo +qLd +ohz +ucb +qLd +jxh +nVG +nVG +nVG +nVG +nVG +nVG +cZg +qnX +iuK +dNZ +qmk +vfa +iuK +bWp +wVU +wBK +dUa +xxO +xGh +jPs +kLN +kYG +dxH +rdD +ifp +ifp +ifp +lrM +ttJ +reO +reO +reO +reO +reO +hXK +reO +tOz +cvL +iNV +iNV +iNV +cNM +tKS +tKS +tKS +muq +hnx +jRE +otR +gDj +gDj +gDj +gDj +ugd +ffu +vOi +hnx +hnx +hnx +hnx +hnx +hnx +hnx +hnx +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +gAN +tKS +tKS +jmQ +ouK +eIa +eIa +jmQ +jmQ +jmQ +jmQ +tKS +tKS +tKS +fFi +ofg +avJ +osF +tKS +tKS +fFi +mHx +osF +tKS +tKS +tKS +tKS +ajX +bhp +bhp +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(114,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +iEc +vbZ +nRr +vbZ +vbZ +vbZ +dJq +ryB +iXK +aSC +ryB +oXS +env +env +otz +ryB +ryB +ryB +eOb +ryB +ryB +oXS +env +env +env +otz +ryB +ryB +ryB +ryB +keF +caJ +caJ +bnk +jni +nLt +eKG +bUv +ivd +jni +kym +rAw +bit +vwk +eHH +kQK +lev +jKZ +aSI +pLH +jKZ +jKZ +jKZ +jKZ +dqS +jKZ +aSI +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +ftT +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +ihT +ucb +ucb +ihT +ucb +ucb +ucb +gGr +fig +wqB +jQG +kqd +ucb +ucb +ucb +ihT +ucb +dLV +ihT +nVG +nVG +nVG +nVG +nVG +nVG +nVG +xmf +ata +hFe +iuK +ata +lhQ +hFe +qtW +iFS +jPs +jPs +jPs +jPs +jPs +iXM +beW +iAP +xbu +xbu +xbu +xbu +xbu +xbu +reO +reO +cOG +cOG +cOG +cOG +reO +reO +cvL +nRl +nRl +nRl +cNM +tKS +tKS +tKS +muq +hnx +gCl +yku +gDj +gDj +gDj +lnk +dey +mpI +evf +hnx +iPS +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +gAN +tKS +tKS +jmQ +ouK +eIa +eIa +iVG +fhn +xWE +jmQ +oPO +tKS +tKS +tKS +fFi +osF +tKS +tKS +tKS +tKS +tKS +tKS +nTq +xAv +tCB +xAv +oiw +bhp +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(115,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +ryB +ryB +ccg +uqT +aSC +ryB +dkO +vcs +cFC +ehY +qSN +qSN +dGd +qSN +qSN +qSN +msd +cFC +pzp +xiF +ehY +qSN +dGd +qSN +qSN +kOK +rtv +caJ +gMY +mde +fTT +wZT +dxj +jgK +jni +qjC +cyu +sfd +pqR +wWN +smp +smp +smp +smp +smp +smp +yla +yla +smp +vju +pod +plu +eXg +vzv +msy +msy +msy +vzv +pod +jKZ +jKZ +jKZ +jKZ +eXg +smp +smp +smp +smp +smp +smp +hNq +qLd +eXI +izY +qLd +nYE +ucb +ucb +xAk +fmW +wqB +fMP +ixE +ucb +ucb +nYE +qLd +eXI +izY +qLd +hDw +hDw +gci +nVG +nVG +rsN +hDw +hDw +jPs +rrP +rrP +qmk +pMq +iuK +iuK +aci +jPs +gGi +jMF +cRi +jPs +kLN +kYG +jIE +xbu +uua +gEs +wMg +xbu +reO +reO +reO +cOG +oAG +vUw +cOG +reO +reO +jmQ +cvL +cvL +wvP +vDd +tKS +tKS +tKS +muq +hnx +hnx +hnx +hnx +gDj +uqp +hnx +hnx +hnx +hnx +hnx +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +gAN +tKS +tKS +jmQ +yeA +eIa +eIa +jmQ +eJH +fhn +jmQ +skh +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +kcb +kcb +kcb +kcb +kcb +bhp +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(116,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +ryB +ccg +ryB +uqT +aSC +ryB +dkO +lkY +orP +rKW +rau +rau +rau +rau +rau +rau +rau +rau +rKW +rau +rau +rau +rau +rau +rau +rau +rau +rKW +skK +mde +luG +wjn +oai +wWJ +adv +dkO +ojh +fmY +wFd +kLG +dWI +oea +wpR +wpR +dWI +oBJ +gNe +hah +rko +oBJ +oBJ +lev +nQi +vzv +hte +gUX +gUX +vzv +mMD +jKZ +jKZ +jKZ +jKZ +bdT +dWI +wpR +oea +wpR +dWI +wpR +vaZ +qLd +qLd +qLd +qLd +bYG +rWX +ucb +mnt +mnt +wqB +wqB +wqB +ucb +wHR +qLd +qLd +qLd +qLd +qLd +rhx +woq +wcr +nVG +nVG +ejw +jPs +jPs +jPs +qmk +qmk +qmk +bBb +sCh +hFe +xJF +jPs +xBM +kby +iuK +ibG +kLN +beW +beW +cRr +fFw +ftw +qsf +rvD +reO +reO +reO +cOG +aOo +mXV +cOG +ghA +reO +reO +reO +reO +ola +skh +tKS +tKS +tKS +muq +wqX +gCK +dJt +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +gAN +tKS +tKS +jmQ +jmQ +tgs +jmQ +jmQ +jmQ +jmQ +jmQ +tnm +skh +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +kcb +xDE +rRx +nTU +kcb +bhp +bhp +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +ozq +vbZ +vbZ +oNn +"} +(117,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +ryB +dJq +uqT +aSC +ryB +ezv +fAJ +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +mde +nsh +wRy +poz +gdT +jni +xfb +qPA +qPA +qPA +vBJ +wpR +wpR +wpR +oea +wpR +oBJ +kKs +jSC +prX +wcY +oBJ +hcD +tfl +vzv +yiC +pKw +gUX +vzv +rcQ +pod +jKZ +jKZ +jKZ +bdT +wpR +wpR +wpR +wpR +wpR +oea +hWa +qLd +dnX +coA +fJm +bYG +jPF +ucb +mnt +wqB +wqB +wqB +ucb +ucb +ucb +mwM +qGP +mwM +qLd +gZi +dMB +dMB +wcr +nVG +nVG +ejw +vRL +qkB +qkB +bew +qkB +qmk +kVe +iuK +tSE +bon +jPs +agz +iug +uXU +jPs +aAk +beW +dxH +xbu +mEF +fFw +nPJ +xbu +reO +wqX +reO +cOG +cOG +dce +cOG +cOG +cOG +cOG +cOG +cOG +reO +xAV +tKS +tKS +nTq +ttB +reO +gCK +dJt +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +guM +mtE +mtE +mtE +guM +xZR +guM +fKd +fKd +fKd +fKd +fKd +gAN +tKS +tKS +tKS +lKp +nRl +nRl +nRl +nRl +cNM +ajX +tOz +lGn +xAv +xAv +xAv +xAv +skh +tKS +tKS +tKS +tKS +tKS +lau +wSV +tEc +paW +kcb +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(118,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +ryB +iXK +aSC +ryB +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +gmP +ezZ +nFY +ezZ +jni +jni +xDf +fmY +qPA +qPA +vBJ +wpR +wpR +wpR +wpR +wpR +oBJ +fNq +ibz +sSj +ssC +sGZ +jKZ +jKZ +inh +gUX +gUX +njt +vzv +wpR +mMD +jKZ +jKZ +jKZ +tfl +eAV +oea +wpR +wpR +jzF +hWa +hWa +qLd +dnX +hau +fJm +bYG +bZK +ucb +wqB +wqB +wqB +ucb +ucb +ucb +ucb +gwH +gwH +gwH +dDA +gZi +nqj +dMB +wcr +nVG +nVG +ejw +vRL +uZZ +lRF +tYR +lRF +gmv +gGO +iuK +iuK +aci +jPs +jPs +teD +jPs +jPs +nln +gDT +nPi +xbu +kNP +fFw +qsf +rvD +reO +reO +wqX +cOG +pVf +fMx +fMx +gAm +vzg +fCC +tno +xSj +tOz +xAV +tKS +tKS +muq +llH +reO +gCK +dJt +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +fKd +guM +guM +mtE +guM +guM +tRp +qkD +htv +mXD +gcU +guM +guM +mtE +guM +guM +fKd +gAN +tKS +tKS +tKS +lKp +nRl +nRl +nRl +nRl +cNM +ajX +wtd +llH +pQH +adG +wTk +xKl +osF +tKS +tKS +tKS +tKS +tKS +lau +wSV +qgZ +spt +kcb +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(119,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +ccg +iXK +aSC +ryB +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +pfJ +evu +env +env +env +env +vZw +qPA +qPA +qPA +vBJ +wpR +wpR +wpR +hWa +wpR +oBJ +twG +aDv +grV +tDt +oBJ +bQd +eXg +vzv +iqw +gUX +gUX +vzv +wpR +rcQ +pod +jKZ +jKZ +jKZ +bdT +wpR +wpR +oea +vaZ +qLd +dDA +qLd +bYG +cdW +bYG +bYG +nYE +ucb +wqB +wqB +ucb +ucb +dLV +ucb +ucb +gxh +iAw +mwM +dDA +gZi +dMB +dMB +wcr +nVG +nVG +ejw +vRL +qcq +qkB +lRF +qkB +qeg +gCG +hFe +iuK +bSP +rGT +sDY +nWb +dXd +rGT +tJt +hFe +wVU +cTc +xoS +fFw +nPJ +xbu +reO +wqX +reO +cOG +fUK +fMx +fMx +fCC +ejp +lpQ +vzg +xSj +reO +xAV +tKS +tKS +muq +reO +tOz +gCK +dJt +fKd +fKd +fKd +nvE +bOS +fKd +fKd +fKd +guM +guM +guM +kxq +lGb +xhr +lSd +nsR +gcU +gcU +gcU +gcU +lSd +cSY +lGb +xhr +guM +guM +guM +skh +tKS +nTq +mqN +mqN +mqN +mqN +mqN +mqN +mqN +mqN +mqN +mqN +cvL +cvL +cTy +cwf +tKS +tKS +tKS +tKS +tKS +kcb +nvf +geO +pgg +kcb +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(120,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +iEc +vbZ +vbZ +vbZ +ryB +iXK +aSC +ryB +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +vBJ +wpR +oea +wpR +wpR +wpR +oBJ +vzv +vzv +hzA +jxi +iOb +jKZ +nQi +vzv +vzv +vzv +vzv +vzv +blw +oea +rcQ +pod +jKZ +jKZ +bdT +oea +wpR +wpR +hWa +dDA +nYE +ucb +rUu +ucb +ucb +ucb +ucb +ucb +wqB +ucb +ucb +ucb +ucb +ucb +ucb +gwH +gwH +gwH +dDA +gZi +dMB +nqj +wcr +nVG +nVG +ejw +vRL +cqe +qkB +qkB +esb +llX +xSG +iuK +hFe +iuK +hFe +iuK +hFe +iuK +iuK +hFe +iuK +nTH +qkY +xoS +ftw +qsf +rvD +reO +reO +reO +cOG +fUK +sNL +fMx +tTT +vzg +gAm +vzg +xSj +reO +xAV +tKS +tKS +muq +reO +reO +pWg +pWg +xPb +rDA +pWg +pWg +pWg +pWg +fKd +fKd +guM +tTS +lka +gcU +hDQ +gcU +ldT +gcU +gcU +gcU +gcU +gcU +ldT +gcU +hDQ +gcU +lka +lxu +guM +xAV +tKS +fFi +mqN +eIa +eIa +eIa +eIa +mqN +eIa +eIa +eIa +mqN +xDw +nRl +nRl +pgt +tKS +tKS +kcb +kcb +kcb +kcb +xzZ +kcb +kcb +kcb +kcb +bhp +bhp +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(121,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +ryB +ryB +uqT +aSC +ryB +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +oKU +qPA +qPA +qPA +qPA +qPA +qPA +liP +orP +euw +bjQ +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +fFp +hdA +wpR +wpR +wpR +wpR +oea +oBJ +xvh +vzv +hTw +nyF +iOb +jKZ +feV +rcz +dgw +edY +toR +vBJ +blw +wpR +gXq +mMD +jKZ +jKZ +bdT +gXq +wpR +wpR +hWa +dDA +ucb +ucb +eXV +ucb +ucb +ucb +ucb +ucb +ucb +ucb +rWX +nGi +ucb +ucb +ucb +fpV +ljz +mwM +qLd +gZi +dMB +dMB +wcr +nVG +nVG +ejw +vRL +qkB +qgQ +qkB +aMF +qmk +wmM +uXU +nAQ +uXU +oke +iuK +rJr +mPG +wsa +iuK +srg +dqf +cTc +kmr +fFw +dAh +xbu +reO +reO +reO +cOG +tEA +qVL +fMx +fMx +fkj +fMx +fMx +xSj +reO +xAV +tKS +tKS +muq +reO +reO +pWg +afL +xPb +xPb +xPb +xPb +hmL +pWg +fKd +fKd +guM +moH +lSd +vZr +jtg +jPf +lSd +awm +mec +mec +mec +gcU +lSd +rsY +pyP +usY +lSd +moH +guM +xAV +tKS +tKS +ghi +eIa +eIa +eIa +eIa +mqN +eIa +eIa +eIa +mqN +xDw +nRl +nRl +cNM +tKS +tKS +kcb +xJx +xUw +kcb +hCq +pyO +pzw +iFQ +kcb +bhp +bhp +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(122,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +jrT +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +ryB +ryB +uqT +aSC +eOb +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +mkT +kLl +oBJ +wpR +wpR +wpR +wpR +wpR +oBJ +sgw +lce +grV +jkv +oBJ +jKZ +jKZ +jKZ +jKZ +jKZ +jKZ +vBJ +cTF +ten +oBJ +mMD +jKZ +jKZ +bdT +oBJ +ten +ten +ten +qLd +ohz +qLd +bYG +cdW +bYG +bYG +jzo +ijx +lMJ +lMJ +lMJ +lMJ +cRp +wZM +lxA +lMJ +lMJ +lMJ +jOX +jOX +jOX +jOX +dVf +nVG +nVG +ejw +jPs +jPs +whe +lRF +qkB +qmk +gmv +gmv +jGx +jGx +fMN +isM +jGx +jGx +jGx +isM +fMN +jGx +jGx +jGx +rIG +jGx +xbu +hXK +hXK +wQK +cOG +cOG +xSj +xSj +xSj +cOG +jDl +cOG +cOG +kpV +osF +tKS +tKS +muq +tOz +nmH +pWg +pQp +xPb +xPb +qgS +xPb +tgz +pWg +fKd +fKd +guM +lSd +lSd +lSd +lSd +lSd +lSd +tql +eKv +qlW +pGl +xDL +lSd +lSd +lSd +lSd +lSd +lSd +guM +xAV +tKS +tKS +mqN +eIa +eIa +eIa +eIa +lsi +eIa +eIa +yeA +mqN +nRl +nRl +nRl +cNM +tKS +tKS +kcb +hlB +lag +jlS +wSV +wSV +wSV +wSV +ukF +bhp +bhp +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(123,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +jrT +vWV +vbZ +vbZ +sRY +bhp +vbZ +vbZ +nRr +vWz +vbZ +ccg +dJq +uqT +aSC +ryB +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +eZk +mkT +kKv +kKv +kKv +kKv +kKv +kKv +ezn +aSC +oBJ +oBJ +eni +eni +eni +eni +oBJ +oBJ +oBJ +oBJ +oBJ +oBJ +suL +suL +suL +suL +suL +suL +oBJ +oBJ +oBJ +oBJ +qyT +dla +dla +jIm +oBJ +oBJ +oBJ +qLd +qLd +kib +qLd +dnX +hau +fJm +bYG +jzo +jzo +jzo +gHx +ozz +sjR +sjR +sjR +sjR +sjR +qtB +uda +lMJ +rKY +rKY +jOX +wcr +nVG +nVG +ejw +nqj +vRL +lRF +qkB +qkB +qkB +qkB +xjy +jGx +dfC +jyP +fFw +eRc +jGx +aRZ +fFw +pnB +tff +jGx +dAE +fFw +veP +xbu +reO +hre +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +muq +wqX +reO +pWg +daf +xPb +xPb +qOg +xPb +tFK +pWg +fKd +fKd +guM +bNp +lSd +upo +awJ +vYd +lSd +oXu +aLK +aLK +aLK +gcU +lSd +tmd +hbK +fxS +lSd +cVk +guM +xAV +tKS +tKS +mqN +mqN +mqN +nir +mqN +mqN +nTC +nTC +mqN +mqN +nRl +nRl +nRl +cNM +tKS +tKS +kcb +kcb +lau +kcb +saC +wSV +iYV +pNh +kcb +bhp +vbZ +vbZ +vwM +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(124,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vWV +vbZ +vbZ +jrT +kkE +kkE +kkE +vbZ +vbZ +nRr +vbZ +ryB +ryB +iXK +aSC +ryB +ryB +gCS +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +cKK +ezn +ryB +aeX +ryB +ryB +ryB +aeX +ryB +aSC +iXK +bhp +bhp +bhp +bhp +bhp +rOJ +cqA +oUX +oUX +oUX +rYQ +wGf +gvP +sId +fZL +sId +sId +sId +sId +sId +oBJ +oUN +kjR +kjR +dWf +oBJ +sId +gfx +qLd +wPp +bWu +qLd +enM +iiU +fJm +bYG +jzo +jzo +pFn +lIu +lMJ +sjR +sjR +sjR +sjR +sjR +sjR +sjR +oYD +sjR +qwn +jOX +wcr +nVG +nVG +ejw +dMB +vRL +rzi +qkB +lRF +qkB +qkB +dAK +jGx +bxZ +fFw +fFw +qsf +jGx +bxZ +fFw +fFw +qsf +jGx +rKc +wDR +xKS +xbu +hre +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +nTq +xAv +xAv +xAv +skh +tKS +tKS +muq +reO +reO +pWg +jqK +gPw +dHV +sAD +xPb +fVf +pWg +dGK +dGK +guM +tTS +lka +gcU +rOo +gcU +ldT +gcU +gcU +gcU +gcU +gcU +ldT +gcU +rOo +gcU +lka +lxu +guM +xAV +tKS +tKS +tKS +mqN +qYc +fhn +mqN +iNV +nRl +nRl +nRl +nRl +nRl +nRl +nRl +cNM +tKS +tKS +fFi +ofg +tOz +kcb +owi +geO +xTq +wSV +oxn +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(125,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vWV +fEw +rnp +mEr +dsE +vbZ +nRr +vbZ +vbZ +vbZ +iXK +aSC +ryB +oXS +vOV +euw +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +qPA +bjQ +vUQ +otz +ryB +ryB +ryB +ryB +ryB +ryB +ryB +aSC +uqT +bhp +bhp +bhp +bhp +bhp +rOJ +cqA +oUX +oUX +oUX +rYQ +kjR +wGf +bDe +bDe +bDe +alj +sId +jhF +gfx +wdJ +oUN +kjR +kjR +dWf +wdJ +sId +sId +vnz +wPp +bWu +qLd +qLd +bYG +bYG +bYG +uqq +mGD +lMJ +lMJ +lMJ +vsi +aFJ +duB +aYL +vgw +kjD +kjD +lMJ +hGK +kMq +jOX +wcr +nVG +nVG +ejw +utr +dWy +esb +lRF +tYR +sBN +qkB +gcC +jGx +idK +fFw +fFw +pgq +jGx +idK +fFw +fFw +pgq +xbu +xbu +xbu +xbu +xbu +osF +tKS +tKS +mqN +mqN +mqN +tgs +mqN +mqN +mqN +mqN +reO +llH +xAV +tKS +tKS +fFi +uGi +tOz +pWg +pWg +pWg +pWg +pWg +pWg +pWg +pWg +lpP +lpP +guM +guM +guM +kxq +vvD +xhr +lSd +gcU +bYc +gcU +hmF +gcU +lSd +cSY +vvD +xhr +guM +guM +guM +xAV +tKS +tKS +tKS +mqN +fhn +fhn +mqN +nRl +nRl +nRl +nRl +nRl +nRl +nRl +nRl +pgt +tKS +tKS +tKS +fFi +kpV +kcb +kcb +kcb +xzZ +kcb +kcb +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(126,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +fSq +mEr +dsE +vbZ +nRr +vbZ +vbZ +ryB +iXK +aSC +ryB +dkO +lkY +liP +cMa +tAJ +tAJ +tAJ +tAJ +tAJ +tAJ +tAJ +tAJ +cMa +tAJ +tAJ +tAJ +tAJ +tAJ +tAJ +tAJ +tAJ +cMa +kBo +eZk +cbn +ryB +ryB +ryB +ryB +ryB +ryB +ryB +aSC +uqT +bhp +bhp +bhp +sRY +bhp +rOJ +cqA +oUX +oUX +oUX +rYQ +kjR +kjR +kjR +kjR +kjR +dWf +jhF +siU +sId +dak +fzi +kjR +kjR +dWf +sId +gfx +sId +vnz +wPp +bWu +oMd +jOX +ibx +sHw +edL +uqq +uqq +eiU +ogk +lMJ +lMJ +lMJ +lMJ +lMJ +lMJ +lMJ +lMJ +lMJ +lMJ +lMJ +jOX +dVf +nVG +nVG +ejw +woq +vRL +qkB +qkB +lRF +ppX +qkB +cmC +jGx +vut +lqn +fYB +dwm +jGx +vut +lqn +fYB +dwm +xbu +bOm +itZ +nXZ +nuf +tKS +tKS +tKS +mqN +eIa +eIa +eIa +mqN +qPc +aqt +mqN +reO +reO +xAV +tKS +tKS +tKS +fFi +sWS +reO +tOz +nmH +reO +llH +wqX +hre +kpV +kpV +uGi +llH +tOz +guM +guM +mtE +guM +lSd +lSd +lSd +hzi +lSd +lSd +lSd +guM +mtE +guM +guM +llH +hre +osF +tKS +tKS +tKS +mqN +mqN +mqN +mqN +cvL +cvL +cvL +cvL +cvL +cvL +cvL +cvL +cTy +skh +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +jmQ +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(127,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nwr +qtg +gKh +mEr +dsE +vbZ +nRr +vbZ +ryB +ryB +uqT +aSC +ryB +dkO +vcs +fLh +sHq +wxk +wxk +wxk +wxk +wxk +wxk +bTZ +fLh +puh +fLh +sHq +wxk +wxk +wxk +wxk +wxk +wxk +bTZ +lzd +vcs +cbn +ryB +ryB +ryB +wNA +ryB +ryB +ryB +aSC +uqT +bhp +bhp +sRY +gUi +jat +jat +jat +jat +jat +jat +jat +jat +jat +jat +jat +kjR +dWf +gfx +ktt +jhF +oUN +kjR +kjR +kjR +dWf +jhF +sId +siU +vnz +wPp +hGB +bWu +hDm +uqq +uqq +uqq +uqq +uqq +uqq +uqq +eYt +lMJ +jmk +sjR +gBx +sjR +sjR +vgw +lMJ +jfh +bfH +jOX +wcr +nVG +nVG +xfq +dnU +jPs +jPs +jPs +jPs +jPs +jPs +jPs +xbu +xbu +xbu +rvD +xbu +xbu +xbu +xbu +rvD +xbu +xbu +mBT +mBT +juX +cMh +tKS +tKS +tKS +mqN +eIa +eIa +eIa +qfw +qPc +qPc +nTC +reO +hre +osF +tKS +tKS +tKS +tKS +fFi +kpV +kpV +kpV +kpV +kpV +kpV +osF +tKS +tKS +fFi +kpV +uGi +reO +tOz +reO +guM +wOZ +jQM +lyF +wOZ +lyF +jQM +wOZ +guM +reO +reO +tOz +hre +osF +tKS +tKS +tKS +tKS +tKS +fFi +kpV +kpV +kpV +kpV +kpV +kpV +kpV +kpV +kpV +kpV +kpV +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tck +jmQ +bhp +vbZ +bhp +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(128,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nwr +vbZ +vbZ +nmG +nRr +nRr +nRr +dsE +vbZ +nRr +vbZ +vbZ +ryB +uqT +aSC +ryB +ezv +kKv +kKv +ezn +ryB +ryB +ryB +ryB +ryB +ryB +ezv +kKv +kKv +kKv +ezn +ryB +ryB +ryB +ryB +ryB +ryB +ezv +kKv +kKv +ezn +ryB +ryB +ryB +ryB +ryB +ryB +ryB +aSC +uqT +bhp +xaD +bhp +bhp +jat +xjT +bcC +mGF +rqM +mGF +uZg +uZg +fXs +aqq +jat +kjR +wGf +bDe +bDe +bDe +fzi +kjR +kjR +pwC +kGW +sId +jhF +sId +jOX +wPp +bWu +bWu +hDm +tSZ +wPK +oKO +uqq +tSZ +udi +edL +cAj +kap +sjR +sjR +tto +lbN +sjR +sjR +oYD +sjR +qwn +jOX +wcr +nVG +nVG +nVG +nVG +nVG +nVG +nVG +ejw +eqf +cOC +lPt +lPt +lPt +tki +lPt +cCO +lPt +tki +lPt +lPt +lPt +wMi +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +mqN +eIa +eIa +eIa +mqN +mqN +mqN +mqN +reO +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +fFi +kpV +uGi +llH +guM +xRU +lSd +amQ +gkU +xRU +lSd +amQ +guM +reO +wqX +hre +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +nTq +xAv +skh +tKS +tKS +tKS +tKS +muq +jmQ +bhp +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(129,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +qFQ +nwr +vbZ +vbZ +rWh +fdm +ohG +vbZ +vbZ +nRr +vbZ +vbZ +ryB +uqT +aSC +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +ryB +aSC +uqT +bhp +bhp +bhp +bhp +jat +cUY +mGF +mGF +jat +mhm +mGF +mGF +mGF +mGF +pbU +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +wGf +gvP +ktt +sId +gfx +jOX +wPp +bWu +bWu +hDm +tSZ +vQc +edL +uqq +tSZ +ipw +edL +uqq +uqq +sjR +sjR +sjR +sjR +sjR +sjR +lMJ +gfY +oNL +jOX +wcr +nVG +nVG +nVG +jPs +jPs +jPs +qFk +ejw +eqf +cOC +lPt +cCO +bNB +lPt +lPt +bNB +lPt +cCO +lPt +lPt +tki +kxW +lAc +lAc +lAc +lAc +mdS +kYH +rdv +mqN +eIa +eIa +eIa +lsi +eIa +eIa +nTC +reO +xAV +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +fFi +uGi +guM +wOZ +bEC +lNB +mCy +lNB +bEC +wOZ +guM +reO +hre +osF +tKS +tKS +tKS +tKS +fxI +cNx +cNx +cNx +xMa +xMa +xMa +xMa +xMa +kzA +xMa +xMa +xMa +xMa +xMa +xAv +xAv +ttB +xKl +osF +tKS +tKS +tKS +nTq +ttB +hXK +bhp +jBW +bhp +bhp +vbZ +siL +ffB +nRr +nRr +vbZ +vbZ +oNn +"} +(130,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +qFQ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +ryB +dJq +iXK +bcI +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +wly +bLW +iXK +bhp +bhp +bhp +bhp +jat +glO +mGF +lTK +jat +mGF +auY +lko +neY +mGF +jat +kjR +pwC +bBk +bBk +bBk +bBk +hvw +kjR +kjR +dWf +sId +sId +sId +jOX +wPp +bWu +hGB +hDm +uqq +uqq +uqq +uqq +uqq +qsI +uqq +xsU +lMJ +iBY +eOi +lAm +kcu +aIx +jOX +jOX +jOX +jOX +jOX +dVf +nVG +nVG +nVG +nYb +uhw +dsn +nVG +ejw +eqf +cOC +tki +tki +lPt +cCO +bNB +lPt +lPt +lPt +xsv +xsv +xsv +xsv +xsv +xsv +lPt +lPt +wMi +kYH +rdv +mqN +eIa +eIa +eIa +mqN +yeA +eIa +mqN +hre +osF +tKS +tKS +tKS +tKS +tKS +nTq +skh +tKS +tKS +tKS +tKS +nTq +xAv +xAv +xAv +skh +tKS +tKS +tKS +tKS +fFi +guM +guM +guM +guM +guM +guM +guM +guM +guM +hre +osF +tKS +tKS +tKS +tKS +tKS +msn +nRl +nRl +xDw +xMa +tyg +jke +tyg +tiq +fyk +tiq +tyg +jke +tyg +xMa +xMa +xMa +xMa +xMa +xMa +gVZ +gVZ +gVZ +aex +bkC +vcb +bhp +vbZ +onr +bhp +bhp +ohh +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(131,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +iXK +iXK +uqT +uqT +uqT +iXK +iXK +iXK +uqT +uqT +uqT +iXK +iXK +iXK +uqT +uqT +uqT +iXK +iXK +iXK +uqT +uqT +uqT +iXK +iXK +iXK +uqT +uqT +uqT +iXK +iXK +iXK +uqT +uqT +uqT +iXK +iXK +bhp +bhp +xaD +bhp +jat +jat +jat +jat +jat +ryS +jat +jat +jat +pGf +jat +kjR +wGf +jat +jat +jat +jat +oUN +kjR +kjR +dWf +eVG +sId +jhF +vnz +wPp +bWu +oMd +jOX +ibx +xYh +edL +fPi +dlK +kaW +dkV +jOX +jOX +jOX +jOX +jOX +jOX +jOX +jOX +bWu +bWu +hGB +bWu +wcr +nVG +nVG +rsN +jPs +jPs +jPs +hDw +llE +eqf +cOC +lPt +lPt +lPt +xsv +xsv +xsv +xsv +xsv +xsv +uVH +glP +nQy +xLn +xsv +nxe +xsv +xsv +kYH +bpU +mqN +mqN +nna +mqN +mqN +mqN +mqN +mqN +xAV +tKS +tKS +tKS +tKS +tKS +nTq +ttB +ifJ +ifJ +ifJ +pFG +ifJ +ifJ +dbQ +dbQ +dbQ +vdl +yax +xAv +skh +tKS +tKS +tKS +tKS +muq +reO +wqX +reO +tOz +hre +kpV +osF +tKS +tKS +tKS +tKS +tKS +tKS +lKp +nRl +nRl +nRl +xMa +fWR +oUw +cRy +xMa +hnF +xMa +cRy +iwI +phG +xMa +daU +hgM +kCJ +aqM +xMa +rXw +gVZ +gVZ +aex +gyY +vcb +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(132,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +ryB +ryB +ryB +ryB +ryB +vbZ +ryB +ccg +ryB +ryB +ryB +vbZ +ryB +ryB +dJq +ryB +dJq +nDg +ryB +ryB +ryB +ryB +ryB +vbZ +vbZ +ryB +ryB +ryB +ryB +vbZ +ryB +ryB +ryB +ryB +ryB +vbZ +vbZ +bhp +bhp +bhp +rOJ +cqA +tdp +oUX +jat +ijC +cwY +jat +uqM +jJW +jat +kjR +kjR +srq +ocj +aWe +jat +oUN +kjR +kjR +dWf +tQQ +sId +sId +vnz +wPp +bWu +bWu +jOX +jOX +hDm +hDm +jOX +oGo +onV +jOX +jOX +bWu +bWu +hGB +wPp +vnz +wPp +bWu +bWu +bWu +bWu +aIy +wcr +nVG +nVG +ejw +nqj +dMB +dMB +dMB +dMB +eqf +cOC +lPt +bNB +lPt +xsv +xLn +czA +dVD +xLn +xsv +ubx +lmP +cdd +kCm +xsv +hhU +iBg +xsv +kYH +kYH +mqN +eIa +eIa +eIa +mqN +reO +reO +reO +xAV +tKS +tKS +tKS +tKS +nTq +ttB +llH +ifJ +viU +eqC +jmz +mQO +ifJ +qxm +rOY +rJq +vdl +vdl +vdl +vdl +xAv +skh +tKS +tKS +fFi +kpV +kpV +kpV +kpV +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xMa +fyk +xMa +xMa +xMa +xMa +xMa +xWW +kCJ +kCJ +oHQ +xMa +gVZ +gVZ +gVZ +fmq +hnj +mAS +bhp +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(133,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +ccg +ryB +nDg +ryB +ccg +vbZ +ryB +ryB +ccg +ryB +ryB +vbZ +vbZ +ryB +ryB +ryB +ccg +ryB +dJq +ryB +nDg +ccg +ryB +vbZ +vbZ +dJq +ryB +ryB +vbZ +vbZ +ryB +dJq +ccg +ryB +ryB +ryB +vbZ +bhp +bhp +bhp +rOJ +cqA +kUV +oUX +jat +tvl +kNb +jat +uCR +dxV +jat +kjR +kjR +srq +aWe +ocj +jat +oUN +kjR +kjR +dWf +tcy +sId +sId +vnz +wPp +hGB +bWu +bWu +gOs +bWu +hGB +gOs +bWu +sfm +gOs +hGB +bWu +bWu +bWu +wPp +vnz +wPp +bWu +hGB +bWu +bWu +hDj +wcr +nVG +nVG +ejw +hDj +dMB +dMB +nqj +dMB +eqf +cOC +lPt +lPt +lPt +nxe +xLn +meG +aKf +xLn +nyb +xLn +xLn +euZ +xLn +oJj +uZK +aPB +xsv +kYH +kYH +mqN +eIa +eIa +eIa +nTC +reO +llH +hre +osF +tKS +tKS +tKS +nTq +vdl +vdl +vdl +ifJ +fbg +mTs +bdX +jMO +ifJ +exk +kWk +ydN +vdl +rXp +qWU +vdl +kpV +osF +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +xMa +fcN +tjV +ekp +lmi +xMa +obf +sTZ +nNj +fyk +xMa +tmT +xMa +tmT +xMa +daU +kCJ +kCJ +crh +xMa +gVZ +gVZ +gVZ +gVZ +mcV +mAS +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(134,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +iEc +vbZ +ryB +ryB +ryB +ryB +dJq +ryB +vbZ +vbZ +ryB +ryB +dJq +ryB +ccg +ryB +vbZ +ryB +ryB +ryB +ryB +ryB +ccg +nDg +ryB +ryB +vbZ +vbZ +ryB +ryB +nDg +vbZ +vbZ +ryB +ryB +ryB +ryB +ryB +ccg +ryB +vbZ +vbZ +bhp +bhp +rOJ +cqA +kUV +oUX +jat +jat +jat +jat +jat +jat +jat +kjR +aFn +jat +aiE +aWe +jat +oUN +kjR +kjR +dWf +sId +sId +sId +jOX +vQt +vtL +hGB +bWu +bWu +bWu +bWu +bWu +hGB +bWu +bWu +bWu +bWu +hGB +yed +vry +jOX +vQt +ihH +ihH +ihH +ihH +jPs +wcr +nVG +nVG +ejw +jPs +fYU +fYU +fYU +fYU +wZI +jPs +lPt +quP +qgp +nxe +xLn +bmO +koz +sBP +xsv +xkn +xLn +jns +xLn +xsv +xsv +xsv +xsv +kYH +kYH +mqN +yeA +eIa +eIa +mqN +tOz +hre +osF +tKS +tKS +tKS +nTq +jLY +vdl +rOY +wVm +ifJ +adA +aTK +yme +gaE +ifJ +ykp +oYG +rOY +vdl +vQI +rOY +xnS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +xMa +sqq +sqq +esI +sqq +jOj +lBu +lBu +hdC +fyk +xMa +bET +xMa +bET +xMa +raJ +kCJ +kCJ +bUR +xMa +gVZ +gVZ +gVZ +gVZ +aex +mAS +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(135,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +fTZ +dsE +ryB +vbZ +ryB +ryB +ccg +vbZ +vbZ +vbZ +vbZ +ryB +ccg +nDg +ryB +vbZ +vbZ +vbZ +vbZ +ryB +vbZ +vbZ +vbZ +ryB +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +ryB +ryB +ccg +ryB +dJq +nDg +vbZ +vbZ +vbZ +vbZ +bhp +bhp +rOJ +cqA +lDA +oUX +rYQ +kjR +kjR +kjR +wGf +waR +oUN +kjR +dWf +jat +jat +jat +jat +oUN +kjR +kjR +dWf +sId +hPZ +kvp +jOX +jOX +vQt +ihH +ihH +ihH +ihH +ihH +ihH +ihH +ihH +ihH +ihH +ihH +ihH +vry +jOX +jOX +vnz +vnz +vnz +vnz +vnz +jPs +dtp +doU +doU +koF +jPs +cOC +cOC +cOC +cOC +jPs +jPs +bNB +qgp +ulR +xsv +raM +sBP +lQn +xLn +xsv +nxe +piC +xsv +vmF +xsv +aeS +lPt +wMi +kYH +mhQ +mqN +mqN +mqN +mqN +mqN +nmH +xAV +tKS +tKS +tKS +nTq +jLY +oEw +vdl +rOY +ubL +ifJ +ifJ +bty +ifJ +voY +ifJ +ifJ +ifJ +xnS +vdl +aNe +rOY +vdl +tKS +nTq +xAv +xAv +skh +tKS +tKS +tKS +nTq +skh +tKS +tKS +tKS +tKS +tKS +tKS +tKS +tKS +xMa +sFN +bgf +egi +she +fyk +fyk +fyk +fyk +fyk +bET +fyk +dcS +fyk +pdt +kCJ +kCJ +jKU +kCJ +xMa +gVZ +gVZ +gVZ +gVZ +aex +vcb +bhp +bhp +bhp +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +oNn +"} +(136,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +ryB +vbZ +vbZ +vbZ +vbZ +vbZ +ryB +ryB +ryB +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +ryB +ryB +ryB +vbZ +ryB +ryB +vbZ +vbZ +vbZ +bhp +bhp +rOJ +cqA +oUX +oUX +rYQ +kjR +kjR +kjR +kjR +wGf +fzi +kjR +dWf +sId +jhF +siU +sId +oUN +kjR +kjR +dWf +hPZ +ojk +svb +sId +jOX +jOX +vnz +vnz +vnz +vnz +jOX +jOX +jOX +jOX +vnz +cUG +vnz +vnz +jOX +jOX +lPt +bNB +lPt +lPt +lPt +lPt +sMo +mbB +kYH +kYH +fqk +sMo +lPt +cCO +tki +lPt +lPt +lPt +qgp +ulR +kYH +xsv +xsv +xsv +xsv +xsv +xsv +esv +mtV +qxp +kYH +gfa +bpU +qBT +wMi +kYH +rdv +lPt +lPt +lPt +lPt +tki +bNB +wMi +kYH +kYH +kYH +vjh +vdl +vdl +vdl +cOT +vdl +ifJ +sQf +bZs +ifJ +mHe +kMV +tbz +ifJ +gqI +tAc +rOY +rOY +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +tSC +ifJ +muq +psy +skh +tKS +tKS +tKS +tKS +tKS +tKS +tKS +xMa +aGK +aGK +aGK +aGK +fyk +fyk +iNe +fyk +fyk +xMa +bET +xMa +bET +xMa +vyn +kCJ +kCJ +kCJ +dYR +gVZ +gVZ +gVZ +gVZ +aex +vcb +bhp +vbZ +bhp +vbZ +nRr +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +oNn +"} +(137,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vWz +vbZ +vbZ +vbZ +vbZ +vbZ +ryB +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +rOJ +cqA +jat +jat +jat +jat +hvw +kjR +kjR +kjR +kjR +kjR +wGf +gvP +sId +jhF +gfx +oUN +kjR +kjR +wGf +jvz +ojk +ojk +kvp +sId +dak +bDe +bDe +bDe +bDe +bDe +bDe +bDe +fzi +cqA +oUX +oUX +oUX +oUX +ekG +lPt +lPt +lPt +bNB +lPt +lPt +qTy +wMi +kYH +kYH +bpU +fiw +pkZ +pkZ +pkZ +pkZ +pkZ +pkZ +ulR +kYH +kYH +kYH +kYH +bpU +pkZ +pkZ +pkZ +ulR +kYH +kYH +kYH +kYH +kYH +bpU +ulR +kYH +rdv +lPt +bNB +lPt +tki +lPt +qgp +ulR +kYH +kYH +kYH +edU +vdl +rOY +rOY +rOY +rOY +ifJ +dSJ +bKj +ifJ +kjm +wpu +wJP +ifJ +sCy +rOY +nmb +dyp +ifJ +dmk +dmk +dmk +ifJ +uFs +uFs +dmk +ifJ +ttB +llH +ola +mBQ +gVZ +gVZ +xMa +xMa +xMa +xMa +xMa +fyk +fyk +fyk +dcS +fyk +giH +eeS +vmi +woB +xMa +cdP +xMa +cdP +xMa +kCJ +sys +vjs +vjs +xMa +gVZ +gVZ +gVZ +hwa +beT +vcb +bhp +vbZ +bhp +vbZ +nRr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +oNn +"} +(138,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +dsE +bhp +bhp +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +bYW +rDu +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +onr +onr +bhp +bhp +bhp +rOJ +cqA +jat +eCu +dLE +aBc +oUN +kjR +kjR +kjR +kjR +kjR +kjR +wGf +bDe +gvP +sId +oUN +kjR +kjR +kjR +wGf +jvz +ojk +ojk +kvp +oUN +kxB +lGN +kxB +rWP +kxB +jdQ +kjR +kjR +cqA +pCs +bxl +pCs +oUX +ekG +tki +lPt +lPt +cCO +tki +bNB +lPt +wMi +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +rdv +tki +lPt +lPt +cCO +bNB +wMi +kYH +kYH +kYH +mhQ +cSg +vdl +rOY +rOY +rOY +rOY +ifJ +ifJ +ifJ +ifJ +dvM +qDL +cHF +ifJ +vdl +xnS +vdl +vdl +ifJ +dmk +dmk +dmk +qfL +dmk +dmk +dmk +ifJ +ifJ +ifJ +ifJ +xcV +gVZ +gVZ +xMa +ifw +cOn +pdt +fyk +fyk +woB +pqT +pqT +pqT +sfq +qoA +fyk +rsQ +xMa +xMa +xMa +xMa +xMa +mnb +xMa +xMa +xMa +xMa +gVZ +gVZ +gVZ +aex +kkq +mAS +vbZ +vbZ +bhp +vbZ +nRr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +oNn +"} +(139,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +yjx +wQx +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +bhp +rOJ +vtu +jat +xuu +xuu +aBc +oUN +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +wGf +gvP +oUN +kjR +kjR +kjR +kjR +dWf +uCz +mly +paN +oUN +kjR +kDU +kjR +kDU +kjR +kDU +kjR +kjR +clw +clw +clw +clw +clw +clw +clw +clw +clw +clw +clw +lPt +lPt +wMi +kYH +kYH +kYH +mhQ +eYI +eYI +hnc +eYI +eYI +eYI +eYI +eYI +eYI +eYI +eYI +eYI +eYI +eYI +lAc +lAc +lAc +lAc +lAc +mdS +kYH +kYH +kYH +kYH +rdv +lPt +lPt +bNB +lPt +qgp +ulR +kYH +kYH +kYH +vjh +mrj +vdl +ftb +rOY +rOY +rOY +vdl +kkq +gBY +ifJ +ifJ +ifJ +ifJ +ifJ +gbt +rOY +qNd +vdl +ifJ +dmk +dmk +dmk +ifJ +dmk +dmk +dmk +ifJ +bZs +fYo +ifJ +xcV +gVZ +gVZ +xMa +iNe +pCF +xMa +fyk +fyk +veB +fSA +fSA +lwB +hAO +cNt +cNt +nhp +uaE +oeZ +fSA +xMa +kCJ +kCJ +inM +iqy +xMa +gVZ +gVZ +gVZ +mAS +mAS +mAS +mAS +vbZ +bhp +bhp +vbZ +nRr +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +oNn +"} +(140,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +sRY +jat +jat +jat +xuu +tTY +aBc +oUN +kjR +jat +jat +jat +jat +jat +jat +jat +kjR +dWf +oUN +kjR +kjR +kjR +kjR +wGf +waR +siU +gfx +oUN +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +clw +urg +pgm +fto +clw +kdG +pTg +clw +oHv +lwq +clw +lPt +qgp +ulR +kYH +kYH +mhQ +fEZ +eYI +iAe +aYs +eYI +wNg +ocK +mOy +wrs +wrs +foj +wrs +eQo +kOw +eYI +eYI +eYI +eYI +isB +lJf +ulR +kYH +kYH +kYH +kYH +bpU +aeS +bNB +lPt +tki +wMi +kYH +kYH +kYH +uSR +bVd +mrj +vdl +vdl +vdl +vdl +cOT +vdl +qqH +hnj +aco +qqg +epR +vdl +vdl +xuO +cVx +rOY +vdl +ifJ +dmk +dmk +fwh +ifJ +uFs +dmk +dmk +aJa +bZs +bZs +ifJ +xcV +gVZ +gVZ +xMa +fDK +oyf +xMa +uKx +dcS +veB +fSA +wuK +fSA +fSA +fSA +fSA +fSA +uaE +fSA +fSA +duH +kCJ +kCJ +wjt +rZT +xMa +gVZ +gVZ +gVZ +mAS +bZs +wVm +mAS +vbZ +kkE +vbZ +vbZ +nRr +vbZ +vbZ +ner +xQd +vbZ +vbZ +oNn +"} +(141,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +bhp +bhp +gUi +jat +xuu +nBX +xuu +rTZ +aBc +oUN +kjR +jat +clB +gcn +jat +bcC +ecJ +jat +kjR +dWf +oUN +kjR +kjR +kjR +kjR +kjR +wGf +bDe +bDe +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +clw +xEB +hqg +hqg +fEj +jIn +hqg +uub +aRM +hbF +clw +cCO +wMi +kYH +kYH +kYH +rdv +quP +eYI +hFr +bFn +sHY +wHN +bFn +bFn +nUp +bFn +bFn +bFn +bFn +rOC +eYI +qnn +qnT +eYI +vbI +gSH +gSH +sLZ +nZx +kYH +kYH +kYH +bpU +aeS +quP +qgp +ulR +kYH +kYH +kYH +kwb +mrj +mrj +mrj +mrj +mrj +ddE +kYH +kYH +gVZ +gVZ +tnM +lhW +lhW +vdl +vdl +vdl +vdl +vdl +vdl +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +qHD +gVZ +gVZ +pdt +fyk +fyk +pdt +fyk +fyk +veB +qon +fSA +ptc +jDZ +cog +cog +lkU +uaE +dGe +fSA +vxs +kCJ +jKU +wjt +boP +xMa +gVZ +gVZ +gVZ +mAS +iYn +jSy +mAS +vbZ +nRr +vbZ +vbZ +nRr +dsE +bhp +xQd +vbZ +vbZ +vbZ +oNn +"} +(142,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +bhp +sRY +bhp +jat +sAn +xuu +xuu +wCV +aBc +oUN +kjR +jat +wfY +ijC +nez +xYP +hSl +jat +kjR +guf +oUN +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +bBk +bBk +hvw +kjR +clw +jFH +tvW +pug +clw +sNg +vNi +clw +aUO +aUO +clw +lPt +wMi +kYH +kYH +kYH +bpU +aeS +eYI +cCD +bFn +vdn +wHN +bFn +wrs +kyZ +wrs +wrs +hCG +bFn +bFn +sIb +tek +qhF +eYI +vSg +nXZ +gTs +eyd +nZx +kYH +kYH +kYH +kYH +bpU +pkZ +ulR +kYH +kYH +kYH +kYH +rdv +trW +mrj +mrj +mrj +mNW +uaG +kYH +kYH +gVZ +gVZ +tnM +lhW +lhW +dbQ +rOY +rOY +rOY +vdl +rOY +wVm +vdl +rOY +rOY +cOT +rOY +rOY +rOY +rOY +rOY +xnS +gVZ +gVZ +gVZ +gVZ +xMa +luv +eQD +xMa +fyk +fyk +jOj +dpy +dpy +dpy +kQs +iNe +fyk +rsQ +xMa +fSA +fSA +duH +kCJ +kCJ +wjt +rZT +xMa +gVZ +gVZ +mAS +mAS +cmU +mAS +mAS +vbZ +nRr +vbZ +vbZ +nRr +vbZ +bhp +bhp +vbZ +vbZ +vbZ +oNn +"} +(143,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +qbM +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +jat +wfe +xuu +hlU +brj +aBc +oUN +kjR +jat +jat +jat +jat +mGF +esO +jat +kjR +wGf +fzi +kjR +kjR +pwC +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +dWf +jhF +ktt +oUN +kjR +clw +ubj +pLC +tqA +cYl +hsS +rvk +hqg +mqT +aUO +tki +bNB +wMi +kYH +kYH +kYH +kYH +bpU +eYI +oeX +dvN +rwc +wHN +bFn +bFn +bFn +bFn +bFn +bFn +bFn +lYU +eYI +eYI +eYI +eYI +dbw +nXZ +nXZ +oRx +nZx +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +pkZ +fge +mle +fge +uaG +kYH +kYH +mhQ +keG +beT +hjI +lhW +lhW +dbQ +rOY +rOY +rOY +xnS +rOY +ydN +vdl +rOY +rOY +vdl +rOY +rOY +rOY +rOY +rOY +vdl +gVZ +gVZ +gVZ +gVZ +xMa +xMa +xMa +xMa +xMa +fyk +fyk +fyk +dcS +fyk +giH +qzf +vmi +jOj +xMa +hDV +hDV +xMa +kCJ +kCJ +ewX +cRd +xMa +gVZ +gVZ +mAS +cKI +rOY +rOY +mAS +vbZ +nRr +nRr +nRr +nRr +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +oNn +"} +(144,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +jsA +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +bhp +jat +jat +dLL +jat +aBc +jat +fzi +kjR +kjR +jat +bkS +qYd +dSn +sVw +pbU +kjR +kjR +kjR +kjR +pwC +kGW +hUn +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +wGf +gvP +jhF +oUN +kjR +oMU +kGX +eJR +joi +qGq +sii +dAV +hqg +pgA +aUO +cCO +qgp +ulR +kYH +kYH +kYH +kYH +kYH +eYI +eYI +eYI +eYI +lbX +gNf +jyc +pCk +bAP +jyc +kKS +sQu +uPw +eYI +ima +rGf +ulR +knk +juX +uYJ +cUE +nZx +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +hnj +gBY +rED +lhW +lhW +dbQ +rOY +rOY +rOY +vdl +rOY +ubL +vdl +rOY +rOY +vdl +ftb +rOY +vdl +riu +gdK +vdl +prP +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +iZR +fyk +fyk +fyk +fyk +fyk +qoA +fyk +fyk +xMa +xKc +fyk +xMa +enj +xMa +xMa +xMa +xMa +gVZ +gVZ +qhE +rOY +rOY +gdK +mAS +vbZ +vbZ +nRr +nRr +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +oNn +"} +(145,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +qOz +wPP +wPP +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +rOJ +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +eCX +mzS +omK +gHJ +jga +jat +kjR +pwC +hvw +kjR +wGf +gvP +dak +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +wGf +gvP +oUN +kjR +hqg +hqg +ubj +jIn +txf +krL +pLb +hqg +njz +aUO +bNB +wMi +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +eYI +eYI +eYI +cYW +cYW +cYW +cYW +cYW +eYI +ydY +eYI +rdv +kdf +mdS +nZx +nZx +nZx +nZx +nZx +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +aex +gBY +rED +rED +rED +vdl +rOY +rOY +rOY +vdl +vdl +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +cNt +rDC +hvV +hvV +efY +cNt +cNt +cNt +cNt +xMa +uYe +fyk +hAM +fyk +fyk +xMa +gVZ +gVZ +gVZ +gVZ +mAS +gdK +rOY +rOY +mAS +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(146,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +kyd +rhd +lQP +lQP +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +qXO +hvw +kjR +kjR +kjR +kjR +kjR +kjR +pwC +jat +ecJ +mGF +xuz +vPH +jat +pwC +kGW +oUN +kjR +kjR +wGf +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +huq +hUn +bBk +clw +xQz +hEJ +fap +oyx +rCA +aah +hqg +uDH +aUO +quP +wMi +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +pkZ +pkZ +pkZ +pkZ +pkZ +pkZ +ulR +kYH +kYH +kYH +bpU +pkZ +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +fmq +hnj +gBY +gBY +gBY +vdl +rOY +rOY +ftb +vdl +pWx +ifJ +tHd +bZs +ifJ +gdK +gdK +mRY +ifJ +rOY +rOY +rOY +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +cCE +fSA +fSA +fSA +dJu +dJu +dJu +dJu +dJu +xMa +xGp +fiN +iJT +pIz +sBg +xMa +gVZ +gVZ +gVZ +gVZ +hsG +gdK +rOY +rOY +mAS +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(147,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +jsA +oJE +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +qbM +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +gOd +gOd +gOd +bNr +gOd +gOd +gOd +kjR +dWf +jat +jat +fpR +jat +hJP +jat +jat +gfx +oUN +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +bBk +bBk +hvw +kjR +kjR +kjR +wGf +bDe +gvP +clw +clw +tcw +tcw +tcw +tcw +clw +clw +aUO +aUO +qgp +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +gVZ +fmq +qqH +qqH +qqH +vdl +vdl +xnS +vdl +vdl +tcx +ifJ +jxB +bZs +iKj +rOY +rOY +rOY +ygo +rOY +rOY +rOY +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +fSA +pFA +fSA +fSA +fSA +fSA +fSA +pFA +fSA +xMa +abz +fyk +dcS +fyk +fyk +xMa +mBQ +gVZ +gVZ +gVZ +hsG +gdK +rOY +ftb +mAS +vbZ +vbZ +vbZ +nRr +nio +qHA +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(148,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +jsA +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +bhp +bhp +sRY +gOd +kzH +lln +nil +asd +asE +gOd +kjR +dWf +jat +kwS +dfa +jat +qjP +iTw +jat +sId +oUN +kjR +kjR +kjR +kjR +kjR +pwC +bBk +kGW +sId +jhF +fMb +hvw +kjR +kjR +kjR +kjR +wGf +bDe +bDe +bDe +bDe +bDe +bDe +bDe +bDe +pkZ +pkZ +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +lAc +lAc +lAc +lAc +lAc +lAc +lAc +lAc +lAc +lAc +mdS +kYH +kYH +kYH +kYH +kYH +kYH +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +aex +gBY +ifJ +ifJ +ifJ +ifJ +rOY +rOY +gdK +ifJ +ftb +rOY +rOY +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +rOi +ajW +xZp +dTM +onS +xZp +dTM +ajW +xZp +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xcV +gVZ +gVZ +gVZ +mAS +mAS +mAS +mAS +mAS +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(149,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +gOd +fPP +kXD +vLF +xaA +wgE +gOd +kjR +dWf +jat +qiR +mPh +jat +itH +qwF +jat +sId +oUN +kjR +kjR +kjR +kjR +vUv +kGW +gfx +sId +jhF +sId +sId +xnz +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +fEZ +quP +gzX +gzX +gzX +gzX +gzX +fwS +fwS +fwS +gzX +wMi +kYH +kYH +kYH +mhQ +mdS +kYH +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +jbo +qqH +qqH +qqH +hnj +ifJ +tSC +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +vUd +kcr +vUd +fSA +gQI +fSA +vUd +kcr +vUd +xMa +gyY +gBY +gyY +bkC +kkq +rNs +qHD +gVZ +gVZ +gVZ +gVZ +mcV +mAS +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +dmF +vbZ +vbZ +vbZ +vbZ +oNn +"} +(150,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +jsA +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +gOd +osE +anZ +rnC +kXD +nPx +gOd +kjR +dWf +jat +xQS +nZt +jat +jat +jat +jat +siU +oUN +kjR +kjR +kjR +kjR +wGf +bDe +vsm +lzM +lzM +lzM +lzM +vsm +hUn +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kYH +kYH +kYH +kYH +kYH +mhQ +lAc +lAc +lAc +mdS +kYH +kYH +kYH +mhQ +mdS +kYH +kYH +kYH +kYH +kYH +mhQ +lAc +lAc +mdS +kYH +kYH +ubk +kYH +ipS +kYH +nFM +kYH +epV +bpU +aeS +lPt +gzX +qjY +maq +gzX +aNz +gyQ +gyQ +mZn +fwS +wMi +kYH +kYH +kYH +iON +kxW +lAc +keG +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qHD +gVZ +gVZ +hwa +beT +sjD +wLI +wLI +eOZ +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xMa +xMa +rNs +qqH +qqH +qqH +qqH +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +aex +vcb +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +oNn +"} +(151,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +oJE +jsA +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +gOd +gOd +gOd +gOd +gOd +npi +gOd +gOd +kjR +wGf +jat +jat +jat +jat +wMA +iuV +sId +jhF +oUN +kjR +kjR +kjR +kjR +kjR +kjR +vsm +lRg +bQT +lRg +bQT +vsm +sId +xnz +bBk +bBk +bBk +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kYH +kYH +kYH +mhQ +lAc +fEZ +quP +bNB +qgp +ulR +kYH +kYH +mhQ +tcd +kxW +mdS +kYH +kYH +kYH +mhQ +fEZ +bNB +quP +wMi +kYH +kYH +ubk +csf +fLY +csf +iLj +csf +fLY +kYH +bpU +aeS +gzX +jpj +wWq +oyY +wKY +gyQ +gyQ +fDJ +fwS +kxW +mdS +kYH +kYH +bpU +aeS +bNB +gBY +jPl +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +jim +kkq +sjD +eOZ +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qqH +qqH +qqH +qqH +qqH +qqH +qqH +qqH +qqH +qqH +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +beT +vcb +bhp +bKx +vbZ +vbZ +nRr +nRr +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +oNn +"} +(152,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oyw +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +bhp +xaD +bhp +bhp +axW +sId +sId +gOd +tCz +esF +gOd +kjR +kjR +kjR +cqA +oUX +oUX +oUX +rYQ +iuV +jhF +sId +oUN +kjR +kjR +kjR +kjR +kjR +bbS +vsm +oqJ +lRg +lhJ +eCW +vsm +lzM +lzM +lzM +lzM +vsm +hUn +bBk +hvw +kjR +kjR +pwC +bBk +bBk +lAc +lAc +lAc +fEZ +lPt +bNB +cCO +lPt +wMi +kYH +kYH +kYH +rdv +vWq +vWq +vWq +vWq +xnu +vWq +pck +vWq +tki +bNB +wMi +vbI +gSH +gSH +gSH +gSH +gSH +gSH +gSH +gSH +sLZ +kYH +rdv +gzX +gzX +gzX +gzX +gzX +diJ +gyQ +uoR +fwS +qgp +ulR +kYH +kYH +kYH +rdv +lPt +ifJ +ifJ +ifJ +ifJ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qqH +qqH +qHD +gVZ +gVZ +gVZ +gVZ +hwa +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +beT +gBY +vcb +bhp +xaD +vbZ +nRr +nRr +nRr +xaN +vbZ +bhp +bhp +vbZ +vbZ +vbZ +oNn +"} +(153,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nwr +nRr +jsA +qbM +onr +bhp +vbZ +vbZ +vbZ +vbZ +bhp +sRY +bhp +bhp +axW +sId +sId +gOd +aOm +esF +gOd +hvw +kjR +kjR +cqA +oUX +oUX +oUX +rYQ +iuV +sId +ktt +oUN +kjR +kjR +fcf +dlM +kjR +kjR +vsm +wMv +bQT +lRg +bQT +bQT +lRg +wmH +lRg +bQT +vsm +vsm +vsm +vsm +kjR +kjR +dWf +ktt +sId +lPt +cCO +bNB +lPt +lPt +lPt +tki +lPt +wMi +kYH +kYH +kYH +rdv +vWq +pxe +qMn +vWq +eFN +dUV +vFy +vWq +lPt +lPt +jsi +jsi +fDr +jsi +jsi +fuO +fuO +fuO +fuO +jsi +jsi +kYH +bpU +aeS +gzX +oEI +eBJ +nbE +gyQ +gyQ +mZn +fwS +ulR +kYH +kYH +kYH +kYH +rdv +lPt +ifJ +bZs +wVm +ifJ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +eeO +css +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +mBQ +gVZ +gVZ +gVZ +gVZ +aex +bkC +gyY +mAS +bhp +vbZ +vbZ +iwf +vbZ +vbZ +hZV +vbZ +bhp +bhp +bhp +wTq +wTq +oNn +"} +(154,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +qFQ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +sRY +axW +gfx +jhF +gOd +gOd +aaE +gOd +oUN +kjR +jat +jat +jat +jat +jat +jat +jat +jhF +dak +fzi +kjR +kjR +vye +tzz +kjR +kjR +vsm +wsr +bQT +bQT +bQT +bQT +bQT +bQT +bQT +bQT +xPy +sCN +eWX +vsm +kjR +kjR +xsv +xsv +xsv +xsv +bNB +tki +xsv +xsv +xsv +xsv +xsv +ulR +kYH +kYH +mhQ +rnU +vWq +tLh +uTI +psJ +cps +cps +ocI +vWq +vmP +vmP +jsi +phY +lZm +xuB +lRY +kxZ +wzb +whd +xZU +dnt +jsi +kYH +kYH +rdv +gzX +bCS +aJm +qvy +phB +gyQ +aOR +fwS +kYH +kYH +kYH +kYH +kYH +bpU +aeS +ifJ +cuk +irq +ifJ +ifJ +tSC +ifJ +keG +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +ecZ +ctb +wLI +css +keG +mBQ +gVZ +gVZ +gVZ +gVZ +hwa +pdw +mBQ +gVZ +gVZ +hwa +keG +keG +keG +aiY +xcV +gVZ +gVZ +gVZ +gVZ +aex +gBY +kkq +mAS +bhp +vbZ +vbZ +bKx +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +wTq +wTq +oNn +"} +(155,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +qUh +sId +siU +dlr +eYb +jcP +amG +oUN +kjR +jat +bRP +icy +nez +ijC +cwY +jat +gfx +oUN +kjR +kjR +kjR +vye +vsm +duw +qrG +vsm +lRg +bQT +bQT +lRg +lRg +lRg +lRg +lRg +lRg +vsm +qMq +dum +vsm +kjR +kjR +xsv +ovS +rVc +xsv +xsv +xsv +xsv +xLn +xLn +xLn +xsv +kYH +kYH +kYH +bpU +aeS +vWq +vWq +vWq +vWq +cps +cps +cps +bpZ +piR +piR +jsi +lZm +xuB +cHr +xuB +lZm +xuB +lZm +xuB +lZm +fuO +kYH +kYH +rdv +gzX +oIj +aJm +tDs +phB +gyQ +uoR +gzX +sLZ +kYH +kYH +kYH +kYH +kYH +rdv +ifJ +cmU +ifJ +ifJ +rOY +rOY +ifJ +gBY +xcV +gVZ +gVZ +uJu +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +pKZ +wLI +wLI +pMd +bkC +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +gVZ +hwa +beT +ifJ +ifJ +ifJ +ifJ +jPl +mBQ +gVZ +gVZ +gVZ +fmq +ooR +qqH +vqb +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +mAz +vbZ +oNn +"} +(156,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +bhp +vbZ +sRY +bhp +bhp +bhp +bhp +bhp +bhp +bhp +xaD +bhp +bhp +sRY +qer +xaD +vbZ +bhp +bhp +bhp +vbZ +vbZ +bhp +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +qUh +jhF +sId +dlr +lIw +lgN +qCM +oUN +kjR +pbU +dws +oZg +jat +eCE +kNb +jat +siU +oUN +kjR +kjR +kjR +vye +vsm +duw +duw +duw +bQT +bQT +lRg +ixz +thL +rOh +nCt +rzh +ioK +vsm +vsm +vsm +vsm +kjR +kjR +xsv +pYa +vYp +qqb +xLn +xLn +nyb +xLn +xLn +nfX +xsv +kYH +kYH +kYH +kYH +bpU +aeS +quP +vWq +eBq +cps +lyM +rTr +vWq +piR +piR +jsi +kgK +fpB +iKd +fpB +iKd +fpB +xuB +lZm +xuB +fuO +kYH +kYH +rdv +gzX +oNV +aJm +tDs +phB +gyQ +gyQ +uCb +eyd +kYH +kYH +kYH +kYH +kYH +rdv +ifJ +rOY +tAc +rOY +rOY +rOY +uJi +gyY +xcV +gVZ +gVZ +aex +jPl +keG +keG +keG +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +lWU +fPJ +xYm +gBY +ifJ +tHd +bKj +ifJ +rOY +gdK +rOY +ifJ +gVZ +aex +gyY +ifJ +tHd +vLV +ifJ +gyY +xcV +gVZ +gVZ +gVZ +gVZ +hwa +keG +ixQ +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +njc +vbZ +oNn +"} +(157,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +sRY +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +qer +bhp +bhp +bhp +xaD +sRY +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +qUh +sId +gfx +dlr +lIw +lIw +jcP +oUN +kjR +jat +nTi +wZQ +jat +jat +jat +jat +dak +fzi +kjR +kjR +kjR +vye +vsm +abU +duw +duw +bQT +bQT +lRg +hYA +kss +kss +kss +kss +kss +vsm +xTv +mXE +vsm +hvw +kjR +xsv +xsv +xsv +xsv +xLn +cyC +xsv +xsv +xsv +xsv +xsv +iUS +iUS +kYH +kYH +kYH +rdv +tki +vWq +xAf +cps +vDf +cer +vWq +piR +piR +jsi +sRZ +eki +tZf +eki +xuM +nxb +fpB +xuB +wjB +fuO +kYH +kYH +rdv +gzX +hXn +xbw +ydH +phB +gyQ +gyQ +gzX +cUE +kYH +kYH +kYH +kYH +kYH +rdv +ifJ +ftb +rOY +rOY +rOY +rOY +ifJ +gBY +xcV +gVZ +gVZ +aex +ifJ +ifJ +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qqH +hnj +gyY +ifJ +jxB +bZs +iKj +rOY +rOY +rOY +qhE +gVZ +aex +bkC +ifJ +jxB +bKj +ifJ +kkq +jPl +mBQ +gVZ +gVZ +gVZ +fmq +qqH +vqb +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +mAz +vbZ +oNn +"} +(158,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +khu +khu +khu +qer +qer +qer +khu +khu +khu +kAK +qer +qer +khu +khu +khu +qer +qer +qer +khu +khu +khu +bhp +gUi +bhp +sRY +bhp +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +axW +sId +sId +dlr +xEr +pCq +ucv +oUN +kjR +jat +xXy +qQZ +xEh +jat +sId +qsQ +fzi +kjR +kjR +kjR +fcf +aCc +vsm +abU +duw +vsm +bQT +bQT +bQT +kss +daO +lFZ +tdR +tdR +vkP +vsm +pZy +ohC +vsm +oUN +kjR +kjR +xsv +xLn +xLn +xLn +cyC +xsv +nfX +xLn +xLn +cyC +xLn +iUS +kYH +kYH +kYH +bpU +aeS +vWq +vWq +nVX +vWq +hZP +vWq +piR +piR +jsi +hLa +lZm +xuB +lZm +xuB +eZA +iKd +lZm +oxI +fuO +kYH +kYH +rdv +gzX +gzX +gzX +gzX +gzX +gzX +gzX +gzX +lAc +lAc +lAc +mdS +kYH +kYH +bpU +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +hnj +xcV +gVZ +gVZ +aex +ifJ +tHd +vLV +ifJ +xcV +gVZ +hwa +keG +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +hnj +ifJ +ifJ +ifJ +ifJ +gdK +rOY +rOY +ifJ +gVZ +bwC +aIh +ifJ +ifJ +cmU +ifJ +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +hwa +keG +ixQ +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +njc +vbZ +oNn +"} +(159,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +khu +ncN +bhp +bhp +bhp +jrT +kkE +edV +kkE +kkE +kkE +dep +bhp +ncN +bhp +bhp +bhp +bhp +bhp +ncN +khu +xaD +bhp +bhp +vbZ +bhp +xaD +bhp +bhp +bhp +vbZ +vbZ +vbZ +nRr +qbM +onr +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +axW +gfx +jhF +dlr +ndg +ucv +bjo +oUN +kjR +jat +qaJ +cDL +jHt +jat +gfx +oUN +kjR +kjR +kjR +kjR +hZz +xZJ +vsm +vsm +vsm +vsm +vsm +gKw +vsm +vsm +vsm +vsm +vsm +vsm +vsm +vsm +rxP +vsm +vsm +oUN +kjR +kjR +tyw +xLn +xLn +xLn +cyC +xsv +xsv +xLn +xLn +xLn +xLn +asL +tWE +kYH +kYH +kYH +bpU +vWq +cOI +cps +muD +oYZ +vWq +piR +piR +jsi +vVp +xuB +lZm +xuB +lZm +iYi +lZm +siC +nxr +jsi +kYH +mhQ +fEZ +lPt +lPt +lPt +bNB +lPt +lPt +lPt +lPt +lPt +bNB +quP +wMi +kYH +kYH +kYH +tnM +lhW +lhW +lhW +lhW +lhW +hlF +aex +xcV +gVZ +gVZ +aex +ifJ +jxB +bKj +ifJ +ifJ +tSC +ifJ +ifJ +jPl +keG +keG +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +hnj +bkC +gyY +uJi +gdK +rOY +rOY +ifJ +jZy +jZy +jZy +hmn +ifJ +kUP +yhG +ftb +ifJ +qHD +gVZ +gVZ +gVZ +aex +kkq +mAS +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +wTq +wTq +oNn +"} +(160,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +khu +bhp +bhp +sRY +jrT +vWV +nRr +nRr +nRr +nRr +nRr +vWz +kkE +kkE +kkE +dep +bhp +bhp +bhp +wxu +khu +oEE +sRY +bhp +vbZ +vbZ +vbZ +bhp +sRY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +onr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +axW +sId +sId +jYr +dlr +dlr +dlr +oUN +kjR +jat +jat +jat +jat +jat +dak +fzi +kjR +kjR +kjR +kjR +kjR +kjR +hZz +xZJ +vsm +oBZ +oBZ +cbK +myt +sef +vsm +tCa +rSK +vsm +wOr +lCX +bQT +cKw +lzM +oUN +kjR +kjR +xsv +xLn +cyC +xLn +cyC +xsv +cyC +xLn +xLn +xLn +xLn +iUS +mdS +kYH +kYH +kYH +kYH +vWq +kek +lsv +fNp +rIQ +vWq +piR +piR +jsi +jsi +lgB +ohl +ohl +jsi +jsi +jsi +hwT +jsi +jsi +kYH +bpU +aeS +quP +bNB +lPt +lPt +lPt +lPt +lPt +lPt +lPt +lPt +bNB +wMi +kYH +kYH +kYH +tnM +lhW +lhW +qqg +qqg +lhW +hlF +aex +xcV +gVZ +gVZ +aex +ifJ +ifJ +cmU +ifJ +gdK +rOY +gdK +ifJ +peB +peB +peB +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +hnj +gyY +uJi +gdK +rOY +rOY +ifJ +lhW +lhW +lhW +hVP +ifJ +eNp +dxb +vkk +ifJ +gVZ +gVZ +gVZ +gVZ +mAS +mAS +mAS +mAS +vbZ +vbZ +vbZ +vbZ +kkE +kkE +kkE +vbZ +bhp +bhp +wTq +wTq +oNn +"} +(161,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +qer +bhp +xaD +bhp +nmG +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vWz +kkE +kkE +dep +khu +khu +khu +bhp +xaD +bhp +gUi +bhp +gUi +bhp +bhp +xaD +vbZ +bhp +vbZ +vbZ +bhp +bhp +vbZ +bhp +bhp +vbZ +vbZ +xaD +qUh +qUh +qUh +sId +sId +sId +sId +sId +oUN +kjR +dWf +ktt +sId +dak +bDe +fzi +kjR +kjR +kjR +kjR +fcf +gPQ +dlM +kjR +kjR +vsm +cbK +cbK +cbK +cbK +oEd +vsm +pZn +bQT +dAk +bQT +bQT +bQT +puN +lzM +fzi +kjR +kjR +sMo +sMo +sMo +sMo +sMo +sMo +cyC +xLn +iUS +iUS +iUS +iUS +wuC +mdS +kYH +kYH +kYH +vWq +kZl +cer +cps +cps +vWq +vmP +vmP +jsi +nDH +lZm +lZm +lZm +lZm +oeO +lZm +lZm +lZm +jsi +kYH +kYH +rdv +lPt +lPt +lPt +lPt +eff +eff +eff +eff +eff +eff +eff +xVZ +vDK +nRr +nRr +eff +eff +eff +eff +eff +eff +eff +eff +jPl +mBQ +gVZ +aex +ifJ +rOY +rOY +ifJ +rOY +rOY +gdK +ifJ +xZW +xZW +peB +jPl +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +hnj +ifJ +ifJ +ifJ +tSC +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +atX +cVx +vLg +qhE +gVZ +gVZ +gVZ +gVZ +mAS +bZs +wVm +mAS +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +kkE +kkE +vbZ +vbZ +oNn +"} +(162,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +bhp +bhp +nmG +kyd +oQL +oQL +oQL +bng +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vWz +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +gCC +bDe +bDe +bDe +bDe +bDe +bDe +fzi +kjR +wGf +bDe +bDe +fzi +kjR +kjR +kjR +kjR +kjR +kjR +jat +jat +jat +jat +wHW +vsm +vsm +vsm +vsm +vsm +vsm +vsm +vsm +lzM +vsm +vsm +cDK +vsm +vsm +vsm +kjR +kjR +kjR +sMo +hrO +eJn +nsy +uzf +sMo +cyC +xLn +asL +xLn +qMb +xsv +xsv +xsv +xsv +kYH +kYH +vWq +vWq +vWq +vWq +vWq +vWq +tki +lPt +jsi +wAw +lZm +cCg +lZm +kOG +kbO +ecd +lZm +lZm +eDa +kYH +kYH +rdv +lPt +eff +eff +eff +eff +vHI +pjq +eff +tMf +hay +eff +sVE +nRr +aQS +nRr +eLQ +xAP +hJL +oqB +eff +dmJ +gLw +eff +gBY +xcV +gVZ +aex +ifJ +rOY +rOY +qhE +rOY +rOY +rOY +ifJ +xZW +xZW +peB +kkq +jPl +keG +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +hnj +kkq +ifJ +rOY +rOY +rOY +ifJ +bZs +jSy +ifJ +ifJ +ifJ +ifJ +ifJ +gVZ +gVZ +gVZ +gVZ +mAS +kcG +jSy +mAS +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(163,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +bhp +qer +bhp +bhp +bhp +wJQ +qOz +lQP +lQP +lQP +aXI +gYk +nwr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +gYk +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +nwr +nRr +nRr +nRr +nRr +nRr +nRr +gYk +iwf +iwf +iwf +iwf +hvx +bBk +bBk +bBk +bBk +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +jat +stH +mDa +jat +kjR +kjR +hZz +xZJ +jLI +kjR +kjR +kjR +kjR +kjR +hZz +jLI +qPw +wGf +axw +fzi +kjR +kjR +jZx +khe +cDt +iBm +cDt +cDt +xLn +xLn +xLn +iUS +xLn +xLn +xsv +ovS +vYp +xsv +kYH +kYH +dcj +kYH +iRJ +kYH +kYH +bpU +qBT +bNB +jsi +aFd +lZm +oRQ +euR +wDJ +tTL +lZm +lZm +svj +jsi +iJJ +kYH +rdv +bNB +eff +spx +nDu +eff +iKC +bCg +eff +nLJ +hay +eff +osg +nRr +nRr +gYk +eLQ +lJn +oZc +cTE +rYi +wgu +xLJ +eff +gyY +xcV +gVZ +aex +ifJ +rOY +rOY +ifJ +rOY +gdK +rOY +ifJ +xZW +xZW +ifJ +ifJ +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +aex +bkC +uJi +rOY +rOY +rOY +ifJ +bZs +vLV +ifJ +pJD +uuj +kdm +ifJ +ifJ +mAS +mAS +pFG +mAS +bty +mAS +mAS +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +xZi +vbZ +vbZ +oNn +"} +(164,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +khu +bhp +bhp +crG +crG +uGl +cdu +cdu +cdu +crG +crG +qFQ +nwr +nRr +nRr +nRr +nRr +nRr +nRr +vWz +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +kkE +vWV +nRr +nRr +nRr +nRr +nRr +nRr +vWz +kkE +kkE +kkE +kkE +gCC +bDe +bDe +bDe +bDe +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +ssx +jat +myL +lXa +jat +nxd +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +cqA +wXa +cDt +cDt +xmW +cDt +sMo +iUS +iUS +iUS +iUS +iUS +xsv +pYa +vYp +xsv +nWz +kYH +mhA +kYH +aRR +kYH +kYH +kYH +bpU +aeS +jsi +jsi +vWC +jsi +jsi +pFs +jsi +jsi +bpY +jsi +jsi +kYH +mhQ +fEZ +lPt +eff +spx +slT +eff +sWs +slT +eff +moF +hay +eff +foh +nRr +nRr +dsE +eLQ +xiT +cTE +iMb +eff +eff +eff +eff +kkq +xcV +gVZ +aex +ifJ +ftb +rOY +ifJ +ifJ +ifJ +ifJ +ifJ +xZW +xZW +ifJ +bZs +wVm +ifJ +jPl +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +hnj +ifJ +ftb +rOY +rOY +ifJ +cmU +ifJ +ifJ +rOY +rOY +rOY +rOY +uuj +mAS +uFs +dmk +qkf +dmk +mAS +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +xaN +vbZ +vbZ +oNn +"} +(165,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +bhp +khu +ncN +bhp +crG +nIP +kdP +kdP +kdP +kdP +kqG +crG +bhp +qFQ +nwr +nRr +nRr +nRr +nRr +gYk +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +iwf +nwr +nRr +nRr +nRr +nRr +gYk +iwf +iwf +iwf +iwf +iwf +hvx +bBk +bBk +bBk +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +kXU +ktt +jat +jat +hJP +jat +jat +jat +kjR +kjR +fcf +gPQ +dlM +kjR +fcf +dlM +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +cqA +wXa +iBm +cDt +fuh +pUk +sMo +iUS +nfX +xLn +xLn +xLn +xsv +xsv +cuv +xsv +xsv +xsv +xsv +xsv +xsv +kYH +kYH +kYH +kYH +bpU +jsi +tal +fbb +jsi +huA +fbb +xCR +jsi +jSs +qCJ +jsi +kYH +bpU +aeS +lPt +eff +spx +slT +eff +rPS +kCA +eff +nZp +eff +eff +mEj +nRr +nRr +vWz +eLQ +aKF +cTE +cTE +eff +vKl +lzw +vDu +gBY +xcV +gVZ +aex +ifJ +ifJ +ifJ +ifJ +rOY +rOY +ifJ +jlN +xZW +xZW +ifJ +kcG +jSy +ifJ +gyY +jPl +keG +mBQ +gVZ +gVZ +gVZ +gVZ +fmq +ifJ +ifJ +ifJ +ifJ +ifJ +rOY +emv +sjG +mwn +bdJ +ifJ +rOY +uuj +mAS +jkL +dmk +uFs +dmk +mAS +vbZ +vbZ +nRr +nRr +vWz +vbZ +nRr +nRr +vbZ +nRr +qHA +vbZ +vbZ +oNn +"} +(166,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +vbZ +bhp +bhp +bhp +bhp +khu +bhp +bhp +rsh +lPe +dDW +dDW +dDW +dDW +syV +rsh +bhp +ncN +nmG +nRr +nRr +nRr +nRr +vWz +khu +khu +khu +bhp +bhp +bhp +bhp +bhp +bhp +bhp +xaD +vbZ +vbZ +vbZ +qFQ +nwr +nRr +nRr +gYk +tfr +vbZ +vbZ +bhp +vbZ +qUh +qUh +qUh +sId +ktt +oUN +kjR +kjR +kjR +pwC +dUU +ppn +ppn +ppn +ppn +ppn +dUU +dUU +vIA +vIA +jat +hsA +hZv +mfb +vDa +jat +kjR +fcf +jat +jat +jat +ciS +jat +jat +aBc +aBc +jat +hvw +kjR +kjR +xsv +xsv +xsv +sMo +sMo +sMo +sMo +sMo +sMo +iUS +iUS +xLn +xLn +cyC +xsv +cyC +xLn +xLn +nyb +xLn +xLn +xLn +xsv +kYH +kYH +kYH +kYH +kYH +jsi +tal +aJV +jsi +wFI +fbb +wEx +jsi +iEx +jSs +jsi +kYH +kYH +rdv +lPt +eff +spx +sOb +sXP +bWI +cTE +jPo +cTE +fyH +jkZ +nRr +gne +nRr +nRr +eff +eff +icO +eff +eff +lzw +nRr +vDu +gBY +xcV +gVZ +aex +vdl +rOY +ftb +vdl +rOY +rOY +ifJ +ifJ +tSC +ifJ +ifJ +cmU +ifJ +ifJ +aIh +aIh +aIh +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +rOY +oXd +rOY +syA +syA +syA +ifJ +rOY +cKI +mAS +uFs +dmk +qkf +dmk +mAS +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +oNn +"} +(167,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +bhp +bhp +bhp +xaD +qer +bhp +sRY +rsh +diV +dDW +kor +kor +dDW +syV +rsh +bhp +bhp +nmG +nRr +nRr +nRr +nRr +nRr +shV +khu +oEE +bhp +bhp +xaD +bhp +bhp +xaD +bhp +bhp +bhp +vbZ +vbZ +vbZ +nmG +gYk +nwr +dsE +vbZ +vbZ +vbZ +onr +vbZ +bhp +axW +sId +sId +sId +oUN +kjR +kjR +kjR +dWf +dUU +mBa +ttH +ttH +ttH +ttH +hvs +dUU +kjR +kjR +jat +ubD +tGR +ecJ +mGF +pbU +kjR +vye +aBc +qsS +cNi +mGF +jat +qaJ +euG +rno +jat +oUN +kjR +pwC +xsv +xLn +xLn +xsv +eiA +lxB +xsv +fCV +oYL +iUS +xLn +cyC +xLn +cyC +xsv +cyC +xLn +cyC +xsv +xLn +xLn +xLn +xsv +mhQ +mdS +kYH +kYH +mhQ +jsi +hvI +fbb +jsi +xKh +lBv +egu +jsi +jSs +tHe +jsi +kYH +kYH +rdv +lPt +eff +eff +eff +eff +pFk +cTE +gUg +cTE +cTE +vHA +nRr +nRr +nRr +nRr +nRr +nRr +nRr +eLS +mtO +xlS +nRr +eff +gyY +xcV +gVZ +aex +fts +rOY +vdl +vdl +vdl +cOT +ifJ +rOY +rOY +rOY +ifJ +rOY +rOY +ifJ +bPj +jZy +gJP +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +ifJ +rOY +rOY +rOY +rOY +rOY +rOY +rOY +cKI +mAS +mAS +pFG +mAS +pFG +mAS +mAS +vbZ +vbZ +vbZ +nRr +vbZ +nRr +vWz +vbZ +iNi +vbZ +vbZ +vbZ +oNn +"} +(168,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +bhp +bhp +bhp +qer +bhp +bhp +crG +scy +dDW +kor +kor +dDW +syV +crG +sRY +bhp +nmG +nRr +kyd +oQL +oQL +oQL +gMS +khu +bhp +bhp +bhp +bhp +sRY +xaD +bhp +sRY +vbZ +vbZ +nRr +nRr +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +pWa +vbZ +bhp +axW +gfx +sId +dUU +gki +gki +dUU +aSx +dUU +dUU +rXK +nSP +nSP +kXS +ttH +dJR +dUU +kjR +kjR +jat +dIM +wdo +mGF +uJa +jat +kjR +hZz +aBc +rka +mGF +mGF +rqM +mGF +vql +sVU +jat +oUN +kjR +dWf +xsv +fSF +xLn +pAX +rMu +iwy +xsv +pYa +lQn +asL +xLn +xLn +xLn +cyC +xsv +xLn +xLn +cyC +xsv +nfX +xLn +xLn +xsv +fEZ +wMi +kYH +kYH +rdv +jsi +jsi +jsi +jsi +jsi +jsi +jsi +jsi +jsi +jsi +jsi +kYH +kYH +rdv +lPt +eff +qGZ +uit +mfy +cTE +cTE +xKu +cTE +cTE +anh +nRr +nRr +mKN +nRr +lfD +nRr +iSj +xay +nRr +nRr +nRr +eff +gBY +xcV +gVZ +aex +fts +rOY +rOY +rOY +rOY +rOY +ifJ +gdK +rOY +rOY +qhE +rOY +rOY +ifJ +lhW +lhW +psG +hwa +keG +mBQ +gVZ +gVZ +gVZ +gVZ +hwa +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +mAS +uwA +dmk +mAS +dmk +dmk +mAS +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +ner +ner +vbZ +vbZ +oNn +"} +(169,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +bhp +crG +hWn +dDW +kor +kor +dDW +syV +crG +jTa +sRY +nmG +nRr +qOz +crG +rsh +rsh +rsh +khu +bhp +bhp +bhp +bhp +bhp +bhp +bhp +gUi +vbZ +vbZ +nRr +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +nRr +nRr +vbZ +sRY +axW +sId +jhF +dUU +wvN +oCr +oCr +mjM +tVu +gki +ttH +efh +nSP +ttH +nSP +nkG +dUU +kjR +kjR +jat +jat +ryS +jat +jat +jat +kjR +kjR +jat +jat +ryS +jat +jat +jat +jat +jat +jat +fzi +kjR +wGf +xsv +nfX +xLn +xsv +xsv +xsv +xsv +iUS +iUS +iUS +iUS +iUS +asL +iUS +xsv +xLn +cyC +cyC +xsv +xsv +xsv +xsv +xsv +tki +wMi +kYH +kYH +bpU +ulR +kYH +gLb +iUS +xLn +xLn +asL +xLn +cyC +cyC +iUS +kYH +kYH +rdv +lPt +eff +qGZ +slT +eff +eff +nZp +eff +nZp +eff +eff +aEX +nRr +nRr +nRr +pWq +obm +eAD +gTt +uYZ +nRr +nRr +vDu +gBY +xcV +gVZ +aex +vdl +gdK +rOY +rOY +gdK +rOY +ifJ +rOY +rOY +rOY +ifJ +rOY +ftb +ifJ +hVP +ifJ +ifJ +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +fmq +ifJ +qXG +oix +oix +oix +ifJ +ftb +rOY +vdl +dRS +wVm +mAS +dmk +dmk +mAS +dmk +dmk +mAS +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vWz +aZj +ner +vbZ +vbZ +oNn +"} +(170,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +bhp +vbZ +bhp +bhp +khu +bhp +bhp +rsh +xlv +dDW +kor +kor +dDW +syV +rsh +bhp +bsD +nmG +nRr +vqg +crG +nSN +sng +mkf +mYX +bhp +bhp +bhp +vbZ +bhp +sRY +bhp +bhp +vbZ +nwr +nRr +cPx +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +nRr +vbZ +vbZ +bhp +qUh +sId +sId +dUU +qri +mjM +mjM +mjM +gvo +gki +ttH +ttH +ttH +ttH +ttH +ttH +oxM +kjR +kjR +jat +srD +vXD +jat +aWs +wHW +kjR +kjR +jat +srD +vXD +jat +hIb +oUX +etN +pCs +uaq +kjR +kjR +kjR +xsv +xsv +vmF +xsv +xLn +xLn +xLn +iUS +tki +qgp +ulR +kYH +kYH +kYH +xsv +vmF +xsv +xsv +xsv +lPt +lPt +lPt +lPt +qgp +ulR +kYH +kYH +kYH +kYH +kYH +kYH +iUS +whV +nAe +iUS +xLn +xLn +cyC +iUS +kYH +kYH +rdv +lPt +eff +nbF +slT +eff +rcE +mWl +eff +hOz +hay +eff +bHQ +nRr +gYk +iwf +nwr +hpu +nRr +hpu +nRr +ouO +nRr +vDu +rNs +qHD +gVZ +aex +vdl +vdl +cOT +vdl +cPK +vdl +ifJ +ifJ +tSC +ifJ +ifJ +ifJ +ifJ +ifJ +avy +ifJ +tHd +vLV +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +joM +oix +oix +oix +oix +ifJ +vdl +rOY +cOT +rOY +ubL +mAS +hlf +dmk +mAS +dmk +fwh +mAS +vbZ +vbZ +vbZ +jsA +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +oNn +"} +(171,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +dsE +xQd +vbZ +vbZ +bhp +khu +ncN +bhp +rsh +mjd +dDW +kor +kor +dDW +syV +rsh +bhp +bhp +nmG +nRr +qOz +rJe +pWk +cDe +huF +mYX +bhp +gUi +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +ptU +vbZ +osI +onr +nmG +dsE +nmG +dsE +vbZ +vbZ +nRr +vbZ +sRY +bhp +qUh +jhF +sId +dUU +mjM +mjM +mjM +mjM +mjM +gki +lbF +ttH +jRp +jRp +jRp +jRp +dUU +kjR +kjR +jat +clB +csE +jat +fuI +wHW +kjR +kjR +jat +clB +csE +jat +oUX +oUX +oUX +hUk +uaq +kjR +kjR +kjR +kjR +kjR +kjR +asL +xLn +xLn +xLn +asq +qgp +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +aeS +bNB +tki +lPt +bNB +wMi +kYH +kYH +xsv +xsv +xsv +dyY +xsv +xsv +xsv +xsv +iUS +xLn +xLn +xLn +asL +kYH +kYH +rdv +lPt +eff +nbF +slT +eff +gUY +xSp +eff +qVr +hay +eff +jZt +nRr +dsE +bhp +qFQ +nwr +wav +nRr +nRr +nRr +riY +eff +xcV +gVZ +gVZ +fmq +hOv +qHD +gVZ +fmq +qqH +qqH +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +pdw +ifJ +jxB +bZs +ifJ +jPl +mBQ +gVZ +gVZ +gVZ +gVZ +joM +oix +oix +oix +oix +ifJ +rOY +rOY +vdl +vdl +vdl +mAS +mAS +hsG +mAS +hsG +mAS +mAS +vbZ +suZ +gtJ +dzI +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(172,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +nLw +vbZ +vbZ +bhp +khu +bhp +bhp +crG +dWh +dDW +dDW +dDW +dDW +syV +crG +crG +crG +crG +nRr +yjx +crG +crG +crG +crG +khu +bhp +bhp +vbZ +vbZ +vbZ +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +onr +vpQ +nRr +vbZ +bhp +bhp +qUh +sId +sId +dUU +wTa +rhz +jVq +mjM +iat +dUU +dUU +biz +dUU +dUU +dUU +dUU +dUU +wHW +wHW +jat +jat +jat +jat +fuI +kjR +kjR +kjR +jat +jat +jat +jat +tZZ +tZZ +eKB +tZZ +dOk +kjR +kjR +kjR +pwC +bBk +bBk +iUS +xLn +lQn +xLn +iUS +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +pkZ +aeS +bNB +lPt +wMi +kYH +kYH +xsv +dLZ +kWo +kWo +kWo +dLZ +dLZ +xsv +iUS +xLn +xLn +xLn +iUS +kYH +kYH +rdv +quP +eff +eff +eff +eff +bMD +wcV +eff +xQv +uOv +eff +nRr +gYk +tfr +lsb +bhp +eff +eff +jjw +jjw +jjw +eff +eff +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +ifJ +ifJ +ifJ +ggb +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +joM +oix +oix +oix +oix +qhE +rOY +rOY +rOY +vdl +bhp +qer +bhp +bhp +bhp +bhp +onr +vbZ +vbZ +bhp +vbZ +jsA +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +oNn +"} +(173,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +cnv +vbZ +bhp +bhp +qer +bhp +bhp +crG +uhj +ikS +ikS +ikS +kNg +xcy +crG +fRZ +pRh +crG +nRr +nRr +vWz +dep +bhp +bhp +qer +sRY +bhp +vbZ +vbZ +vbZ +onr +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +axW +sId +gfx +dUU +xuY +mjM +mjM +mjM +mjM +tIS +mjM +mjM +dUU +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +hZz +xZJ +xZJ +jLI +kjR +kjR +kjR +kjR +kjR +kjR +pwC +bBk +kGW +xsv +xsv +xsv +xsv +iUS +asL +iUS +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +aeS +quP +wMi +kYH +kYH +xsv +kWo +kWo +kWo +kWo +kWo +dLZ +xsv +iUS +nfX +xLn +cyC +iUS +kYH +kYH +rdv +lPt +pwZ +xAK +nXZ +eff +eff +eff +eff +eff +eff +eff +psF +dsE +bhp +ncN +xaD +eff +tRw +wCK +qqT +sDu +muL +eff +xcV +gVZ +gVZ +gVZ +gVZ +eff +eff +ndX +eff +eff +eff +eff +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +ifJ +adj +adj +adj +adj +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +ifJ +ifJ +ifJ +ifJ +ifJ +ifJ +rOY +rOY +rOY +vdl +sRY +qer +xaD +bhp +vbZ +vbZ +sRY +bhp +bhp +bhp +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +nRr +vbZ +vbZ +oNn +"} +(174,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +xQd +bhp +bhp +bhp +qer +sRY +bhp +crG +lZM +qWO +qWO +qWO +crG +crG +crG +jYj +crG +crG +nRr +nRr +nRr +vWz +dep +bhp +qer +bhp +bhp +xaD +vbZ +vbZ +vbZ +xaD +bhp +onr +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +axW +sId +sId +dUU +mjM +mjM +mjM +mjM +jOk +dUU +nlu +mjM +dUU +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +wGf +waR +gfx +xsv +ovS +rVc +xsv +eiA +xLn +asq +kYH +mhQ +lAc +mdS +vbI +gSH +gSH +gSH +gSH +gSH +sLZ +kYH +kYH +rdv +bNB +wMi +kYH +kYH +xsv +xsv +cuv +xsv +kWo +kWo +dLZ +xsv +iUS +iUS +iUS +iUS +iUS +kYH +kYH +rdv +lPt +pwZ +dbw +nXZ +fQL +eff +iFw +rYM +mtu +iaH +eff +psF +dsE +xaD +bhp +bhp +eff +gvJ +aUt +ppv +lBr +wWV +eff +xcV +gVZ +gVZ +gVZ +hwa +eff +pyH +aUt +aPt +aUt +aUt +eff +cPK +cPK +cPK +vdl +cOT +vdl +ifJ +adj +arm +adj +ogF +btA +xcV +gVZ +gVZ +gVZ +gVZ +aex +vvf +wLI +wLI +wLI +vdl +gdK +rOY +rOY +vdl +xaD +qer +bhp +vbZ +vbZ +bhp +bhp +xaD +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +oNn +"} +(175,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +xaD +qer +bhp +bhp +crG +dYt +qWO +qWO +qWO +crG +aFN +mxs +ndc +iuU +crG +mfK +nRr +nRr +nRr +dsE +bhp +qer +bhp +bhp +bhp +vbZ +vbZ +vbZ +onr +bhp +xaD +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +xaD +bhp +axW +gfx +sId +dUU +dUU +gki +gki +gki +dUU +dUU +mjM +pBG +dUU +kjR +kjR +uYf +uYf +uYf +uYf +uYf +hAi +hvw +kjR +kjR +pwC +vmp +vmp +ehS +ehS +ehS +ehS +ehS +bBk +bBk +bBk +hvw +kjR +kjR +wGf +eGC +xsv +pYa +vYp +xsv +kTF +vtM +iUS +kYH +bpU +aeS +kxW +tqc +nXZ +lhU +lhU +lhU +nXZ +eyd +kYH +kYH +bpU +aeS +wMi +kYH +kYH +xsv +eiA +vYp +xsv +kWo +kWo +xsv +xsv +lPt +quP +bNB +qgp +ulR +kYH +kYH +xsv +xsv +xsv +xsv +nXZ +nXZ +eff +nHj +aHg +iNg +iIN +eff +nRr +vWz +dep +xaD +jrT +eff +xwb +uNv +oIa +sDu +laP +eff +xcV +gVZ +gVZ +gVZ +aex +eff +liW +aUt +tpF +jkR +aUt +eff +rOY +rOY +rOY +rOY +rOY +rOY +ifJ +adj +arm +adj +adj +btA +xcV +gVZ +gVZ +gVZ +gVZ +aex +vvf +wLI +wLI +wLI +vdl +vdl +vdl +cOT +mAS +mAS +mAS +mAS +mAS +mAS +mAS +mAS +mAS +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +vbZ +nRr +vbZ +vbZ +oNn +"} +(176,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +bhp +khu +bhp +bhp +crG +mEe +qWO +qWO +qWO +dWg +ndc +ndc +ndc +ndc +qfc +nRr +nRr +nRr +nRr +vWz +dep +khu +xaD +bhp +bhp +bhp +vbZ +onr +bKx +sRY +bhp +onr +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +bhp +bhp +bhp +dUU +dUU +dUU +dUU +itm +mjM +mjM +mjM +mjM +pBG +ckq +ncq +dUU +kjR +kjR +uYf +qYm +qYm +qYm +uYf +uYf +uYf +jHw +uYf +uYf +vIA +vIA +ehS +iEw +jfH +rBL +ehS +ehS +ehS +ehS +ehS +kjR +kjR +kjR +dWf +xsv +xsv +cuv +xsv +xsv +xsv +xsv +kYH +kYH +bpU +aeS +xsv +nXZ +vaN +rcC +osY +lhU +kcy +kYH +kYH +kYH +bpU +ulR +kYH +kYH +xsv +ovS +dcr +xsv +wHd +kWo +fXF +xsv +lPt +bNB +qgp +ulR +kYH +kYH +qQb +sau +tsX +vFb +xsv +nXZ +nXZ +eff +vOZ +asr +iNg +fDT +wGl +nRr +nRr +vWz +kkE +vWV +eff +tXY +wbb +vRN +aUt +hYD +eff +jPl +mBQ +gVZ +gVZ +aex +eff +kfU +aUt +tpF +jkR +aUt +eff +gdK +gdK +gdK +rOY +rOY +gdK +ifJ +arm +arm +adj +ogF +btA +xcV +gVZ +gVZ +gVZ +gVZ +aex +vvf +wLI +wLI +wLI +wLI +pMd +xcV +gVZ +mAS +rOY +rOY +rOY +rOY +mAS +tHd +vLV +mAS +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nJY +qfX +qfX +vbZ +vbZ +oNn +"} +(177,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +bhp +bhp +khu +ncN +bhp +crG +aUw +kdP +kdP +qWx +lFj +bMA +ndc +ndc +jBH +crG +nRr +nRr +nRr +lqo +nRr +wof +khu +bhp +xaD +sRY +vbZ +vbZ +vbZ +xaD +bhp +bhp +vbZ +vbZ +vbZ +onr +nmG +dsE +nmG +dsE +xaD +vbZ +vbZ +vbZ +bhp +bhp +dUU +qig +cPM +xwJ +mjM +tCF +mjM +mjM +mjM +mjM +tCF +bSS +dUU +kjR +pwC +uYf +cTJ +jHI +cTJ +kMX +cTJ +cTJ +hSu +cTJ +uYf +nOM +nOM +ehS +chh +cTJ +cTJ +ehS +tqg +gAC +hYI +ehS +dWd +ukl +kjR +wGf +gvP +xsv +xLn +xLn +xLn +xLn +xsv +kYH +kYH +kYH +rdv +xsv +ckt +qUB +qUB +iQB +lhU +eyd +kYH +kYH +kYH +kYH +kYH +kYH +kYH +xsv +xsv +xsv +xsv +xsv +xsv +xsv +xsv +pkZ +pkZ +ulR +kYH +kYH +kYH +qQb +vgM +tsX +lBW +xsv +nXZ +nXZ +eff +bLf +htJ +iNg +rvL +eff +nRr +nRr +qoH +mUl +mUl +eff +eff +eff +eff +ndX +eff +eff +kkq +xcV +gVZ +gVZ +aex +eff +tIK +aUt +tpF +jkR +aUt +eff +vdl +vdl +vdl +rOY +rOY +rOY +ifJ +adj +adj +adj +adj +btA +xcV +gVZ +gVZ +gVZ +gVZ +aex +sjD +wLI +wLI +wLI +wLI +xYm +xcV +gVZ +mAS +ftb +rOY +rOY +rOY +mAS +jxB +bZs +mAS +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +rpL +vbZ +vbZ +vbZ +oNn +"} +(178,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +khu +bhp +bhp +crG +chD +aVH +oDz +ooW +crG +xEb +ndc +ndc +gGp +rsh +nRr +nRr +nRr +nRr +nRr +dsE +khu +bhp +bhp +bhp +vbZ +vbZ +vbZ +xaD +bhp +xaD +vbZ +vbZ +vbZ +xaD +nmG +dsE +nmG +dsE +onr +ner +bhp +bhp +bhp +xaD +dUU +pxq +rya +dUU +dUU +dUU +hRz +dUU +dUU +reS +dUU +gki +dUU +kjR +huq +uYf +uYf +uYf +uYf +uYf +hdu +fUn +kWJ +bYU +uYf +kjR +kjR +kll +cTJ +ueY +cTJ +kMX +cTJ +cTJ +rPK +uuy +kjR +kjR +kjR +kjR +dWf +xsv +xLn +lQn +xLn +nfX +xsv +mhQ +mdS +kYH +bpU +xsv +ruh +qUB +qUB +pTA +lhU +eyd +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +qQb +ugc +tsX +aqw +xsv +nXZ +nNG +eff +iXX +vxk +mtu +hYm +eff +ekP +nRr +qoH +gne +nRr +gPk +tyE +cLP +xoy +nRr +hHV +eff +gyY +xcV +gVZ +gVZ +aex +eff +uVr +tpF +tpF +jkR +aUt +eff +rOY +rOY +cOT +rOY +rOY +ftb +ifJ +ogF +adj +adj +ogF +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +fmq +jim +sjD +wLI +wLI +xYm +rNs +qHD +hwa +mAS +hsG +hsG +mAS +tSC +mAS +mAS +cmU +mAS +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nJY +qfX +nJY +vbZ +vbZ +oNn +"} +(179,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +bhp +bhp +qer +bhp +bhp +crG +lZV +aVH +oDz +ooW +crG +jGm +ndc +bIl +tOs +rsh +nwr +nRr +nRr +nRr +nRr +dsE +qer +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +gUi +vbZ +vbZ +vbZ +onr +bhp +nmG +dsE +nmG +dsE +onr +vbZ +vbZ +bhp +bhp +bhp +dUU +dUU +dUU +dUU +ibo +mZH +mjM +oEc +dUU +mjM +kGb +mjM +dUU +kjR +wGf +uYf +cTJ +wyQ +cTJ +kMX +cTJ +hoj +fMw +cTJ +uuy +kjR +kjR +kll +cTJ +ygz +xZC +ehS +sVk +dLR +moi +ehS +phb +ukl +kjR +kjR +dWf +xsv +vmF +xsv +daq +daq +xsv +tcd +wMi +kYH +kYH +xsv +kIk +eSC +isx +uEm +lhU +eyd +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +qQb +sZe +tsX +aJk +xsv +nXZ +nXZ +eff +pfH +haa +fLM +eff +eff +eff +eff +eff +bHQ +mKN +sKV +dOZ +vTN +fLS +nRr +nRr +vDK +gyY +xcV +gVZ +gVZ +aex +eff +jkR +jkR +jkR +aUt +aUt +eff +gwa +rOY +vdl +vdl +cPK +vdl +ifJ +ifJ +ifJ +adj +ifJ +ifJ +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +jbo +hnj +sjD +xYm +rNs +qHD +gVZ +aex +eRG +qHD +gVZ +mAS +rOY +gdK +gdK +rOY +mAS +bKx +vbZ +vbZ +nRr +ozq +vbZ +nRr +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(180,1,1) = {" +oNn +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +bhp +bhp +qer +bhp +bhp +crG +bNf +ikS +ikS +wJL +crG +xfc +hZb +fhE +xtj +rsh +nmG +nRr +fiu +nRr +fVF +dsE +qer +gUi +bhp +vbZ +vbZ +vbZ +bhp +gUi +bhp +vbZ +vbZ +vbZ +onr +sRY +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +gki +nLX +mjM +mjM +mjM +dUU +jLj +kmC +etd +dUU +kjR +kjR +uYf +qYm +qYm +qYm +uYf +cTJ +xVB +ecG +cTJ +uYf +qBK +kjR +ehS +jHw +ehS +ehS +ehS +oSn +ehS +ehS +ehS +kjR +kjR +kjR +kjR +wGf +fzi +kjR +wGf +bDe +aeS +tki +lPt +kxW +mdS +kYH +xAK +nXZ +lhU +lhU +lhU +nXZ +eyd +kYH +kYH +mhQ +lAc +lAc +lAc +lAc +lAc +lAc +lAc +mdS +kYH +mhQ +mdS +kYH +kYH +kYH +kYH +kYH +kYH +kYH +qQb +vgM +tsX +jxH +xsv +nXZ +nXZ +eff +usR +gtS +bbR +eff +cTo +qkj +gnO +eff +lNa +nRr +nRr +hHV +qlg +djg +nRr +nRr +vDK +rNs +qHD +gVZ +gVZ +fmq +eff +aUt +aUt +aUt +aUt +aUt +eff +vdl +vdl +vdl +kkq +rNs +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qqH +qqH +qHD +gVZ +gVZ +fmq +qHD +gVZ +gVZ +qhE +rOY +rOY +rOY +rOY +mAS +bhp +vbZ +vbZ +nJY +dzI +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(181,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +xaD +bhp +qer +bhp +bhp +crG +crG +crG +crG +crG +crG +crG +crG +crG +crG +crG +nmG +nRr +nRr +nRr +cAa +dsE +qer +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +sRY +onr +vbZ +vbZ +vbZ +xaD +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +vbZ +sRY +xaD +bhp +sRY +gki +pMt +mjM +oCr +oCr +dUU +mjM +idz +mjM +dUU +kjR +kjR +uYf +uYf +uYf +uYf +uYf +avc +uYf +uYf +oSn +uYf +nMX +kjR +kjR +kjR +ukf +ehS +poY +puB +ehS +wkv +dVF +bBk +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +bpU +pkZ +pkZ +pkZ +ulR +kYH +knk +juX +pWl +nXZ +vZL +juX +ojZ +kYH +mhQ +fEZ +xsv +xsv +xsv +xsv +xsv +xsv +xsv +xsv +kYH +rdv +iUS +iUS +asL +iUS +iUS +iUS +kYH +kYH +enN +xsv +tsX +xsv +xsv +juX +juX +eff +tsB +anL +iNg +aYx +iNg +iNg +iNg +eff +nLo +rLf +aQS +nRr +nRr +ouO +nRr +jBw +eff +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +fmq +qqH +qqH +qqH +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +ryC +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +mAS +rOY +gdK +rOY +rOY +mAS +bhp +bKx +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(182,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +bhp +bhp +khu +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +qFQ +iwf +nwr +nRr +vEM +dsE +khu +bhp +sRY +vbZ +vbZ +vbZ +onr +bhp +xaD +vbZ +vbZ +vbZ +vbZ +bhp +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +bhp +bhp +gUi +xaD +bhp +dUU +hyN +mjM +wOD +tbd +dUU +dUU +dUU +dUU +dUU +kjR +kjR +dWf +jhF +gfx +uYf +qYm +cTJ +uYf +poY +puB +uYf +sDd +sAr +sAr +sAr +kjR +ehS +hlT +nMy +ehS +wkv +ojk +kvp +hoX +hvw +kjR +kjR +kjR +kjR +kjR +kjR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +fEZ +qgp +ulR +kYH +kYH +kYH +rdv +lPt +xsv +vYp +vYp +pAX +xLn +xLn +xLn +xsv +kYH +rdv +iUS +xLn +xLn +cyC +cyC +iUS +kYH +kYH +kYH +kYH +kYH +bpU +ulR +kYH +kYH +eff +nUf +vOy +cfA +eff +iNg +sji +gAJ +eff +eQQ +kXI +cqw +aOi +mKN +nRr +gYk +hUj +eff +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +mAS +mAS +ifJ +ifJ +ifJ +mAS +bhp +bhp +vbZ +vwM +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(183,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +bhp +vbZ +khu +ncN +bhp +bhp +bhp +bhp +bhp +ncN +bhp +bhp +sRY +bhp +bhp +ncN +bhp +bhp +qFQ +iwf +iwf +hUj +khu +bhp +bhp +bhp +vbZ +vbZ +onr +sRY +bhp +vbZ +vbZ +vbZ +vbZ +onr +nmG +dsE +nmG +dsE +xaD +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +bhp +bhp +dUU +rop +mjM +eeR +eeR +dUU +qsQ +bDe +bDe +fzi +kjR +kjR +dWf +sId +sId +uYf +qYm +bHW +uYf +hlT +llb +uYf +bjm +bjm +bjm +bjm +ehS +ehS +ehS +ehS +ehS +wkv +ojk +svb +dak +fzi +kjR +kjR +kjR +pwC +hvw +kjR +xsv +xsv +xsv +xsv +mdS +kYH +kYH +bpU +aeS +wMi +kYH +kYH +kYH +mhQ +fEZ +lPt +xsv +vYp +iwy +xsv +nfX +xLn +xLn +nxe +lnQ +pvR +iUS +nfX +xLn +xLn +xLn +iUS +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +eff +eff +vGN +eff +eff +nJa +eff +eff +eff +eff +ont +ont +eff +ont +ont +eff +eff +eff +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +aex +gBY +gBY +vcb +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +nmG +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(184,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +khu +khu +khu +qer +qer +qer +khu +khu +khu +qer +qer +qer +khu +khu +khu +qer +qer +qer +khu +khu +khu +xaD +bhp +sRY +vbZ +vbZ +bKx +bhp +bhp +bhp +vbZ +vbZ +vbZ +onr +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +xaD +bhp +gUi +dUU +dUU +dUU +dUU +dUU +dUU +fzi +kjR +kjR +kjR +kjR +kjR +dWf +ktt +jhF +uYf +qYm +cTJ +uYf +uYf +uYf +uYf +xBG +xBG +xBG +mcj +rYV +aDi +mGF +rYV +wkv +ojk +ojk +qdM +fzi +kjR +kjR +kjR +kjR +guf +oUN +kjR +xsv +ovS +nlK +xsv +kxW +mdS +kYH +kYH +bpU +ulR +kYH +kYH +kYH +bpU +xsv +xsv +xsv +xsv +xsv +xsv +xsv +xLn +cyC +nxe +vSU +btF +iUS +iUS +iUS +iUS +asL +iUS +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +eff +kgD +fEI +eff +tki +lPt +gBY +bkC +rNs +qqH +qqH +qqH +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +dhe +iRp +iRp +iRp +iRp +iRp +iRp +dhe +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +aex +gBY +gBY +vcb +bhp +bhp +bhp +bhp +bhp +bhp +bhp +nmG +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(185,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +khu +gUi +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +onr +bKx +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +sRY +bhp +axW +gfx +dak +nlE +bDe +fzi +kjR +kjR +kjR +kjR +kjR +kjR +wGf +bDe +bDe +uYf +uYf +uYf +uYf +xZJ +xZJ +acP +bDe +bDe +bDe +fzi +rYV +oeW +mGF +rYV +wkv +ojk +qdM +fzi +kjR +kjR +kjR +kjR +kjR +dWf +oUN +kjR +xsv +pYa +iyF +xsv +lPt +wMi +kYH +kYH +kYH +kYH +kYH +kYH +kYH +vbI +cDt +cDt +cDt +cDt +cDt +xsv +xLn +xLn +xLn +xsv +cxe +kYH +kYH +gOo +iUS +xLn +xLn +iUS +iUS +tKo +iUS +iUS +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +lAc +fEZ +eff +cvU +rCL +eff +lPt +quP +rNs +qqH +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +ifJ +ifJ +ifJ +ifJ +gVZ +gVZ +dhe +dhe +dhe +dhe +dhe +bAZ +bAZ +bAZ +bAZ +bAZ +bAZ +bAZ +dhe +dhe +dhe +iRp +iRp +iRp +iRp +iRp +iRp +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +bhp +bhp +vbZ +jsA +vbZ +vbZ +vbZ +vbZ +oNn +"} +(186,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +qer +sRY +bhp +bhp +bhp +xaD +bhp +bhp +gUi +bhp +bhp +bhp +xaD +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +onr +nmG +dsE +nmG +dsE +onr +ner +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +ikm +bDe +fzi +qPw +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +rYV +fSK +rYV +rYV +eUw +rYV +jat +jat +jat +jat +jat +jat +jat +ciS +jat +jat +fzi +kjR +xsv +xsv +nOQ +xsv +xsv +kxW +mdS +kYH +kYH +kYH +kYH +kYH +kYH +xAK +cDt +cDt +cDt +cDt +cDt +pjd +xLn +xLn +xLn +tyw +kYH +kYH +kYH +kYH +iUS +whV +xLn +iUS +exL +qyI +eCc +hdv +kYH +kYH +kYH +kYH +kYH +mhQ +fEZ +lPt +qgp +eff +eff +eff +eff +pkZ +pkZ +qHD +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +hwa +beT +ifJ +bZs +wVm +ifJ +gVZ +gVZ +dhe +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +dhe +iRp +iRp +iRp +iRp +iRp +iRp +dhe +iRp +tBQ +taL +pnE +oBG +jls +sTT +wpS +mLR +taL +blU +lBK +hks +gMF +taL +lEm +sZq +wsP +wGy +dhe +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(187,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +bhp +sRY +bhp +sRY +bhp +bhp +bhp +bhp +bhp +sRY +bhp +sRY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +sRY +jat +jat +jat +ciS +jat +jat +aBc +aBc +aBc +jat +jat +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +eUw +mGF +mGF +bcC +mGF +mGF +jat +hgN +bcC +mGF +rqM +mGF +mGF +mGF +fBm +jat +kjR +kjR +xsv +kBY +frH +mlL +xsv +qgp +ulR +kYH +kYH +kYH +mhQ +mdS +kYH +xAK +cDt +cDt +cDt +cDt +cDt +xsv +cyC +cyC +cyC +xsv +kGp +oog +kYH +wiE +sMo +sMo +sMo +sMo +udg +eCc +qhJ +hdv +kYH +kYH +kYH +kYH +kYH +bpU +qBT +qgp +ulR +kYH +kYH +kYH +kYH +kYH +kYH +gVZ +gVZ +gVZ +gVZ +hwa +mBQ +gVZ +gVZ +hwa +beT +kkq +ifJ +bZs +jSy +ifJ +gVZ +gVZ +dhe +iRp +iRp +iRp +iRp +fsi +iRp +iRp +iRp +iRp +iRp +iRp +nbg +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +ded +iRp +uwV +taL +lqY +kty +agW +nun +nun +nun +sPd +gMF +dma +mlN +gMF +taL +fcR +onR +rvq +gMF +dhe +bhp +bhp +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(188,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +bhp +xaD +gUi +bhp +vbZ +vbZ +vbZ +xaD +sRY +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +jat +lyW +lcD +ecJ +mGF +rqM +mGF +mGF +eJe +cXL +jat +kjR +kjR +qUh +bjm +qUh +rQU +rQU +qUh +qUh +qUh +rQU +rQU +qUh +qUh +mGF +mGF +mGF +mGF +qaJ +jat +gxw +nlN +jkl +jat +wCZ +mGF +mGF +fOr +jat +kjR +kjR +tyw +rtr +bgU +iMn +xsv +ulR +kYH +kYH +kYH +kYH +rdv +xsv +xsv +xsv +xsv +cDt +cDt +cDt +cDt +xsv +xsv +xsv +xsv +xsv +sMo +kYH +eBi +kYH +sMo +ovS +dcr +sMo +inZ +lRr +eCc +hdv +kYH +kYH +kYH +kYH +kYH +kYH +bpU +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +gVZ +gVZ +hwa +keG +beT +xcV +gVZ +gVZ +ifJ +ifJ +ifJ +ifJ +cmU +ifJ +ifJ +gVZ +gVZ +dhe +iRp +iRp +iRp +iRp +lFX +iRp +cLv +eFF +tiU +iRp +iRp +vZU +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +qZs +taL +guJ +nun +nun +nun +nun +tRB +taL +gMF +gMF +gMF +gMF +taL +kWY +wsP +kWY +gMF +dhe +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(189,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +pCm +sRY +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +onr +nmG +dsE +nmG +dsE +xaD +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +jat +uHX +fXY +mGF +mGF +jat +fPa +mGF +nBd +rno +jat +kjR +kjR +wGf +gvP +qUh +xgz +xgz +mGF +qUh +wJJ +mGF +bXC +koj +qUh +mGF +mGF +mGF +mGF +jat +jat +jat +jat +jat +jat +kuU +oPZ +mGF +qRn +jat +kjR +kjR +xsv +hiP +hzX +lZR +xsv +kYH +kYH +kYH +kYH +fTk +fEZ +nxe +ovS +dcr +xsv +xsv +xsv +xsv +xsv +xsv +xLn +xLn +xLn +xLn +sMo +sMo +sMo +sMo +sMo +pYa +vYp +sMo +hDe +inZ +inZ +hdv +kYH +kYH +fFY +fFY +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +gVZ +gVZ +fmq +hnj +kkq +xcV +gVZ +gVZ +qhE +rOY +rOY +rOY +rOY +ifJ +tYn +gVZ +gVZ +dhe +iRp +iRp +iRp +iRp +mPY +iRp +iRp +iRp +iRp +iRp +iRp +egv +oio +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +evK +taL +jez +jez +jez +jez +jez +jez +taL +tjR +gMF +gMF +gMF +cFG +gMF +gMF +gMF +gMF +dhe +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(190,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +suZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +pCm +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +onr +bKx +bhp +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +nmG +dsE +nmG +dsE +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +jat +uQM +aMI +gyF +fBm +jat +jat +rmu +mGF +jat +jat +kjR +kjR +kjR +dWf +rQU +pfw +nVx +mGF +rqM +mGF +mGF +vql +qaJ +qUh +mGF +mGF +vql +mGF +jat +xrb +qiu +trw +nDb +rqM +mGF +mGF +aTU +mGF +jat +hvw +kjR +nxe +jNt +qXX +mIn +xsv +kYH +kYH +kYH +mhQ +fEZ +lPt +xsv +pYa +vYp +xsv +xLn +xLn +xLn +xLn +xsv +xLn +xLn +xLn +xLn +sMo +xLn +xLn +xLn +sMo +sMo +cuv +sMo +sMo +sMo +sMo +iUS +kYH +ssW +pso +pso +qEi +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +mdS +kYH +kYH +gVZ +gVZ +gVZ +fmq +gVo +xcV +gVZ +gVZ +ifJ +gdK +rOY +rOY +rOY +ifJ +xcV +gVZ +gVZ +bAZ +iRp +iRp +iRp +iRp +ruk +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +jGH +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +bWa +taL +gMF +apG +pgk +pgk +taL +pgk +pgk +pgk +pgk +dhe +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(191,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +dxS +suZ +siL +bKx +bhp +bhp +bhp +bhp +pCm +xaD +bhp +sRY +vbZ +vbZ +vbZ +vbZ +ner +onr +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +iwf +vbZ +xaD +nmG +dsE +nmG +dsE +xaD +sRY +vbZ +vbZ +vbZ +onr +vbZ +bhp +bhp +jat +jat +jat +jat +jat +jat +vqM +mGF +mGF +aBc +kjR +kjR +kjR +kjR +wGf +qUh +vOl +ufx +mGF +qUh +qUh +ryS +qUh +qUh +qUh +rYV +rYV +rYV +rYV +jat +sAB +xUT +tUK +bTi +jat +jat +ryS +jat +jat +jat +oUN +kjR +xsv +xsv +xsv +xsv +xsv +iUS +mdS +kYH +rdv +xsv +xsv +xsv +xsv +cuv +xsv +xLn +xLn +xLn +xLn +xsv +xLn +xLn +xLn +xLn +sMo +xLn +xLn +xLn +sMo +xLn +xLn +cyC +cyC +cyC +sMo +wMi +kYH +ssW +pso +pso +qEi +kYH +kYH +kYH +kYH +mhQ +lAc +ekq +mAS +mAS +mAS +mAS +mAS +tSC +mAS +mAS +xcV +gVZ +gVZ +fWl +gdK +rOY +rOY +gdK +ifJ +xcV +gVZ +gVZ +bAZ +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(192,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +siL +vbZ +vbZ +vbZ +bhp +bhp +bhp +qer +bhp +bhp +vbZ +vbZ +vbZ +vbZ +sRY +onr +bKx +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +onr +vbZ +bKx +nmG +dsE +nmG +dsE +onr +vbZ +vbZ +vbZ +bhp +bhp +gUi +sRY +bhp +sRY +bhp +bhp +bhp +bhp +jat +qaJ +mGF +pjF +jat +kjR +kjR +kjR +kjR +kjR +pbU +mGF +mGF +mGF +hxl +qUh +tvl +cwY +qUh +rBU +mGF +eUw +jyj +cwY +jat +bqg +dPB +hmi +vxB +jat +srD +vXD +jat +ktt +dak +fzi +kjR +kjR +iUS +coC +vHb +lMP +iUS +wMi +kYH +rdv +nxe +cyC +cyC +cyC +xLn +xsv +xLn +xLn +xLn +xLn +xsv +iUS +asL +iUS +iUS +sMo +xLn +xLn +xLn +nyb +xLn +xLn +xLn +xLn +cyC +sMo +wMi +kYH +kYH +ovE +ovE +kYH +kYH +kYH +fFY +fFY +bpU +qBT +fXg +mAS +tHd +qjK +mAS +rOY +rOY +rOY +mAS +qHD +gVZ +gVZ +fWl +gdK +gdK +rOY +rOY +ifJ +xcV +gVZ +gVZ +bAZ +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(193,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +ner +jBW +bKx +vbZ +vbZ +nwr +nRr +vbZ +vbZ +ner +ner +vbZ +onr +nmG +dsE +nmG +dsE +bKx +vbZ +vbZ +bhp +sRY +bhp +gUi +bhp +bhp +bhp +bhp +sRY +xaD +bhp +jat +jat +ryS +jat +jat +kjR +kjR +kjR +kjR +pwC +qUh +mUP +mGF +uvR +dAt +qUh +aQs +kNb +qUh +vNZ +mGF +rYV +oeW +eMj +jat +jat +jat +jat +jat +jat +clB +csE +jat +dak +fzi +kjR +kjR +kjR +asL +xLn +xLn +xLn +oeb +wMi +kYH +rdv +nxe +xLn +xLn +xLn +xLn +nyb +xLn +xLn +xLn +nfX +xsv +ulR +kYH +kYH +rdv +sMo +nfX +xLn +xLn +sMo +xLn +xLn +xLn +xLn +xLn +sMo +wMi +kYH +kYH +kYH +kYH +kYH +kYH +ssW +pso +pso +qEi +bpU +pKN +mAS +jxB +bZs +iKj +rOY +rOY +rOY +mAS +gVZ +gVZ +gVZ +ifJ +ifJ +ifJ +rOY +rOY +ifJ +xcV +gVZ +gVZ +bAZ +iRp +iRp +hSf +iRp +iRp +iRp +gIF +ebR +ebR +iPM +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +bKx +ffB +nRr +nRr +vbZ +vbZ +oNn +"} +(194,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +qer +bhp +sRY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +bhp +bhp +qFQ +vbZ +vbZ +ner +ner +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +xaD +vbZ +bhp +vbZ +bhp +bhp +xaD +jat +srD +vXD +jat +hvw +kjR +kjR +pwC +bBk +kGW +qUh +qUh +ciS +qUh +qUh +qUh +rQU +qUh +qUh +mGF +lXa +rYV +rYV +rYV +rYV +dWf +sId +sId +oUN +jat +jat +jat +jat +oUN +kjR +kjR +kjR +kjR +iUS +nHV +lQn +xLn +iUS +wMi +kYH +bpU +nxe +cyC +xLn +xLn +cyC +xsv +xsv +nxe +nxe +xsv +xsv +kYH +kYH +kYH +rdv +sMo +sMo +sMo +sMo +sMo +xLn +xLn +xLn +cyC +xLn +sMo +ulR +kYH +kYH +fFY +fFY +kYH +kYH +ssW +pso +pso +qEi +kYH +rdv +mAS +mAS +mAS +mAS +rOY +rOY +rOY +mAS +gVZ +gVZ +gVZ +aex +kkq +ifJ +ifJ +tSC +ifJ +xcV +gVZ +gVZ +bAZ +iRp +iRp +cfB +iRp +iRp +iRp +txj +iIf +mDd +oZW +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +gIF +ebR +ebR +ebR +ebR +ebR +ebR +mMV +mMV +mMV +jTn +guU +vfm +iRp +iRp +iRp +iRp +dhe +bhp +bhp +bhp +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(195,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +lYI +lQP +wPP +vbZ +vbZ +vbZ +vbZ +bhp +pCm +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +ner +ner +vbZ +vbZ +vbZ +nmG +dsE +nmG +dsE +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +jat +clB +csE +jat +fzi +kjR +kjR +dWf +sId +gfx +uXQ +qIo +veM +veM +veM +veM +akv +akv +rYV +mGF +mGF +eUw +kjR +kjR +kjR +wGf +waR +dak +fzi +kjR +kjR +kjR +wGf +fzi +kjR +kjR +kjR +kjR +iUS +iUS +iUS +asL +iUS +wMi +kYH +kYH +xsv +xsv +xsv +vmF +xsv +xsv +tki +cCO +qgp +ulR +kYH +kYH +kYH +kYH +rdv +bNB +tki +cCO +tki +sMo +sMo +vmF +sMo +jmJ +sMo +sMo +kYH +kYH +ssW +pso +pso +qEi +kYH +kYH +ovE +ovE +kYH +kYH +bpU +xWZ +nWz +nDd +mAS +ftb +rOY +rOY +mAS +gVZ +gVZ +gVZ +fmq +gVo +ifJ +rOY +rOY +ifJ +fFN +gVZ +gVZ +bAZ +iRp +iRp +iRp +iRp +iRp +iRp +txj +dgR +bCQ +rGP +ebR +ebR +ebR +dft +ebR +ebR +ebR +ebR +dft +wZf +wZf +wZf +wZf +txj +bCQ +iWu +bCQ +edo +vpx +gxt +mMV +mMV +mMV +eZe +jTn +guU +siX +vfm +iRp +iRp +dhe +bhp +bhp +bhp +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(196,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +nRr +qOz +lQP +knv +vbZ +vbZ +vbZ +vbZ +vbZ +pCm +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +gUi +bhp +onr +vbZ +vbZ +vbZ +vbZ +vbZ +onr +sRY +bhp +vbZ +nmG +dsE +nmG +dsE +vbZ +bhp +bhp +vbZ +vbZ +bhp +nmG +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +jat +jat +jat +jat +kjR +kjR +kjR +dWf +sId +sId +uXQ +veM +veM +veM +veM +veM +veM +veM +rYV +mGF +qaJ +rYV +kjR +kjR +kjR +kjR +wGf +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +iUS +irg +dVD +xLn +iUS +kYH +kYH +kYH +kYH +bpU +ulR +kYH +kYH +bpU +pkZ +tKJ +ulR +kYH +kYH +kYH +mhQ +mdS +bpU +aeS +bNB +lPt +lPt +bNB +wMi +kYH +bpU +pkZ +ulR +kYH +kYH +kYH +ssW +pso +pso +qEi +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +dIr +mAS +mAS +mAS +mAS +mAS +mBQ +gVZ +gVZ +gVZ +fmq +lup +rOY +rOY +ifJ +qHD +gVZ +gVZ +bAZ +iRp +iRp +iRp +iRp +iRp +iRp +txj +leQ +bCQ +txj +agR +oeF +bCQ +txj +ftr +bCQ +yeo +fJH +txj +iCC +ewo +ewo +bCQ +txj +ewo +uds +ewo +hsQ +gxt +qZy +siX +siX +siX +eZe +gnU +eHp +uFo +sdL +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(197,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +nRr +qOz +lQP +kin +vbZ +vbZ +vbZ +vbZ +bhp +pCm +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +sRY +bhp +xaD +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +bhp +bhp +bhp +nmG +dsE +nmG +dsE +bhp +bhp +bhp +vbZ +vbZ +ner +vbZ +vbZ +vbZ +vbZ +sRY +gUi +bhp +bhp +qXO +hvw +kjR +kjR +kjR +kjR +kjR +guf +gfx +jat +jat +jat +jat +aBc +jat +ciS +jat +jat +jat +jat +jat +rYV +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +hvw +kjR +kjR +kjR +iUS +fCV +xLn +faE +oeb +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +rnU +wMi +kYH +bpU +pkZ +pkZ +pkZ +pkZ +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +ovE +ovE +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +cOT +rOY +gJJ +rOY +vdl +xcV +gVZ +gVZ +gVZ +gVZ +ifJ +ftb +rOY +ifJ +gVZ +gVZ +gVZ +dhe +iRp +iRp +iRp +gIF +ebR +ebR +vgo +lgE +bCQ +nbq +bCQ +bCQ +bCQ +txj +sTX +bCQ +fJH +hpC +txj +bCQ +ewo +ewo +bCQ +bCQ +ewo +wHr +ewo +jaI +gxt +hxD +uFo +uFo +uFo +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(198,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +qOz +lQP +wPP +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +bhp +vbZ +bhp +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +sRY +bhp +bhp +oKI +nmG +dsE +nmG +dsE +oKI +bhp +bhp +bhp +onr +onr +vbZ +vbZ +vbZ +xaD +bhp +bhp +bhp +bhp +axW +xnz +bBk +bBk +hvw +kjR +kjR +wGf +gvP +aBc +oCA +mGF +rqM +mGF +bcC +mGF +rqM +mGF +bcC +mGF +aBc +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +pwC +sMo +sMo +sMo +sMo +sMo +sMo +vmF +sMo +sMo +sMo +sMo +sMo +sMo +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +bpU +pkZ +ulR +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +vdl +vdl +vdl +vdl +rOY +gdK +rOY +vdl +xcV +gVZ +gVZ +gVZ +gVZ +ifJ +ifJ +ifJ +ifJ +gVZ +gVZ +gVZ +dhe +iRp +iRp +iRp +lAr +sxy +ihj +rGP +ebR +ebR +vgo +ewo +nrV +cSQ +txj +luK +bCQ +fRQ +cMf +txj +bCQ +ewo +ewo +bCQ +bCQ +bRk +bCQ +hZa +bCQ +bCQ +bCQ +mMV +mMV +mMV +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(199,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +qer +bhp +bhp +sRY +bhp +bhp +xaD +bhp +gUi +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +gUi +dhp +rbF +nmG +dsE +nmG +dsE +rbF +dhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +xaD +bhp +sRY +jat +jat +aBc +jat +jat +fzi +kjR +kjR +kjR +wGf +aBc +dvd +ftY +jat +xXo +ezC +auY +jat +bSJ +vNE +qaJ +aBc +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +dWf +sMo +ipp +jzX +xLn +sMo +eCG +ccl +rLF +sMo +xcJ +pWN +fJp +sMo +kYH +kYH +kYH +kYH +kYH +mhQ +mdS +kYH +kYH +mhQ +lAc +mdS +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +lAc +lAc +lAc +mdS +kYH +kYH +vdl +rOY +rOY +cOT +rOY +rOY +rOY +vdl +jBx +mBQ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +dhe +iRp +iRp +gIF +cTs +hhQ +gjo +txj +vCe +ahC +txj +pxC +ewo +bCQ +txj +rwg +bCQ +voR +gut +txj +bCQ +ewo +xdv +bCQ +bCQ +ewo +bCQ +ewo +ewo +iWY +ewo +siX +siX +siX +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(200,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nio +nJY +nRr +vbZ +vbZ +vbZ +vbZ +iEc +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +qer +bhp +bhp +bhp +bhp +bhp +bhp +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +rbF +rbF +rbF +rbF +qDB +qTf +dwN +kTe +rbF +rbF +rbF +rbF +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +jat +uPf +rrM +qnr +jat +kjR +kjR +kjR +kjR +jat +jat +jat +jat +jat +aJe +mGF +bun +jat +jat +jat +jat +jat +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +dWf +sMo +tIu +xLn +xLn +nyb +xLn +goD +xLn +nyb +xLn +xLn +fJp +sMo +gSH +gSH +gSH +gSH +sMo +sMo +sMo +vmF +sMo +jmJ +jmJ +sMo +mdS +kYH +kYH +kYH +mhQ +lAc +lAc +lAc +lAc +mdS +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +kYH +mhQ +mdS +kYH +kYH +bpU +pkZ +ffR +qoh +qoh +qoh +qoh +ffR +gbt +qkC +vdl +pJf +oHH +lQH +vdl +kkq +xcV +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +gVZ +dhe +iRp +iRp +lAr +vzn +gjo +bCQ +txj +yhg +bCQ +txj +hPh +haV +lDp +txj +lbj +bCQ +haV +voR +txj +bCQ +bCQ +sNT +bCQ +bCQ +ewo +bNW +ewo +oMw +bCQ +qVk +uFo +uFo +uFo +oZW +iRp +iRp +iRp +syz +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(201,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +dEB +vbZ +vbZ +vbZ +vbZ +vbZ +tfe +lQt +bhp +bhp +bhp +pCm +bhp +bhp +vbZ +bhp +vbZ +bhp +xaD +onr +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +rbF +tpm +gYk +rbF +nmG +nRr +nRr +dsE +rbF +bhp +ncN +rbF +bhp +bhp +sRY +vbZ +bhp +bhp +jat +jat +aBc +jat +wcW +lpa +mGF +pbU +kjR +kjR +kjR +kjR +jat +upy +bcC +mGF +mGF +mGF +mGF +mGF +nez +ijC +cwY +jat +kjR +kjR +kjR +kjR +kjR +kjR +pwC +hvw +kjR +dWf +sMo +fJp +xLn +goD +sMo +aGw +xLn +aGw +sMo +uWU +xLn +fJp +sMo +nXZ +nXZ +nXZ +nXZ +sMo +xLn +xLn +xLn +xLn +cyC +cyC +jmJ +ulR +kYH +kYH +kYH +bpU +ima +bNB +lPt +quP +kxW +mdS +kYH +kYH +kYH +sMo +sMo +vmF +sMo +sMo +fEZ +wMi +kYH +kYH +kYH +cnQ +ffR +moX +svn +moX +lcm +ffR +ffR +vdl +vdl +vdl +cOT +vdl +mAS +mAS +mAS +tSC +mAS +mAS +mAS +mAS +mAS +mAS +gVZ +gVZ +gVZ +dhe +iRp +iRp +lAr +hhQ +bCQ +bCQ +iwj +bXb +mVa +iwj +bXb +bXb +qqS +xeU +bXb +vyL +bXb +bXb +vgo +bCQ +bCQ +sNT +bCQ +hQf +bCQ +bCQ +bCQ +bCQ +bCQ +bCQ +mMV +mMV +mMV +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(202,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nio +nJY +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +bhp +bhp +pCm +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +kPd +bKx +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +rbF +nRr +dsE +jrT +vWV +nRr +nRr +vWz +dep +bhp +bhp +rbF +bhp +bhp +vbZ +vbZ +bhp +bhp +jat +clB +csE +jat +epq +mGF +jMW +jat +kjR +kjR +kjR +kjR +pbU +mGF +mGF +mGF +mGF +eOf +mpg +sbq +jat +aQs +wOm +jat +kjR +kjR +kjR +kjR +kjR +pwC +hVz +oUN +kjR +wGf +sMo +sMo +sMo +sMo +sMo +wrV +xLn +vpa +sMo +xiq +xLn +fJp +sMo +nXZ +nXZ +nXZ +nXZ +jmJ +cyC +xLn +xLn +xLn +xLn +cyC +jmJ +gSH +gSH +gSH +gSH +sLZ +bpU +aeS +bNB +lPt +lPt +kxW +mdS +kYH +kYH +jmJ +cyC +xLn +xLn +sMo +tki +byL +mdS +kYH +cnQ +kua +aNZ +gYW +asu +xei +gYW +oOs +ffR +lQH +oHH +akD +tDK +akD +mAS +jVH +rOY +rOY +rOY +rOY +iKj +bZs +wVm +mAS +gVZ +gVZ +gVZ +dhe +iRp +iRp +lAr +vzn +gjo +bCQ +jpA +bCQ +bCQ +xmF +ewo +noJ +bCQ +ewo +ewo +bCQ +ewo +ewo +uUK +bCQ +bCQ +sNT +bCQ +bCQ +gDN +bCQ +lXb +ewo +dLk +ewo +siX +siX +siX +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +vbZ +xvJ +lLd +nRr +nRr +vbZ +vbZ +oNn +"} +(203,1,1) = {" +oNn +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nio +iEc +iEc +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bhp +pCm +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +xaD +bhp +rbF +gYk +tfr +nmG +nRr +nRr +nRr +nRr +dsE +bhp +bhp +rbF +bhp +bhp +vbZ +vbZ +bhp +sRY +jat +wfY +eCE +nez +mGF +xEn +qaJ +aBc +kKd +kjR +pwC +bBk +jat +srB +inD +nVy +vql +eOf +iTe +sbq +jat +cGM +jat +jat +kjR +kjR +kjR +kjR +kjR +dWf +siU +oUN +kjR +kjR +cqA +oUX +oUX +oUX +sMo +ohR +xLn +gtQ +sMo +kLi +xLn +fJp +sMo +nXZ +nXZ +nXZ +nXZ +sMo +xLn +xLn +xLn +xLn +xLn +cyC +sMo +sMo +cDt +cDt +cDt +sMo +sMo +rdv +lPt +cCO +bNB +tki +kxW +lAc +lAc +jmJ +cyC +xLn +cyC +wEC +bNB +quP +kxW +mdS +rvQ +uzq +ffR +qTN +fYP +jnY +mpK +oOl +ffR +jDL +nVN +jDL +lVO +jDL +mAS +gdK +gAO +ioJ +rOY +rOY +mAS +bZs +jSy +mAS +gVZ +gVZ +gVZ +dhe +iRp +iRp +xDO +kac +hhQ +gjo +oZW +bCQ +gYY +oZW +ewo +ewo +bCQ +ewo +ewo +gYY +ewo +ewo +lAr +bCQ +ewo +ewo +bCQ +bCQ +ewo +bCQ +jXy +ewo +bCQ +ewo +uFo +uFo +uFo +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(204,1,1) = {" +oNn +vbZ +ihA +ihA +ihA +ihA +ihA +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +nRr +dsE +bhp +qer +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +sRY +gUi +bhp +vbZ +vbZ +bhp +gUi +bhp +bhp +xVZ +dsE +bhp +nmG +sQt +nRr +nRr +sQt +dsE +bhp +bhp +qer +bhp +bhp +vbZ +vbZ +bhp +bhp +jat +jat +jat +jat +jat +jat +jat +jat +hvw +kjR +dWf +xGA +jat +jat +aBc +aBc +jat +aBc +aBc +aBc +jat +kjR +kjR +kjR +kjR +kjR +qUh +eul +hSv +qUh +qUh +fzi +kjR +kjR +cqA +oUX +oUX +oUX +sMo +iIu +xLn +mMn +sMo +sMo +sMo +sMo +sMo +nXZ +nXZ +vZL +juX +sMo +sMo +npA +sMo +sMo +xLn +xLn +pjd +cDt +cDt +cDt +cDt +cDt +sMo +fEZ +tki +lPt +lPt +lPt +sMo +sMo +jmJ +sMo +cyC +xLn +xLn +wEC +cCO +lPt +bNB +wMi +rCe +ffR +ffR +ffR +ffR +cJg +dZH +ffR +ffR +vdl +cPK +vdl +cPK +vdl +mAS +ifJ +ifJ +ifJ +rOY +eyh +mAS +mAS +mAS +mAS +mBQ +gVZ +gVZ +dhe +iRp +iRp +iRp +lAr +sxy +cpf +rGP +pfz +ebR +rGP +ebR +nsK +dft +ebR +nos +dft +ebR +iRm +vgo +bCQ +ewo +ewo +bCQ +oen +bCQ +cYY +bCQ +krv +bCQ +bCQ +mMV +mMV +mMV +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(205,1,1) = {" +oNn +vbZ +ihA +nft +cTE +bHK +ihA +nRr +nRr +nRr +nRr +cTE +ihA +ihA +ihA +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +bhp +qer +bhp +xaD +bhp +gUi +bhp +sRY +sRY +xaD +bhp +vbZ +vbZ +bhp +bhp +bhp +sRY +bhp +dvz +tfr +bhp +rbF +rbF +aFQ +aFQ +rbF +rbF +bhp +bhp +qer +bhp +bhp +bhp +vbZ +bhp +bhp +axW +sId +sId +sId +sId +gfx +sId +sId +hUn +bBk +kGW +xGA +xGA +dak +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +wCl +cmW +mGF +mGF +eul +wCl +wCl +eul +wCl +qUh +oUX +oUX +sMo +klZ +xLn +xLn +pAX +vYp +qMb +sMo +nva +vZL +juX +cUE +kYH +sMo +xLn +xLn +xLn +sMo +xLn +xLn +sMo +cDt +cDt +cDt +cDt +cDt +sMo +sMo +mGv +mGv +mGv +sMo +sMo +eiA +vYp +pAX +xLn +xLn +xLn +sMo +lPt +tki +lPt +kxW +lAc +ffR +ajL +tIE +ffR +bpo +gYW +ncw +ffR +bhp +bhp +bhp +gUi +bhp +mAS +erz +rOY +ifJ +rOY +vWn +mAS +cPn +gyY +kkq +jPl +mBQ +gVZ +dhe +iRp +iRp +iRp +xDO +bXb +bXb +vgo +bCQ +iYP +txj +fzF +ewo +txj +kIv +ewo +txj +fKa +bCQ +txj +bCQ +ewo +ewo +bCQ +bCQ +mOD +bCQ +qbf +ewo +bCQ +emV +siX +siX +siX +oZW +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +oNn +"} +(206,1,1) = {" +oNn +vbZ +ihA +uYA +cTE +drE +ihA +nRr +nRr +nRr +nRr +cTE +cTE +bWh +ihA +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nJY +vbZ +vbZ +bhp +qer +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +xaD +bhp +bhp +qer +bhp +bhp +rbF +hHE +nsD +nsD +poc +rbF +bhp +bhp +qer +bhp +bhp +bhp +vbZ +vbZ +bhp +axW +sId +jhF +gfx +sId +sId +gfx +sId +sId +ktt +gfx +sId +dak +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +qUh +wCl +wCl +qUh +mGF +mGF +mGF +qUh +mGF +mGF +mGF +cmW +wCl +eKB +eKB +sMo +hav +xLn +mhh +sMo +rMu +hpw +sMo +kBq +cUE +kYH +kYH +kYH +jmJ +xLn +xLn +xLn +sMo +sMo +cuv +sMo +cDt +cDt +cDt +cDt +cDt +sMo +bhp +bhp +bhp +bhp +xaD +sMo +ovS +dcr +sMo +tdW +xLn +tdW +sMo +sMo +mGv +mGv +mGv +ffR +ffR +mce +lmz +dAZ +gYW +uOE +hEZ +ffR +xaD +bhp +sRY +bhp +bhp +mAS +ftb +rOY +ygo +rOY +cRk +mAS +gBY +bkC +gyY +gBY +jBx +mBQ +dhe +iRp +iRp +iRp +iRp +iRp +iRp +txj +bCQ +iYP +txj +frG +fOk +txj +hHO +gYY +txj +izr +vEB +txj +mWq +ewo +ewo +bCQ +txj +siI +bCQ +otb +ewo +bCQ +chb +uFo +uFo +uFo +eZe +jTn +guU +siX +vfm +iRp +iRp +dhe +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(207,1,1) = {" +oNn +vbZ +ihA +uYA +cTE +cTE +baM +nRr +nRr +nRr +nRr +cTE +cTE +iuJ +ihA +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nio +qHA +vbZ +vbZ +vbZ +pCm +gUi +bhp +bhp +bhp +bhp +xaD +bhp +sRY +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +rbF +bhp +bhp +rbF +iGf +nsD +nsD +qfj +rbF +bhp +bhp +rbF +bhp +bhp +bhp +bhp +vbZ +bhp +axW +sId +sId +siU +sId +jhF +sId +sId +gfx +sId +sId +dak +fzi +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +kjR +ksZ +wCl +hVj +csE +eul +mGF +jyj +mGF +noV +mGF +mGF +jyj +mGF +qUh +bjm +bjm +sMo +sMo +sMo +sMo +sMo +sMo +sMo +sMo +eyd +kYH +kYH +kYH +kYH +sMo +nfX +xLn +xLn +sMo +ovS +vYp +sMo +aHi +cDt +cDt +cDt +cDt +sMo +bhp +sRY +gUi +xaD +bhp +sMo +sMo +sMo +sMo +sMo +sMo +sMo +sMo +bhp +xaD +bhp +gUi +sRY +ffR +ffR +ffR +ffR +ffR +ffR +ffR +ffR +ffR +qer +qer +qer +mAS +mAS +mAS +mAS +mAS +mAS +mAS +mAS +mAS +vcb +vcb +vcb +mAS +mAS +dhe +iRp +iRp +iRp +iRp +bqd +iRp +txj +bCQ +iYP +iwj +bXb +bXb +xeU +bXb +bXb +xeU +bXb +bXb +xeU +xkF +xkF +xkF +xkF +txj +qgv +bCQ +nsI +bCQ +bCQ +ith +mMV +mMV +mMV +eZe +gnU +eHp +uFo +sdL +iRp +iRp +dhe +bhp +vbZ +vbZ +nRr +gYk +vbZ +vbZ +vbZ +oNn +"} +(208,1,1) = {" +oNn +vbZ +ihA +koA +cTE +cTE +ihA +nRr +nRr +nRr +nRr +ihA +cTE +cTE +mOh +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nJY +rpL +vbZ +vbZ +vbZ +pCm +pCm +qer +qer +qer +pCm +pCm +pCm +qer +qer +qer +pCm +pCm +pCm +qer +qer +qer +rbF +ncN +bhp +rbF +uST +nsD +nsD +qYT +rbF +bhp +ncN +rbF +qer +qer +qer +qer +pCm +pCm +qUh +axW +axW +axW +axW +qUh +qUh +qUh +axW +axW +axW +qXO +qUh +qUh +qUh +axW +axW +axW +axW +qUh +qUh +qUh +qUh +qUh +wfY +ijC +uXP +mGF +mGF +mGF +qUh +cmW +cmW +cmW +mGF +wCl +bhp +bhp +bhp +bhp +sRY +bhp +vbZ +vbZ +vbZ +sMo +sMo +xhY +xhY +xhY +sMo +sMo +sMo +sMo +sMo +sMo +pYa +dcr +sMo +mYS +mYS +cDt +cDt +cDt +sMo +sRY +xaD +bhp +bhp +sRY +vbZ +vbZ +bhp +bhp +bhp +xaD +sRY +bhp +sRY +bhp +bhp +bhp +xaD +bhp +sRY +vbZ +vbZ +vbZ +bhp +sRY +gUi +bhp +bhp +bhp +xaD +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +sRY +bhp +sRY +bhp +gUi +bhp +dhe +iRp +iRp +iRp +iRp +mLW +iRp +txj +gYY +iYP +oZW +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +xDO +bXb +bXb +bXb +bXb +bXb +bXb +mMV +mMV +mMV +gnU +uFo +sdL +iRp +iRp +iRp +iRp +dhe +vbZ +vbZ +nRr +gYk +osI +vbZ +vbZ +vbZ +oNn +"} +(209,1,1) = {" +oNn +vbZ +ihA +ihA +ihA +ihA +ihA +xVw +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +rpL +rpL +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +rbF +bhp +bhp +rbF +bEu +nsD +nsD +xaU +rbF +bhp +bhp +rbF +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +sRY +bhp +sRY +bhp +bhp +vbZ +vbZ +vbZ +eul +qUh +wCl +qUh +wCl +uoV +eul +qUh +wCl +eul +qUh +wCl +qUh +vbZ +bhp +bhp +bhp +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +sRY +bhp +vbZ +vbZ +vbZ +vbZ +sMo +sMo +sMo +sMo +xsv +xsv +sMo +sMo +sMo +sMo +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +sRY +bhp +bhp +bhp +xaD +bhp +xaD +bhp +sRY +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +sRY +bhp +sRY +bhp +gUi +bhp +bhp +bhp +xaD +bhp +bhp +xaD +bhp +bhp +xaD +bhp +dhe +iRp +iRp +iRp +iRp +qzH +iRp +xDO +bXb +bXb +oOE +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +vbZ +vbZ +vbZ +baQ +rUA +vbZ +vbZ +oNn +"} +(210,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +ejj +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xQd +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +xaD +sRY +bhp +bhp +bhp +qer +bhp +bhp +rbF +tlK +nsD +nsD +fiO +rbF +bhp +bhp +qer +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +bhp +xaD +bhp +bhp +bhp +bhp +bhp +bhp +bhp +sRY +bhp +sRY +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +bhp +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +sRY +xaD +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +xQd +vbZ +vbZ +vbZ +vbZ +bKx +bhp +bhp +bhp +sRY +bhp +gUi +xaD +sRY +vbZ +bhp +vbZ +bhp +bhp +sRY +bhp +bhp +bhp +bhp +bhp +bhp +dhe +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +iRp +dhe +bhp +bhp +vbZ +xYr +sMJ +vbZ +vbZ +vbZ +oNn +"} +(211,1,1) = {" +oNn +vbZ +vbZ +ihA +ihA +ihA +ihA +iFv +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +qfX +qfX +xZi +nRr +vbZ +vbZ +vbZ +vbZ +bKx +cnv +vbZ +vbZ +vbZ +bhp +vbZ +bhp +bhp +gUi +bhp +bhp +bhp +qer +bhp +bhp +rbF +euj +rER +nsD +hrQ +rbF +bhp +bhp +qer +bhp +vbZ +bKx +bhp +bKx +vbZ +vbZ +vbZ +gUi +bhp +bhp +sRY +bhp +bhp +utm +bhp +bhp +vbZ +vbZ +bhp +gUi +xaD +bhp +bhp +bhp +bKx +bhp +bhp +lLd +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +xaD +bhp +sRY +bKx +xQd +xQd +xaD +bKx +bhp +bhp +sRY +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +suZ +suZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +gUi +bhp +bhp +bhp +xaD +sRY +bhp +bhp +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +bAZ +bAZ +bAZ +bAZ +bAZ +dhe +dhe +dhe +dhe +dhe +bAZ +bAZ +bAZ +bAZ +bAZ +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +dhe +bhp +bhp +vbZ +vbZ +vAu +vbZ +vbZ +vbZ +oNn +"} +(212,1,1) = {" +oNn +vbZ +vbZ +ihA +cTE +cTE +baM +nRr +nRr +nRr +nRr +nRr +kyd +bng +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +tpi +nJY +nRr +nRr +nRr +nRr +vbZ +vbZ +rKB +iCf +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +qer +bhp +bhp +rbF +rbF +rbF +rbF +rbF +rbF +bhp +bhp +qer +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +xaD +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +xaD +bKx +bhp +bhp +lLd +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +bhp +sRY +bKx +xQd +xQd +sRY +bhp +xaD +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +jSQ +sWZ +vbZ +vbZ +vbZ +bhp +bKx +suZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +gUi +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +jrT +kkE +kkE +kkE +dep +bhp +bhp +bhp +bhp +bhp +bhp +qFQ +nwr +nRr +nRr +nRr +nRr +nRr +dsE +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bKx +onr +bKx +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +nmG +nRr +nRr +vbZ +vbZ +oNn +"} +(213,1,1) = {" +oNn +vbZ +vbZ +ihA +bti +cTE +ihA +nRr +nRr +nRr +nRr +nRr +iOK +duN +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +xaD +bhp +rbF +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +rbF +bhp +bKx +vbZ +jrT +bcV +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +bhp +vbZ +vbZ +nRr +vbZ +nRr +nRr +nRr +vbZ +nRr +nRr +gYk +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +gUi +bhp +bhp +xaD +xQd +bKx +bhp +bhp +xQd +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +xQd +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +nmG +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +vbZ +vbZ +onr +ner +onr +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +bhp +bhp +vbZ +nRr +nRr +nRr +dsE +bhp +bhp +bhp +bhp +bhp +bhp +bhp +qFQ +nwr +nRr +nRr +nRr +gYk +tfr +bhp +bhp +bhp +vbZ +bhp +bhp +bhp +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +bhp +vbZ +bhp +bhp +bhp +bhp +bhp +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(214,1,1) = {" +oNn +vbZ +vbZ +ihA +bti +cTE +fTy +kHK +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +gYk +iwf +nwr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +bhp +bhp +bhp +rbF +ncN +bhp +bhp +bhp +bhp +bhp +bhp +bhp +bhp +ncN +rbF +bhp +bhp +vbZ +vbZ +mXQ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +xaD +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +rcS +vbZ +vbZ +vbZ +vbZ +osI +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bKx +xQd +xaD +sRY +xQd +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +xQd +xQd +sMe +nRr +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +pWa +kkE +vbZ +bKx +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +bKx +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +nJY +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +rKB +kkE +vbZ +vbZ +qFQ +iwf +nwr +vbZ +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +nmG +nRr +vbZ +vbZ +dep +bhp +bhp +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +oNn +"} +(215,1,1) = {" +oNn +vbZ +vbZ +ihA +ihA +ihA +ihA +odT +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +dsE +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +bhp +bhp +rbF +rbF +rbF +qer +qer +qer +qer +qer +qer +rbF +rbF +rbF +bhp +bhp +vbZ +vbZ +iiC +nJY +nRr +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +jrT +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +bKx +bhp +bhp +vbZ +sRY +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +lQt +bKx +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +kkE +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +vbZ +bhp +nmG +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +dsE +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +nJY +nRr +nRr +jsA +dzI +xaN +jsA +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +gYk +tfr +vbZ +bhp +bhp +vbZ +bKx +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(216,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +tDP +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +ozq +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +bhp +sRY +bhp +bhp +bhp +bhp +bhp +sRY +bKx +vbZ +vbZ +bhp +bKx +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +gUi +sRY +bhp +sRY +bKx +nmG +nRr +nRr +dsE +bhp +vbZ +vbZ +gUi +bhp +sRY +vbZ +vbZ +bKx +bKx +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +bKx +bhp +jrT +vbZ +vbZ +nJY +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +ozq +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +nmG +oJE +nFK +qHA +nRr +vbZ +vbZ +jsA +jsA +nRr +nRr +nRr +vbZ +dsE +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +vbZ +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +nRr +vbZ +bhp +vbZ +vbZ +bhp +bhp +bhp +bhp +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +oNn +"} +(217,1,1) = {" +oNn +vbZ +vbZ +ihA +ihA +ihA +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nRr +fVq +nRr +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +bhp +gUi +xaD +bhp +sRY +bhp +bhp +xaD +bKx +vbZ +bKx +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +dEj +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +lQt +bKx +bhp +xaD +bhp +bhp +xaD +bhp +vbZ +vbZ +nRr +vbZ +vbZ +bhp +bKx +bhp +bhp +xaD +bhp +bhp +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +hiK +pQg +vpQ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +jrT +vWV +vbZ +vbZ +vAu +vbZ +vbZ +nRr +nRr +vbZ +nRr +nRr +vWz +vbZ +kkE +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nJY +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +gYk +tfr +bhp +vbZ +vbZ +nRr +nRr +vbZ +vbZ +bhp +vbZ +vbZ +xvJ +ner +oCS +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +onr +bKx +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +oNn +"} +(218,1,1) = {" +oNn +vbZ +vbZ +ihA +aCX +baM +nRr +nRr +nRr +nRr +vlk +oQL +ohG +oQL +yjj +nRr +tDP +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +gUi +xaD +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nJY +dEj +bhp +bhp +bhp +nmG +nJY +vbZ +vbZ +nRr +vbZ +nRr +nRr +vbZ +vbZ +bhp +vbZ +bhp +sRY +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +bhp +sMe +nRr +vbZ +vbZ +kkE +vbZ +vbZ +vbZ +bhp +bhp +vbZ +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +nLw +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +vbZ +nJY +vbZ +vbZ +iwf +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +nRr +nRr +lQt +baQ +vbZ +nRr +nRr +nRr +gYk +tfr +bhp +bhp +bhp +vbZ +vbZ +nRr +vbZ +vbZ +bhp +bhp +bKx +iNi +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vWz +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +jqz +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +oNn +"} +(219,1,1) = {" +oNn +vbZ +vbZ +ihA +ihA +ihA +nRr +nRr +vbZ +nRr +kkf +lQP +wPP +lQP +fcC +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +nRr +nJY +lQt +bhp +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +bhp +sRY +vbZ +bhp +sRY +bhp +bQJ +pCW +nRr +vbZ +nRr +nJY +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +nJY +nRr +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +sRY +bKx +bhp +bhp +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nRr +dsE +bhp +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +dsE +bhp +vbZ +vbZ +vbZ +bhp +bhp +sMe +nRr +nRr +nRr +nRr +pHv +suZ +bKx +nmG +nRr +vbZ +vbZ +kkE +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nJY +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +vbZ +vbZ +nJY +qfX +nRr +nRr +vbZ +xvJ +vbZ +bhp +nmG +nRr +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +azb +nwr +nRr +nRr +nRr +vbZ +bhp +bhp +bhp +vbZ +vbZ +vbZ +nRr +dsE +bhp +bhp +vbZ +jqz +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +nRr +nJY +xaN +nJY +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +oNn +"} +(220,1,1) = {" +oNn +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +ayP +lQP +wPP +lQP +wPP +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +vbZ +bKx +vbZ +vbZ +vbZ +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +vbZ +vbZ +bhp +bhp +lLd +nRr +nRr +vAu +iEc +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +nRr +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +jsA +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +gYk +tfr +bhp +bhp +bhp +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +bhp +bhp +bhp +nmG +nRr +nRr +vbZ +vbZ +vbZ +vbZ +xZi +nRr +nRr +nRr +nRr +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +nRr +nRr +vbZ +vbZ +nRr +vbZ +vbZ +nRr +nRr +nRr +vbZ +nRr +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(221,1,1) = {" +oNn +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +vbZ +oNn +"} +(222,1,1) = {" +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +"} +(223,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(224,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(225,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(226,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(227,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(228,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(229,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(230,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(231,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(232,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(233,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(234,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(235,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(236,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(237,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +vmL +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(238,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +knq +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(239,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +smj +smj +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(240,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +fzq +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(241,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +aDh +fwl +xle +pCm +nRr +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(242,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +iXf +nRr +oIY +nRr +nRr +nRr +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +wlb +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +kPW +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +pCm +pCm +pCm +pCm +pCm +pCm +smj +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +fhg +pDY +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(243,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +dpp +pMl +xle +pCm +nRr +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +wlb +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +wGV +smj +pCm +xle +xle +xle +xle +xle +pCm +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +niw +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(244,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +pCm +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(245,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +smj +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(246,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(247,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +aRq +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +hLj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pEv +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(248,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(249,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pEv +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(250,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +dqi +nwI +xle +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(251,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +vcQ +cTE +cAt +lvL +xle +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(252,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +aCG +cTE +cAt +cTE +cTE +xle +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(253,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +gVS +aQy +cAt +cTE +cTE +gEt +xle +xle +pCm +smj +rwS +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(254,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +eaq +bVj +cAt +cTE +oZc +pRl +xle +xle +pCm +smj +oZo +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(255,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +rEG +cTE +cAt +oKt +omS +xle +xle +xle +pCm +vRQ +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(256,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +lvL +cAt +cTE +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(257,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +cAt +cTE +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(258,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +cAt +nRr +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(259,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +txi +ghH +fOB +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(260,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +uNw +nRr +xle +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(261,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +wEJ +xle +xle +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(262,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xEJ +dib +xle +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(263,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +wEJ +xle +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(264,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +wEJ +xle +xle +xle +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(265,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +wEJ +pCm +pCm +pCm +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(266,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +fOB +rwS +smj +smj +pCm +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(267,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +nRr +rwS +smj +smj +pCm +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(268,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +rwS +smj +smj +pCm +xle +xle +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(269,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +rwS +pCm +pCm +pCm +pCm +pCm +pCm +rwS +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(270,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +coJ +mhu +mhu +mhu +mhu +laA +smj +oZo +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(271,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +wgS +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +tQe +smj +smj +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(272,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +oNn +"} +(273,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(274,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +fCk +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(275,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(276,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(277,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(278,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(279,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(280,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(281,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(282,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +wOb +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +lPH +lPH +lPH +pCm +lPH +lPH +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(283,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +lPH +lPH +lPH +pCm +lPH +lPH +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(284,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +lPH +lPH +lPH +pCm +lPH +lPH +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(285,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +lPH +pCm +pCm +pCm +lPH +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(286,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +lPH +lPH +lPH +pCm +lPH +lPH +lPH +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(287,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +nQa +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +mBX +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +xDM +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(288,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +mTc +mvz +mvz +mvz +mvz +mvz +mvz +mvz +bUL +lPH +lPH +wxB +mvz +mvz +mvz +mvz +mvz +mvz +mvz +mvz +bUL +lPH +lPH +wxB +mvz +mvz +mvz +mvz +mvz +mvz +mvz +mvz +mvz +mvz +mvz +bUL +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(289,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +waP +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(290,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +waP +lPH +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(291,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +smj +pBl +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +sTH +cLa +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(292,1,1) = {" +oNn +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +pCm +pCm +pCm +pCm +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(293,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(294,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(295,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(296,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(297,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(298,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(299,1,1) = {" +oNn +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +xle +oNn +"} +(300,1,1) = {" +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +oNn +"}