diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index b3d750a8a387..f695c4492e56 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -400,6 +400,7 @@ #define WALL_FOREST "forest_veg" #define WALL_FOREST_ROCK "rock_forest" #define WALL_FOREST_ROCK_DIRTY "rock_forest_dirty" +#define WALL_SWAMP "swamp_veg" #define WALL_STRATA_OUTPOST_RIBBED "strata_ribbed_outpost_" #define WALL_STRATA_OUTPOST_BARE "strata_bare_outpost_" #define WALL_SHIVA_ICE "shiva_ice" diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index c3c7c6ac01a8..c4716558432b 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -90,6 +90,7 @@ #define AMBIENCE_JUNGLE 'sound/ambience/ambienceLV624.ogg' #define AMBIENCE_JUNGLEMOON 'sound/ambience/junglemoon.ogg' #define AMBIENCE_JUNGLE_ALT 'sound/ambience/ambience_strata.ogg' +#define AMBIENCE_SWAMP 'sound/ambience/swamp.ogg' #define AMBIENCE_RIVER 'sound/ambience/ambienceriver.ogg' #define AMBIENCE_MALL 'sound/ambience/medbay1.ogg' #define AMBIENCE_CAVE 'sound/ambience/desert.ogg' diff --git a/code/datums/vehicles.dm b/code/datums/vehicles.dm index 3f1a717318e3..c8912a01a195 100644 --- a/code/datums/vehicles.dm +++ b/code/datums/vehicles.dm @@ -53,3 +53,7 @@ /datum/map_template/interior/arc name = "ARC" interior_id = "arc" + +/datum/map_template/interior/hovercraft + name = "Hovercraft" + interior_id = "hovercraft" diff --git a/code/game/area/SekhmetSwamp.dm b/code/game/area/SekhmetSwamp.dm index 371d1c83b446..1b9f093c78f7 100644 --- a/code/game/area/SekhmetSwamp.dm +++ b/code/game/area/SekhmetSwamp.dm @@ -37,20 +37,23 @@ minimap_color = MINIMAP_AREA_LZ soundscape_playlist = SCAPE_PL_LV759_INDOORS ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + /area/sekhmet/shuttles/drop2 name = "Sekhmet - Open Field" icon_state = "shuttle2" icon = 'icons/turf/area_varadero.dmi' minimap_color = MINIMAP_AREA_LZ - soundscape_playlist = SCAPE_PL_LV759_INDOORS - ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + ceiling = CEILING_NONE + ambience_exterior = AMBIENCE_JUNGLE_ALT + /area/sekhmet/shuttles/drop3 name = "Sekhmet - Research Landing Pad" icon_state = "shuttle" icon = 'icons/turf/area_varadero.dmi' minimap_color = MINIMAP_AREA_LZ - soundscape_playlist = SCAPE_PL_LV759_INDOORS - ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + ceiling = CEILING_NONE + ambience_exterior = AMBIENCE_JUNGLE_ALT + //============================================================ Communications /area/sekhmet/int_reg/telecomm name = "Sekhmet - Communications Relay" @@ -71,10 +74,11 @@ icon_state = "away1" /area/sekhmet/int_reg/catwalk name = "Swamp Catwalk" - icon_state = "away2" + icon_state = "away1" /area/sekhmet/outside/swamp name = "Sekhmet Swamp" icon_state = "northwest" + ambience_exterior = AMBIENCE_SWAMP /area/sekhmet/int_reg/comms_lower name = "Sekhmet Lower Commmunication Hall" icon_state = "away3" @@ -84,6 +88,9 @@ /area/sekhmet/caves/west_cave name = "Sekhmet West Caves" icon_state = "cave" +/area/sekhmet/int_reg/small_power + name = "Sekhmet Small Power Station" + icon_state = "away3" //============================================================SOUTHWEST PORTION (airfield, medbay, warehouse) /area/sekhmet/outside/airfield name = "Sekhmet Clearing" @@ -96,7 +103,7 @@ icon_state = "away1" /area/sekhmet/int_reg/warehouse name = "Sekhmet Warehouse" - icon_state = "cargo" + icon_state = "yellow" /area/sekhmet/outside/southroad name = "Sekhmet Southern Path" icon_state = "south" @@ -106,7 +113,7 @@ //============================================================CENTRAL PORTION (central complex, yard, roadways, comms) /area/sekhmet/outside/central_road name = "Sekhmet Central Path" - icon_state = "away2" + icon_state = "northwest" /area/sekhmet/int_glass/complex_generic name = "Sekhmet Central Complex" icon_state = "away1" @@ -130,7 +137,7 @@ icon_state = "yellow" /area/sekhmet/int_reg/engineering name = "Sekhmet Engineering" - icon_state = "SMES" + icon_state = "ass_line" /area/sekhmet/int_heavy/entry_zone name = "Sekhmet Entry Zone" icon_state = "red" diff --git a/code/game/machinery/computer/camera_console.dm b/code/game/machinery/computer/camera_console.dm index fd0f93a4cd27..6ee82714dc43 100644 --- a/code/game/machinery/computer/camera_console.dm +++ b/code/game/machinery/computer/camera_console.dm @@ -453,3 +453,8 @@ SEND_SIGNAL(src, COMSIG_CAMERA_SET_NVG, 5, NV_COLOR_RED) #undef DEFAULT_MAP_SIZE + +/obj/structure/machinery/computer/cameras/colony_camera + name = "security cameras console" + desc = "Used to access the various cameras of the colony." + icon_state = "dark_com" diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index b6fbe25f214c..367e6be4b4cd 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -259,7 +259,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/maint/reinforced/colony/autoname autoname = TRUE - + //------Containment 3-tile Doors -----// /obj/structure/machinery/door/airlock/multi_tile/almayer/containment @@ -523,6 +523,7 @@ // Elevator door /obj/structure/machinery/door/airlock/multi_tile/elevator + name = "Elevator Hatch" icon = 'icons/obj/structures/doors/4x1_elevator.dmi' icon_state = "door_closed" width = 4 diff --git a/code/game/machinery/doors/poddoor/almayer.dm b/code/game/machinery/doors/poddoor/almayer.dm index 27bb12b91b88..77c1b2e6fb58 100644 --- a/code/game/machinery/doors/poddoor/almayer.dm +++ b/code/game/machinery/doors/poddoor/almayer.dm @@ -73,6 +73,11 @@ opacity = TRUE /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor + name = "Lockdown" density = TRUE opacity = TRUE vehicle_resistant = TRUE + needs_power = FALSE + unacidable = TRUE + emp_proof = TRUE + explo_proof = TRUE diff --git a/code/game/objects/effects/landmarks/item_pool.dm b/code/game/objects/effects/landmarks/item_pool.dm index a5e628cd656b..880de06865cf 100644 --- a/code/game/objects/effects/landmarks/item_pool.dm +++ b/code/game/objects/effects/landmarks/item_pool.dm @@ -41,3 +41,7 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot icon_state = "ipool_bubshot" type_to_spawn = /obj/item/ammo_magazine/shotgun/buckshot + +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP + icon_state = "ipool_bubshot_upp" + type_to_spawn = /obj/item/ammo_magazine/shotgun/heavy/buckshot diff --git a/code/game/objects/items/misc.dm b/code/game/objects/items/misc.dm index 00ab549c4516..59f7bfa542c3 100644 --- a/code/game/objects/items/misc.dm +++ b/code/game/objects/items/misc.dm @@ -303,3 +303,19 @@ /obj/item/clock/get_examine_text(mob/user) . = ..() . += SPAN_NOTICE("The [name] reads: [GLOB.current_date_string] - [worldtime2text()]") + +/obj/item/lifesaver + name = "lifesaver" + desc = "A buoyant flotation device designed to keep those in water afloat." + icon = 'icons/obj/items/misc.dmi' + item_icons = list( + WEAR_L_HAND = 'icons/mob/humans/onmob/inhands/items/toys_lefthand.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/inhands/items/toys_righthand.dmi', + WEAR_WAIST = 'icons/mob/humans/onmob/clothing/belts/misc.dmi' + ) + icon_state = "lifesaver" + throwforce = 0 + throw_speed = SPEED_VERY_FAST + throw_range = 20 + force = 0 + flags_equip_slot = SLOT_WAIST diff --git a/code/game/objects/items/props/rocks.dm b/code/game/objects/items/props/rocks.dm index df734c223084..b1f2bd8dc620 100644 --- a/code/game/objects/items/props/rocks.dm +++ b/code/game/objects/items/props/rocks.dm @@ -55,6 +55,7 @@ icon = 'icons/obj/structures/props/natural/rocks.dmi' mouse_opacity = MOUSE_OPACITY_TRANSPARENT layer = TURF_LAYER + plane = FLOOR_PLANE /obj/structure/prop/colorable_rock/colorable/alt icon_state = "ground_colorable_alt" diff --git a/code/game/objects/structures/barricade/handrail.dm b/code/game/objects/structures/barricade/handrail.dm index bc42482ab61f..adbdcca076d7 100644 --- a/code/game/objects/structures/barricade/handrail.dm +++ b/code/game/objects/structures/barricade/handrail.dm @@ -240,6 +240,17 @@ /obj/structure/barricade/handrail/kutjevo icon_state = "hr_kutjevo" +/obj/structure/prop/fake/handrail/kutjevo + name = "supports" + desc = "a series of metal shafts in a pattern meant for holding stuff." + icon = 'icons/obj/structures/handrail.dmi' + icon_state = "hr_kutjevo" + density = FALSE + anchored = TRUE + layer = TURF_LAYER + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + pixel_y = 12 + /obj/structure/barricade/handrail/wire icon_state = "wire_rail" climb_delay = CLIMB_DELAY_SHORT diff --git a/code/game/objects/structures/bookcase.dm b/code/game/objects/structures/bookcase.dm index 5b4e34a651de..bb5f2b4c28de 100644 --- a/code/game/objects/structures/bookcase.dm +++ b/code/game/objects/structures/bookcase.dm @@ -130,3 +130,12 @@ . = ..() new /obj/item/book/manual/research_and_development(src) update_icon() + +/obj/structure/bookcase + icon_state = "woodbook-0" + +/obj/structure/bookcase/wood/update_icon() + if(length(contents) < 6) + icon_state = "woodbook-[length(contents)]" + else + icon_state = "woodbook-6" diff --git a/code/game/objects/structures/cargo_container.dm b/code/game/objects/structures/cargo_container.dm index 94d2847d2292..49e2a20304ec 100644 --- a/code/game/objects/structures/cargo_container.dm +++ b/code/game/objects/structures/cargo_container.dm @@ -222,6 +222,12 @@ /obj/structure/cargo_container/kelland/right icon_state = "kelland_r" +/obj/structure/cargo_container/kelland/alt/left + icon_state = "kelland_red_l" + +/obj/structure/cargo_container/kelland/alt/right + icon_state = "kelland_red_r" + /obj/structure/cargo_container/ferret name = "Ferret Heavy Industries Cargo Container" desc = "A huge industrial shipping container.\nThis one is from Ferret Heavy Industries, a manufacturer of terrestrial crawlers and powerloaders.\nUnfortunately, the company went bankrupt. Fortunately, these containers are really cheap now." @@ -310,6 +316,32 @@ /obj/structure/cargo_container/horizontal/blue/bottom icon_state = "blue_b" +/obj/structure/cargo_container/horizontal/red + name = "Generic Cargo Container" + desc = "A huge industrial shipping container.\nDespite the logo clearly being on the side, you cannot see it, as the logo is not facing south." + +/obj/structure/cargo_container/horizontal/red/top + icon_state = "red_t" + +/obj/structure/cargo_container/horizontal/red/middle + icon_state = "red_m" + +/obj/structure/cargo_container/horizontal/red/bottom + icon_state = "red_b" + +/obj/structure/cargo_container/horizontal/green + name = "Generic Cargo Container" + desc = "A huge industrial shipping container.\nDespite the logo clearly being on the side, you cannot see it, as the logo is not facing south." + +/obj/structure/cargo_container/horizontal/green/top + icon_state = "green_t" + +/obj/structure/cargo_container/horizontal/green/middle + icon_state = "green_m" + +/obj/structure/cargo_container/horizontal/green/bottom + icon_state = "green_b" + /obj/structure/cargo_container/canc name = "CANC Cargo Container" desc = "A huge industrial shipping container.\nThis one is from the Chinese/Asian–Nation Cooperative, which was absorded into the UPP. Their massive industrial output has ensured that cargo containers bearing their symbols and name won't be disappearing any time soon." diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index 9753a0f82e3c..254d360a0771 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -112,6 +112,17 @@ icon_state = icon_opened +/obj/structure/closet/firecloset/upp_full/Initialize() + . = ..() + contents = list() + + new /obj/item/clothing/suit/storage/marine/light/vest/fire_light/upp(src) + new /obj/item/clothing/mask/gas/upp_pfb(src) + new /obj/item/reagent_container/glass/canister/oxygen(src) + new /obj/item/tool/extinguisher(src) + new /obj/item/clothing/head/helmet/marine/veteran/UPP/firefighter(src) + new /obj/item/storage/box/m94(src) + /* * Tool Closet */ diff --git a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm index e3ffb9915dd0..a37f24973a4e 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm @@ -277,6 +277,11 @@ desc = "A supply crate containing sixty TWE ORP ration packets." supplies = list(/obj/item/ammo_box/magazine/misc/mre/twe = 5) +/obj/structure/largecrate/supply/supplies/mre/upp + name = "\improper UPP IRP MRE crate (x60)" + desc = "A supply crate containing sixty UPP IRP MRE packets." + supplies = list(/obj/item/ammo_box/magazine/misc/mre/upp = 5) + /obj/structure/largecrate/supply/supplies/wy_emergency_food name = "\improper WY emergency nutrition briquettes crate (x100)" desc = "A supply crate containing one hundred WY emergency nutrition briquettes." diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 37f15b301af6..2d6527259a6b 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -244,6 +244,8 @@ PLANT_CUT_MACHETE = 3 = Needs at least a machete to be cut down icon = 'icons/obj/structures/props/natural/vegetation/ausflora.dmi' density = FALSE fire_flag = FLORA_BURN_NO_SPREAD + layer = UNDERFLOOR_OBJ_LAYER + plane = FLOOR_PLANE /* ICE GRASS @@ -408,6 +410,8 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. unslashable = TRUE unacidable = TRUE cut_level = PLANT_CUT_MACHETE + layer = OBJ_LAYER + plane = GAME_PLANE var/overlay_type = "tallgrass_overlay" /obj/structure/flora/grass/tallgrass/Initialize() @@ -456,6 +460,17 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. overlay_type = "tallgrass_overlay_corner" center = FALSE +// SEKHMET SWAMP +/obj/structure/flora/grass/tallgrass/swamp + color = "#a8a800" + icon_state = "tallgrass" + desc = "A thick carpet of bristling junglegrass, vibrant and untamed." + +/obj/structure/flora/grass/tallgrass/swamp/corner + icon_state = "tallgrass_corner" + overlay_type = "tallgrass_overlay_corner" + center = FALSE + //LV - JUNGLE MAPS// /obj/structure/flora/grass/tallgrass/jungle @@ -542,7 +557,8 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. /obj/structure/flora/bush/ausbushes/reedbush icon_state = "reedbush_1" icon_tag = "reedbush" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/ausbushes/palebush icon_state = "palebush_1" @@ -563,12 +579,14 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. /obj/structure/flora/bush/ausbushes/lavendergrass icon_state = "lavendergrass_1" icon_tag = "lavendergrass" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/ausbushes/ywflowers icon_state = "ywflowers_1" icon_tag = "ywflowers" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /* @@ -585,7 +603,8 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. /obj/structure/flora/bush/ausbushes/var3/leafybush icon_state = "leafybush_1" icon_tag = "leafybush" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/ausbushes/var3/stalkybush icon_state = "stalkybush_1" @@ -602,22 +621,26 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. /obj/structure/flora/bush/ausbushes/var3/brflowers icon_state = "brflowers_1" icon_tag = "brflowers" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/ausbushes/var3/ppflowers icon_state = "ppflowers_1" icon_tag = "ppflowers" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/ausbushes/var3/sparsegrass icon_state = "sparsegrass_1" icon_tag = "sparsegrass" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/ausbushes/var3/fullgrass icon_state = "fullgrass_1" icon_tag = "fullgrass" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /* @@ -636,11 +659,14 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. name = "cactus" desc = "It's a small, spiky cactus." icon_state = "cactus_3" - layer = BELOW_MOB_LAYER + plane = FLOOR_PLANE + layer = TURF_LAYER /obj/structure/flora/bush/desert/cactus/multiple name = "cacti" icon_state = "cacti_1" + plane = FLOOR_PLANE + layer = TURF_LAYER /* @@ -922,3 +948,116 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. update_health(xeno.melee_damage_upper) xeno.tail_stab_animation(src, blunt_stab) return TAILSTAB_COOLDOWN_NORMAL + +/obj/structure/prop/swamp_plants + name = "swamp plant" + desc = "you shouldn't be seeing this." + icon = 'icons/obj/structures/props/natural/vegetation/swamp_plants.dmi' + icon_state = "lillypads1" + layer = TURF_LAYER + plane = FLOOR_PLANE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + +/obj/structure/prop/swamp_plants/lily_pads + icon_state = "lillypads1" + layer = ABOVE_TURF_LAYER + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1 + icon_state = "lillypads1" + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2 + icon_state = "lillypads2" + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3 + icon_state = "lillypads3" + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4 + icon_state = "lillypads4" + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5 + icon_state = "lillypads5" + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6 + icon_state = "lillypads6" + +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7 + icon_state = "lillypads7" + +/obj/structure/prop/swamp_plants/algae + icon_state = "algae1" + alpha = 215 + +/obj/structure/prop/swamp_plants/algae/small + icon_state = "algae1" + +/obj/structure/prop/swamp_plants/algae/small/algae_1 + icon_state = "algae2" + +/obj/structure/prop/swamp_plants/algae/small/algae_2 + icon_state = "algae3" + +/obj/structure/prop/swamp_plants/algae/small/algae_3 + icon_state = "algae4" + +/obj/structure/prop/swamp_plants/algae/small/algae_4 + icon_state = "algae5" + +/obj/structure/prop/swamp_plants/algae/small/algae_5 + icon_state = "algae6" + +/obj/structure/prop/swamp_plants/algae/full + icon_state = "algae_full" + +/obj/structure/prop/swamp_plants/algae/full/algae_full_1 + icon_state = "algae_full_1" + +/obj/structure/prop/swamp_plants/algae/full/algae_full_2 + icon_state = "algae_full_2" + +/obj/structure/prop/swamp_plants/algae/full/algae_full_3 + icon_state = "algae_full_3" + +/obj/structure/prop/swamp_plants/algae/full/algae_full_4 + icon_state = "algae_full_4" + +// Algae edges & corners + +/obj/structure/prop/swamp_plants/algae/straight + icon_state = "algae_edge" + +/obj/structure/prop/swamp_plants/algae/straight/south + dir = 1 + +/obj/structure/prop/swamp_plants/algae/straight/west + dir = 4 + +/obj/structure/prop/swamp_plants/algae/straight/east + dir = 8 + +/obj/structure/prop/swamp_plants/algae/corner + icon_state = "algae_edge_2" + +/obj/structure/prop/swamp_plants/algae/corner/north_west + +/obj/structure/prop/swamp_plants/algae/corner/north_east + dir = 1 + +/obj/structure/prop/swamp_plants/algae/corner/south_east + dir = 4 + +/obj/structure/prop/swamp_plants/algae/corner/south_west + dir = 8 + +/obj/structure/prop/swamp_plants/algae/corner2 + icon_state = "algae_corner" + +/obj/structure/prop/swamp_plants/algae/corner2/north_west + +/obj/structure/prop/swamp_plants/algae/corner2/north_east + dir = 1 + +/obj/structure/prop/swamp_plants/algae/corner2/south_west + dir = 4 + +/obj/structure/prop/swamp_plants/algae/corner2/south_east + dir = 8 diff --git a/code/game/objects/structures/hybrisa_props.dm b/code/game/objects/structures/hybrisa_props.dm index 2e1a42a25d69..9f1a35550406 100644 --- a/code/game/objects/structures/hybrisa_props.dm +++ b/code/game/objects/structures/hybrisa_props.dm @@ -2022,6 +2022,22 @@ /obj/structure/machinery/big_computers/messaging_server/brown icon_state = "messageserver_brown" +/obj/structure/machinery/big_computers/computerdark/computer1 + name = "colonial operations terminal" + icon_state = "dark_computer_radar" + +/obj/structure/machinery/big_computers/computerdark/computer2 + name = "colonial operations terminal" + icon_state = "dark_computer_radar1" + +/obj/structure/machinery/big_computers/computerdark/computer3 + name = "colonial operations terminal" + icon_state = "dark_computer_radar2" + +/obj/structure/machinery/big_computers/computerdark/computer4 + name = "colonial operations terminal" + icon_state = "dark_computer_mps" + // Science Computer Stuff /obj/structure/machinery/big_computers/science_big diff --git a/code/game/objects/structures/landing_signs.dm b/code/game/objects/structures/landing_signs.dm index a56794030f70..6afa27e271c9 100644 --- a/code/game/objects/structures/landing_signs.dm +++ b/code/game/objects/structures/landing_signs.dm @@ -113,3 +113,12 @@ name = "White Antre Research Facility" desc = "A medium sized sign, designating this area as the White Antre Research Facility." icon_state = "antre_sign_3" + +/obj/structure/lz_sign/sekhmet_sign + name = "Sekhmet Swamp landing sign" + desc = "A large sign that reads 'Boloto - Sekhmet' - POP. 112' The UPP 'Star' logo is proudly emblazoned & a scientific symbol on the right side of the sign." + icon_state = "sekhmet_sign_1" + +/obj/structure/lz_sign/sekhmet_sign/interior + desc = "A large sign that reads 'Boloto - Sekhmet' - POP. 112' The UPP 'Star' logo is proudly emblazoned & a scientific symbol on the right side of the sign." + icon_state = "sekhmet_sign_2" diff --git a/code/game/turfs/auto_turf.dm b/code/game/turfs/auto_turf.dm index 9e5d256861b0..cdcc018e0b3e 100644 --- a/code/game/turfs/auto_turf.dm +++ b/code/game/turfs/auto_turf.dm @@ -408,3 +408,72 @@ /turf/open/auto_turf/shale/layer2/weedable is_weedable = FULLY_WEEDABLE + +// Swamp Auto-turf + +/turf/open/auto_turf/swamp_dirt + layer_name = list("marsh sediment", "soft mud", "warn a coder", "warn a coder", "warn a coder") + icon = 'icons/turf/floors/auto_dirt_swamp.dmi' + icon_state = "swamp_1" + icon_prefix = "swamp" + +/turf/open/auto_turf/swamp_dirt/get_dirt_type() + return DIRT_TYPE_SAND + +/turf/open/auto_turf/swamp_dirt/layer0 + icon_state = "swamp_0" + bleed_layer = 0 + +/turf/open/auto_turf/swamp_dirt/layer1 + icon_state = "swamp_1" + bleed_layer = 1 + + +/turf/open/auto_turf/swampalt_dirt + layer_name = list("marsh sediment", "soft mud", "warn a coder", "warn a coder", "warn a coder") + icon = 'icons/turf/floors/auto_dirt_swamp.dmi' + icon_state = "alt_1" + icon_prefix = "alt" + +/turf/open/auto_turf/swampalt_dirt/get_dirt_type() + return DIRT_TYPE_SAND + +/turf/open/auto_turf/swampalt_dirt/layer0 + icon_state = "alt_0" + bleed_layer = 0 + +/turf/open/auto_turf/swampalt_dirt/layer1 + icon_state = "alt_1" + bleed_layer = 1 + +/turf/open/auto_turf/swamp_grass + name = "matted grass" + icon = 'icons/turf/floors/auto_swamp_grass.dmi' + icon_state = "grass_0" + icon_prefix = "grass" + layer_name = list("ground","lush thick grass") + desc = "Grass, dirt, mud, and other assorted high moisture cave flooring." + +/turf/open/auto_turf/swamp_grass/insert_self_into_baseturfs() + baseturfs += /turf/open/auto_turf/swamp_grass/layer0 + +/turf/open/auto_turf/swamp_grass/layer0 + icon_state = "grass_0" + bleed_layer = 0 + variant_prefix_name = "matted grass" + +/turf/open/auto_turf/swamp_grass/layer0_mud + icon_state = "grass_0_mud" + bleed_layer = 0 + variant = "mud" + variant_prefix_name = "muddy" + +/turf/open/auto_turf/swamp_grass/layer0_mud_alt + icon_state = "grass_0_mud_alt" + bleed_layer = 0 + variant = "mud_alt" + variant_prefix_name = "muddy" + +/turf/open/auto_turf/swamp_grass/layer1 + icon_state = "grass_1" + bleed_layer = 1 diff --git a/code/game/turfs/soro.dm b/code/game/turfs/soro.dm index 6db3721df229..67baf1c5e416 100644 --- a/code/game/turfs/soro.dm +++ b/code/game/turfs/soro.dm @@ -197,6 +197,86 @@ /turf/open/gm/coast/dirt/forestbeachcorner2/south_east dir = 8 + +/// Swamp Water + +/turf/open/gm/coast/dirt/swampdir + icon = 'icons/turf/floors/swamp_water.dmi' + icon_state = "swamp" + baseturfs = /turf/open/gm/coast + +/turf/open/gm/coast/dirt/swampdir/south + dir = 1 + +/turf/open/gm/coast/dirt/swampdir/west + dir = 4 + +/turf/open/gm/coast/dirt/swampdir/east + dir = 8 + +/turf/open/gm/coast/dirt/swampbeachcorner + icon = 'icons/turf/floors/swamp_water.dmi' + icon_state = "swampcorner" + +/turf/open/gm/coast/dirt/swampbeachcorner/north_west + +/turf/open/gm/coast/dirt/swampbeachcorner/north_east + dir = 1 + +/turf/open/gm/coast/dirt/swampbeachcorner/south_east + dir = 4 + +/turf/open/gm/coast/dirt/swampbeachcorner/south_west + dir = 8 + +/turf/open/gm/coast/dirt/swampbeachcorner2 + icon = 'icons/turf/floors/swamp_water.dmi' + icon_state = "swampcorner2" + +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west + +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east + dir = 1 + +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west + dir = 4 + +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east + dir = 8 + +/turf/open/gm/dirt/swamp_dirt + name = "swamp dirt" + icon = 'icons/turf/floors/swamp_water.dmi' + icon_state = "desert" + baseturfs = /turf/open/gm/dirt/dark_brown + minimap_color = MINIMAP_DIRT + +/turf/open/gm/dirt/swamp_dirt/variant_1 + icon_state = "desert0" + +/turf/open/gm/dirt/swamp_dirt/variant_2 + icon_state = "desert1" + +/turf/open/gm/dirt/swamp_dirt/variant_3 + icon_state = "desert2" + +/turf/open/gm/dirt/swamp_dirt/variant_5 + icon_state = "desert3" + +/turf/open/gm/dirt/swamp_dirt/variant_5/east + dir = EAST + +/turf/open/gm/dirt/swamp_dirt/variant_5/south + dir = SOUTH + +/turf/open/gm/dirt/swamp_dirt/variant_5/west + dir = WEST + +/turf/open/gm/dirt/swamp_dirt/variant_6 + icon_state = "desert_dug" + +/////////// + /turf/open/asphalt/brown name = "asphalt" icon = 'icons/turf/floors/ground_map_dirt.dmi' @@ -226,3 +306,8 @@ icon = 'icons/turf/floors/tyrargo_map_dirt.dmi' icon_state = "forestseashallow" icon_overlay = "forestriverwater" + +/turf/open/gm/river/swamp + icon = 'icons/turf/floors/swamp_water.dmi' + icon_state = "swampshallow" + icon_overlay = "swampriverwater" diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm index 0b3a6b272860..681a63bce885 100644 --- a/code/game/turfs/walls/wall_types.dm +++ b/code/game/turfs/walls/wall_types.dm @@ -725,6 +725,14 @@ walltype = WALL_FOREST_ROCK_DIRTY //Dirty rock but near a forest not jungle. turf_flags = TURF_HULL +/turf/closed/wall/strata_ice/swamp + name = "swamp vegetation" + icon = 'icons/turf/walls/swamp_veg.dmi' + icon_state = "swamp_veg" + desc = "Exceptionally dense vegetation that you can't see through." + walltype = WALL_SWAMP + turf_flags = TURF_HULL + minimap_color = MINIMAP_BLACK /turf/closed/wall/strata_outpost_ribbed //this guy is our reinforced replacement name = "ribbed outpost walls" diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm index ceec4faba336..be78bec954ac 100644 --- a/code/modules/clothing/suits/marine_armor/ert.dm +++ b/code/modules/clothing/suits/marine_armor/ert.dm @@ -318,13 +318,19 @@ slowdown = SLOWDOWN_ARMOR_LIGHT -/obj/item/clothing/suit/storage/marine/faction/UPP/army/simple - name = "6B70 personal body armour" +/obj/item/clothing/suit/armor/vest/UPP icon_state = "upp_generic_ballistic_armor" + icon = 'icons/obj/items/clothing/suits/suits_by_faction/UPP.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_faction/UPP.dmi' + ) -/obj/item/clothing/suit/storage/marine/faction/UPP/army/alt - name = "6B75 personal body armour" +/obj/item/clothing/suit/armor/vest/UPP/alt icon_state = "upp_ballistic_armor" + icon = 'icons/obj/items/clothing/suits/suits_by_faction/UPP.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/clothing/suits/suits_by_faction/UPP.dmi' + ) // People's Armed Police diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index 8d7424161e3f..bfef77ae20d5 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -157,8 +157,9 @@ GLOBAL_LIST_INIT(mapless_maps, list(MAP_RUNTIME, MAP_CHINOOK, MAIN_SHIP_DEFAULT_ /obj/item/map/sekhmet_swamp_map name = "\improper SI-391 Sekhmet Swamp map" - desc = "An overview of the Sekhmet Swamp research facility schematics." + desc = "An overview of the Sekhmet Swamp medical research facility colony schematics." html_link = "images/1/18/Map_icecolony.png" + color = "#8cab00" /obj/item/map/galaxy name = "\improper Galaxy map" diff --git a/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm b/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm index 6d1838075825..37bc39008d8e 100644 --- a/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm +++ b/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm @@ -181,7 +181,7 @@ if(4) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/army_beret(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/army/alt(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/army/alt(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/UPP/alt(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/black/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/brown/half_full(new_human), WEAR_WAIST) diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm index 7070e8bb3bed..1a58a154a1dd 100644 --- a/code/modules/paperwork/filingcabinet.dm +++ b/code/modules/paperwork/filingcabinet.dm @@ -225,6 +225,36 @@ populate() ..() +/obj/structure/filingcabinet/dark/security + var/virgin = 1 + + +/obj/structure/filingcabinet/dark/security/proc/populate() + if(virgin) + for(var/datum/data/record/G in GLOB.data_core.general) + var/datum/data/record/S + for(var/datum/data/record/R in GLOB.data_core.security) + if((R.fields["name"] == G.fields["name"] || R.fields["id"] == G.fields["id"])) + S = R + break + if(S) + var/obj/item/paper/P = new /obj/item/paper(src) + P.info = "
Security Record

" + P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]
\nSex: [G.fields["sex"]]
\nAge: [G.fields["age"]]
\nPhysical Status: [G.fields["p_stat"]]
\nMental Status: [G.fields["m_stat"]]
" + P.info += "
\n
Security Data

\nCriminal Status: [S.fields["criminal"]]
\n
\nIncidents: [S.fields["incident"]]
\n
\n
Comments/Log

" + var/counter = 1 + while(S.fields["com_[counter]"]) + P.info += "[S.fields["com_[counter]"]]
" + counter++ + P.info += "" + P.name = "Security Record ([G.fields["name"]])" + virgin = 0 //tabbing here is correct- it's possible for people to try and use it + //before the records have been generated, so we do this inside the loop. + +/obj/structure/filingcabinet/dark/security/attack_hand() + populate() + ..() + /* * Medical Record Cabinets */ @@ -258,6 +288,36 @@ populate() ..() +/obj/structure/filingcabinet/dark/medical + var/virgin = 1 + +/obj/structure/filingcabinet/dark/medical/proc/populate() + if(virgin) + for(var/datum/data/record/G in GLOB.data_core.general) + var/datum/data/record/M + for(var/datum/data/record/R as anything in GLOB.data_core.medical) + if((R.fields["name"] == G.fields["name"] || R.fields["id"] == G.fields["id"])) + M = R + break + if(M) + var/obj/item/paper/P = new /obj/item/paper(src) + P.info = "
Medical Record

" + P.info += "Name: [G.fields["name"]] ID: [G.fields["id"]]
\nSex: [G.fields["sex"]]
\nAge: [G.fields["age"]]
\nPhysical Status: [G.fields["p_stat"]]
\nMental Status: [G.fields["m_stat"]]
" + + P.info += "
\n
Medical Data

\nBlood Type: [M.fields["blood_type"]]
\n
\nMinor Disabilities: [M.fields["minor_disability"]]
\nDetails: [M.fields["minor_disability_details"]]
\n
\nMajor Disabilities: [M.fields["major_disability"]]
\nDetails: [M.fields["major_disability_details"]]
\n
\nAllergies: [M.fields["allergies"]]
\nDetails: [M.fields["allergies_details"]]
\n
\nCurrent Diseases: [M.fields["diseases"]] (per disease info placed in log/comment section)
\nDetails: [M.fields["diseases_details"]]
\n
\nImportant Notes:
\n\t[M.fields["notes"]]
\n
\n
Comments/Log

" + var/counter = 1 + while(M.fields["com_[counter]"]) + P.info += "[M.fields["com_[counter]"]]
" + counter++ + P.info += "" + P.name = "Medical Record ([G.fields["name"]])" + virgin = 0 //tabbing here is correct- it's possible for people to try and use it + //before the records have been generated, so we do this inside the loop. + +/obj/structure/filingcabinet/dark/medical/attack_hand() + populate() + ..() + /* * Hydroponics Cabinets */ @@ -271,3 +331,33 @@ name = "disk cabinet" desc = "A large cabinet with drawers. This one is meant for storing floral data disks." allowed_types = list(/obj/item/disk) + +// Dark Metal + +/obj/structure/filingcabinet/dark + name = "filing cabinet" + desc = "A large cabinet with drawers." + icon = 'icons/obj/structures/props/furniture/misc.dmi' + icon_state = "darkfilingcabinet" + +/obj/structure/filingcabinet/dark/chestdrawer + name = "chest drawer" + icon_state = "darkchestdrawer" + +/obj/structure/filingcabinet/dark/filingcabinet //not changing the path to avoid unecessary map issues, but please don't name stuff like this in the future -Pete + icon_state = "darktallcabinet" + +// Wood + +/obj/structure/filingcabinet/wood + name = "filing cabinet" + desc = "A large cabinet with drawers." + icon = 'icons/obj/structures/props/furniture/misc.dmi' + icon_state = "woodfilingcabinet" + +/obj/structure/filingcabinet/wood/chestdrawer + name = "chest drawer" + icon_state = "woodchestdrawer" + +/obj/structure/filingcabinet/wood/filingcabinet //not changing the path to avoid unecessary map issues, but please don't name stuff like this in the future -Pete + icon_state = "woodtallcabinet" diff --git a/code/modules/shuttle/ripple.dm b/code/modules/shuttle/ripple.dm index e54ecc1ea15c..fddd7c27e0b0 100644 --- a/code/modules/shuttle/ripple.dm +++ b/code/modules/shuttle/ripple.dm @@ -17,6 +17,7 @@ not to be under it." icon = 'icons/effects/effects.dmi' icon_state = "shadow_square" + mouse_opacity = MOUSE_OPACITY_TRANSPARENT /obj/effect/abstract/ripple/Initialize(mapload, time_left) . = ..() diff --git a/code/modules/vehicles/hardpoints/wheels/van_wheels.dm b/code/modules/vehicles/hardpoints/wheels/van_wheels.dm index f2dce92c84b3..2082f5ffb2c1 100644 --- a/code/modules/vehicles/hardpoints/wheels/van_wheels.dm +++ b/code/modules/vehicles/hardpoints/wheels/van_wheels.dm @@ -12,3 +12,18 @@ health = 250 move_delay = VEHICLE_SPEED_VERYFAST + +/obj/item/hardpoint/locomotion/hovercraft_propellers + name = "hovercraft propellers" + desc = "Integral to the movement of the hovercraft." + icon = 'icons/obj/vehicles/hardpoints/hovercraft.dmi' + + icon_state = "hovercraft_propellers" + disp_icon = "van" + disp_icon_state = "wheels" + + slot = HDPT_WHEELS + + health = 250 + + move_delay = VEHICLE_SPEED_VERYFAST diff --git a/code/modules/vehicles/interior/areas.dm b/code/modules/vehicles/interior/areas.dm index 84eba94d6860..3364819939ab 100644 --- a/code/modules/vehicles/interior/areas.dm +++ b/code/modules/vehicles/interior/areas.dm @@ -45,3 +45,7 @@ /area/interior/vehicle/arc name = "\improper ARC interior" icon_state = "arc" + +/area/interior/vehicle/hovercraft + name = "hovercraft interior" + icon_state = "van" diff --git a/code/modules/vehicles/interior/interactable/seats.dm b/code/modules/vehicles/interior/interactable/seats.dm index 7048aa44ccc3..86110092efa9 100644 --- a/code/modules/vehicles/interior/interactable/seats.dm +++ b/code/modules/vehicles/interior/interactable/seats.dm @@ -327,6 +327,7 @@ var/mob_old_x = 0 var/buckle_offset_y = 0 var/mob_old_y = 0 + var/allways_undense = FALSE /obj/structure/bed/chair/vehicle/Initialize() . = ..() @@ -384,24 +385,34 @@ if(buckle_offset_y != 0) M.pixel_y = mob_old_y mob_old_y = 0 - - for(var/obj/structure/bed/chair/vehicle/VS in get_turf(src)) - if(VS != src) - //if both seats on same tile have buckled mob, we become dense, otherwise, not dense. - if(buckled_mob) - if(VS.buckled_mob) - REMOVE_TRAIT(buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) - REMOVE_TRAIT(VS.buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + if(allways_undense) + ADD_TRAIT(buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + else + for(var/obj/structure/bed/chair/vehicle/VS in get_turf(src)) + if(VS != src) + //if both seats on same tile have buckled mob, we become dense, otherwise, not dense. + if(buckled_mob) + if(VS.buckled_mob) + REMOVE_TRAIT(buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + REMOVE_TRAIT(VS.buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + else + ADD_TRAIT(buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) else - ADD_TRAIT(buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) - else - if(VS.buckled_mob) - ADD_TRAIT(VS.buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) - REMOVE_TRAIT(M, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) - break + if(VS.buckled_mob) + ADD_TRAIT(VS.buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + REMOVE_TRAIT(M, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + break + + handle_rotation() +/obj/structure/bed/chair/vehicle/unbuckle() + if(buckled_mob && buckled_mob.buckled == src) + REMOVE_TRAIT(buckled_mob, TRAIT_UNDENSE, DOUBLE_SEATS_TRAIT) + . = ..() + + //attack handling /obj/structure/bed/chair/vehicle/attack_alien(mob/living/user) @@ -475,3 +486,21 @@ name = "passenger seat" desc = "A sturdy chair with a brace that lowers over your body. Prevents being flung around in vehicle during crash being injured as a result. Fasten your seatbelts, kids! Fix with welding tool in case of damage." icon = 'icons/obj/vehicles/interiors/general_wy.dmi' + +// Comfy Seats + +/obj/structure/bed/chair/vehicle/comfy + icon = 'icons/obj/vehicles/interiors/seats.dmi' + allways_undense = TRUE + +/obj/structure/bed/chair/vehicle/comfy/alt + icon_state = "alt_vehicle_seat" + +/obj/structure/bed/chair/vehicle/comfy/alt_1 + icon_state = "alt1_vehicle_seat" + +/obj/structure/bed/chair/vehicle/comfy/alt_2 + icon_state = "alt2_vehicle_seat" + +/obj/structure/bed/chair/vehicle/comfy/alt_3 + icon_state = "alt3_vehicle_seat" diff --git a/code/modules/vehicles/interior/interior_landmarks.dm b/code/modules/vehicles/interior/interior_landmarks.dm index b57defea5f4b..96c210106591 100644 --- a/code/modules/vehicles/interior/interior_landmarks.dm +++ b/code/modules/vehicles/interior/interior_landmarks.dm @@ -311,6 +311,8 @@ V.pixel_y = pixel_y V.layer = layer V.alpha = alpha + V.icon = icon + V.icon_state = icon_state qdel(src) @@ -331,5 +333,6 @@ V.pixel_y = pixel_y V.alpha = alpha V.icon = icon + V.icon_state = icon_state qdel(src) diff --git a/code/modules/vehicles/van/hovercraft.dm b/code/modules/vehicles/van/hovercraft.dm new file mode 100644 index 000000000000..61f70378c0c0 --- /dev/null +++ b/code/modules/vehicles/van/hovercraft.dm @@ -0,0 +1,306 @@ + +//Trucks +//Read the documentation in multitile.dm before trying to decipher this stuff + +/obj/vehicle/multitile/hovercraft + name = "VAT-02B 'Temee' Hovercraft" + desc = "A small lightly armoured multipurpose hovercraft. Entrances on the sides." + desc_lore = "A lightly armoured multipurpose hovercraft developed in 2179 by the UPP under a joint-project led by Mongolia, Russia and Kazakhstan to produce a high speed, long range hovercraft. The VAT-02 was born as a civilian modification of the military VSK-44 hovercraft. With the VAT-02B variant 'Temee' or 'Camel' being popular on worlds with extreme terrain changes or long tracks of flat ground by adventurous colonists." + layer = ABOVE_XENO_LAYER + + icon = 'icons/obj/vehicles/hovercraft.dmi' + icon_state = "hovercraft_base" + pixel_x = -16 + pixel_y = -16 + + bound_width = 64 + bound_height = 64 + + bound_x = 0 + bound_y = 0 + + interior_map = /datum/map_template/interior/hovercraft + + entrances = list( + "left" = list(2, 0), + "right" = list(-1, 0), + ) + + vehicle_flags = VEHICLE_CLASS_WEAK + + passengers_slots = 6 + xenos_slots = 2 + + misc_multipliers = list( + "move" = 0.5, // fucking annoying how this is the only way to modify speed + "accuracy" = 1, + "cooldown" = 1 + ) + + movement_sound = 'sound/vehicles/hovercraft_driving.ogg' + honk_sound = 'sound/vehicles/boat_horn.ogg' + + vehicle_light_range = 8 + + move_max_momentum = 3 + + hardpoints_allowed = list( + /obj/item/hardpoint/locomotion/hovercraft_propellers, + ) + + move_turn_momentum_loss_factor = 1 + + req_access = list() + req_one_access = list() + + door_locked = FALSE + + mob_size_required_to_hit = MOB_SIZE_XENO + + var/overdrive_next = 0 + var/overdrive_cooldown = 15 SECONDS + var/overdrive_duration = 3 SECONDS + var/overdrive_speed_mult = 0.3 // Additive (30% more speed, adds to 80% more speed) + + var/momentum_loss_on_weeds_factor = 0.2 + + move_on_turn = TRUE + + var/list/mobs_under = list() + var/image/under_image + var/image/normal_image + + var/next_push = 0 + var/push_delay = 0.5 SECONDS + +/obj/vehicle/multitile/hovercraft/Initialize() + . = ..() + under_image = image(icon, src, icon_state, layer = BELOW_MOB_LAYER) + under_image.alpha = 127 + + normal_image = image(icon, src, icon_state, layer = layer) + + icon_state = null + + RegisterSignal(SSdcs, COMSIG_GLOB_MOB_LOGGED_IN, PROC_REF(add_default_image)) + + for(var/I in GLOB.player_list) + add_default_image(SSdcs, I) + +/obj/vehicle/multitile/hovercraft/BlockedPassDirs(atom/movable/mover, target_dir) + if(mover in mobs_under) //can't collide with the thing you're buckled to + return NO_BLOCKED_MOVEMENT + + if(isliving(mover)) + var/mob/living/M = mover + if(M.mob_flags & SQUEEZE_UNDER_VEHICLES) + add_under_van(M) + return NO_BLOCKED_MOVEMENT + + if(M.body_position == LYING_DOWN) + return NO_BLOCKED_MOVEMENT + + if(M.mob_size >= MOB_SIZE_IMMOBILE && next_push < world.time) + if(try_move(target_dir, force=TRUE)) + next_push = world.time + push_delay + return NO_BLOCKED_MOVEMENT + + return ..() + +/* +** PRESETS +*/ +/obj/vehicle/multitile/hovercraft/pre_movement() + if(locate(/obj/effect/alien/weeds) in loc) + move_momentum *= momentum_loss_on_weeds_factor + + . = ..() + + for(var/I in mobs_under) + var/mob/M = I + if(!(M.loc in locs)) + remove_under_van(M) + +/obj/vehicle/multitile/hovercraft/proc/add_under_van(mob/living/L) + if(L in mobs_under) + return + + mobs_under += L + RegisterSignal(L, COMSIG_PARENT_QDELETING, PROC_REF(remove_under_van)) + RegisterSignal(L, COMSIG_MOB_LOGGED_IN, PROC_REF(add_client)) + RegisterSignal(L, COMSIG_MOVABLE_MOVED, PROC_REF(check_under_van)) + + if(L.client) + add_client(L) + +/obj/vehicle/multitile/hovercraft/proc/remove_under_van(mob/living/L) + SIGNAL_HANDLER + mobs_under -= L + + if(L.client) + L.client.images -= under_image + add_default_image(SSdcs, L) + + UnregisterSignal(L, list( + COMSIG_PARENT_QDELETING, + COMSIG_MOB_LOGGED_IN, + COMSIG_MOVABLE_MOVED, + )) + +/obj/vehicle/multitile/hovercraft/proc/check_under_van(mob/M, turf/oldloc, direction) + SIGNAL_HANDLER + if(!(M.loc in locs)) + remove_under_van(M) + +/obj/vehicle/multitile/hovercraft/proc/add_client(mob/living/L) + SIGNAL_HANDLER + L.client.images += under_image + L.client.images -= normal_image + +/obj/vehicle/multitile/hovercraft/proc/add_default_image(subsystem, mob/M) + SIGNAL_HANDLER + M.client.images += normal_image + +/obj/vehicle/multitile/hovercraft/Destroy() + for(var/I in mobs_under) + remove_under_van(I) + + for(var/I in GLOB.player_list) + var/mob/M = I + M.client.images -= normal_image + + QDEL_NULL(lighting_holder) + + return ..() + +/obj/vehicle/multitile/hovercraft/attackby(obj/item/O, mob/user) + if(user.z != z) + return ..() + + if(iswelder(O) && health >= initial(health)) + if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) + to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) + return + var/obj/item/hardpoint/H + for(var/obj/item/hardpoint/potential_hardpoint in hardpoints) + if(potential_hardpoint.health < initial(potential_hardpoint.health)) + H = potential_hardpoint + break + + if(H) + H.handle_repair(O, user) + update_icon() + return + + . = ..() + + +/obj/vehicle/multitile/hovercraft/handle_click(mob/living/user, atom/A, list/mods) + if(mods[SHIFT_CLICK] && !mods[ALT_CLICK]) + if(overdrive_next > world.time) + to_chat(user, SPAN_WARNING("You can't activate overdrive yet! Wait [round((overdrive_next - world.time) / 10, 0.1)] seconds.")) + return + + misc_multipliers["move"] -= overdrive_speed_mult + addtimer(CALLBACK(src, PROC_REF(reset_overdrive)), overdrive_duration) + + overdrive_next = world.time + overdrive_cooldown + to_chat(user, SPAN_NOTICE("You activate overdrive.")) + playsound(src, 'sound/vehicles/hovercraft_overdrive.ogg', 75, FALSE) + return + + return ..() + +/obj/vehicle/multitile/hovercraft/proc/reset_overdrive() + misc_multipliers["move"] += overdrive_speed_mult + +/obj/vehicle/multitile/hovercraft/get_projectile_hit_boolean(obj/projectile/P) + if(src == P.original) //clicking on the van itself will hit it. + var/hitchance = P.get_effective_accuracy() + if(prob(hitchance)) + return TRUE + return FALSE + +/obj/vehicle/multitile/hovercraft/Collide(atom/A) + if(!seats[VEHICLE_DRIVER]) + return FALSE + + if(istype(A, /obj/structure/barricade/plasteel)) + return ..() + + if(istype(A, /turf/closed/wall) || \ + istype(A, /obj/structure/barricade/sandbags) || \ + istype(A, /obj/structure/barricade/metal) || \ + istype(A, /obj/structure/barricade/deployable) || \ + istype(A, /obj/structure/machinery/cryopod)) //Can no longer runover cryopods + + return FALSE + + return ..() + +/* +** PRESETS SPAWNERS +*/ + +/obj/effect/vehicle_spawner/hovercraft + name = "Hovercraft Spawner" + icon = 'icons/obj/vehicles/hovercraft.dmi' + icon_state = "hovercraft_base" + pixel_x = -16 + pixel_y = -16 + +/obj/effect/vehicle_spawner/hovercraft/Initialize() + . = ..() + spawn_vehicle() + qdel(src) + +//PRESET: no hardpoints +/obj/effect/vehicle_spawner/hovercraft/spawn_vehicle() + var/obj/vehicle/multitile/hovercraft/VAN = new (loc) + + load_misc(VAN) + handle_direction(VAN) + VAN.update_icon() + +//PRESET: wheels installed, destroyed +/obj/effect/vehicle_spawner/hovercraft/decrepit/spawn_vehicle() + var/obj/vehicle/multitile/hovercraft/VAN = new (loc) + + load_misc(VAN) + load_hardpoints(VAN) + handle_direction(VAN) + load_damage(VAN) + VAN.update_icon() + +/obj/effect/vehicle_spawner/hovercraft/decrepit/load_hardpoints(obj/vehicle/multitile/van/V) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/hovercraft_propellers) + +//PRESET: wheels installed +/obj/effect/vehicle_spawner/hovercraft/fixed/spawn_vehicle() + var/obj/vehicle/multitile/hovercraft/VAN = new (loc) + + load_misc(VAN) + load_hardpoints(VAN) + handle_direction(VAN) + VAN.update_icon() + +/obj/effect/vehicle_spawner/hovercraft/fixed/load_hardpoints(obj/vehicle/multitile/van/V) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/hovercraft_propellers) + +/obj/structure/interior_exit/vehicle/hovercraft + name = "Hovercraft side door" + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi' + icon_state = "interior_door" + +/obj/structure/interior_exit/vehicle/hovercraft/exterior + name = "Hovercraft side door" + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi' + icon_state = "exterior_door" + +/obj/structure/prop/vehicle/hovercraft + name = "Hovercraft chassis" + + icon = 'icons/obj/vehicles/interiors/hovercraft_chassis.dmi' + icon_state = "hovercraft_chassis" + layer = ABOVE_TURF_LAYER + mouse_opacity = FALSE diff --git a/colonialmarines.dme b/colonialmarines.dme index 325ff24d159c..fa692a0919a8 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -2709,6 +2709,7 @@ #include "code\modules\vehicles\tank\tank.dm" #include "code\modules\vehicles\van\box_van.dm" #include "code\modules\vehicles\van\clf_van.dm" +#include "code\modules\vehicles\van\hovercraft.dm" #include "code\modules\vehicles\van\interior.dm" #include "code\modules\vehicles\van\pizza_van.dm" #include "code\modules\vehicles\van\van.dm" diff --git a/icons/landmarks.dmi b/icons/landmarks.dmi index eebb5d302051..0c2315b5dc30 100644 Binary files a/icons/landmarks.dmi and b/icons/landmarks.dmi differ diff --git a/icons/mob/humans/onmob/clothing/belts/misc.dmi b/icons/mob/humans/onmob/clothing/belts/misc.dmi index 59bdaba9364f..91f1acd10c9d 100644 Binary files a/icons/mob/humans/onmob/clothing/belts/misc.dmi and b/icons/mob/humans/onmob/clothing/belts/misc.dmi differ diff --git a/icons/mob/humans/onmob/inhands/items/toys_lefthand.dmi b/icons/mob/humans/onmob/inhands/items/toys_lefthand.dmi index 5d46e23a7472..65e590f8c8db 100644 Binary files a/icons/mob/humans/onmob/inhands/items/toys_lefthand.dmi and b/icons/mob/humans/onmob/inhands/items/toys_lefthand.dmi differ diff --git a/icons/mob/humans/onmob/inhands/items/toys_righthand.dmi b/icons/mob/humans/onmob/inhands/items/toys_righthand.dmi index 57ba79c4a5fd..8c253481020d 100644 Binary files a/icons/mob/humans/onmob/inhands/items/toys_righthand.dmi and b/icons/mob/humans/onmob/inhands/items/toys_righthand.dmi differ diff --git a/icons/obj/items/misc.dmi b/icons/obj/items/misc.dmi new file mode 100644 index 000000000000..3f36e548199a Binary files /dev/null and b/icons/obj/items/misc.dmi differ diff --git a/icons/obj/structures/bookshelf.dmi b/icons/obj/structures/bookshelf.dmi index 24bcd8fb8514..f127906f93aa 100644 Binary files a/icons/obj/structures/bookshelf.dmi and b/icons/obj/structures/bookshelf.dmi differ diff --git a/icons/obj/structures/machinery/computer.dmi b/icons/obj/structures/machinery/computer.dmi index 80b4f0bc6004..1438ce153ae4 100644 Binary files a/icons/obj/structures/machinery/computer.dmi and b/icons/obj/structures/machinery/computer.dmi differ diff --git a/icons/obj/structures/props/containers/contain.dmi b/icons/obj/structures/props/containers/contain.dmi index 832ee9a4fe9d..e9fc8b049265 100644 Binary files a/icons/obj/structures/props/containers/contain.dmi and b/icons/obj/structures/props/containers/contain.dmi differ diff --git a/icons/obj/structures/props/containers/containHorizont.dmi b/icons/obj/structures/props/containers/containHorizont.dmi index 5aa8329668e3..91d98eca9e53 100644 Binary files a/icons/obj/structures/props/containers/containHorizont.dmi and b/icons/obj/structures/props/containers/containHorizont.dmi differ diff --git a/icons/obj/structures/props/furniture/misc.dmi b/icons/obj/structures/props/furniture/misc.dmi index 607117f41751..d7ed350b005b 100644 Binary files a/icons/obj/structures/props/furniture/misc.dmi and b/icons/obj/structures/props/furniture/misc.dmi differ diff --git a/icons/obj/structures/props/hybrisa/computers.dmi b/icons/obj/structures/props/hybrisa/computers.dmi index 7562d56eaf8e..2297dbe13f97 100644 Binary files a/icons/obj/structures/props/hybrisa/computers.dmi and b/icons/obj/structures/props/hybrisa/computers.dmi differ diff --git a/icons/obj/structures/props/landing_signs.dmi b/icons/obj/structures/props/landing_signs.dmi index 40078b153156..96ecb9afd262 100644 Binary files a/icons/obj/structures/props/landing_signs.dmi and b/icons/obj/structures/props/landing_signs.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/swamp_plants.dmi b/icons/obj/structures/props/natural/vegetation/swamp_plants.dmi new file mode 100644 index 000000000000..cce8550b8780 Binary files /dev/null and b/icons/obj/structures/props/natural/vegetation/swamp_plants.dmi differ diff --git a/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi b/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi index 95324f2acca6..ccacef254d0d 100644 Binary files a/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi and b/icons/obj/structures/props/natural/vegetation/tyrargo_wood_flora.dmi differ diff --git a/icons/obj/vehicles/hardpoints/hovercraft.dmi b/icons/obj/vehicles/hardpoints/hovercraft.dmi new file mode 100644 index 000000000000..f2078cc43941 Binary files /dev/null and b/icons/obj/vehicles/hardpoints/hovercraft.dmi differ diff --git a/icons/obj/vehicles/hardpoints/van.dmi b/icons/obj/vehicles/hardpoints/van.dmi index a069c21e18cc..c8c1b5360e43 100644 Binary files a/icons/obj/vehicles/hardpoints/van.dmi and b/icons/obj/vehicles/hardpoints/van.dmi differ diff --git a/icons/obj/vehicles/hovercraft.dmi b/icons/obj/vehicles/hovercraft.dmi new file mode 100644 index 000000000000..f6ec0c6f5407 Binary files /dev/null and b/icons/obj/vehicles/hovercraft.dmi differ diff --git a/icons/obj/vehicles/interiors/hovercraft.dmi b/icons/obj/vehicles/interiors/hovercraft.dmi new file mode 100644 index 000000000000..f244ecae3a5a Binary files /dev/null and b/icons/obj/vehicles/interiors/hovercraft.dmi differ diff --git a/icons/obj/vehicles/interiors/hovercraft_chassis.dmi b/icons/obj/vehicles/interiors/hovercraft_chassis.dmi new file mode 100644 index 000000000000..b907143772fb Binary files /dev/null and b/icons/obj/vehicles/interiors/hovercraft_chassis.dmi differ diff --git a/icons/obj/vehicles/interiors/seats.dmi b/icons/obj/vehicles/interiors/seats.dmi new file mode 100644 index 000000000000..db5b0729be25 Binary files /dev/null and b/icons/obj/vehicles/interiors/seats.dmi differ diff --git a/icons/turf/floors/auto_dirt_swamp.dmi b/icons/turf/floors/auto_dirt_swamp.dmi new file mode 100644 index 000000000000..5ac26f4f8406 Binary files /dev/null and b/icons/turf/floors/auto_dirt_swamp.dmi differ diff --git a/icons/turf/floors/auto_swamp_grass.dmi b/icons/turf/floors/auto_swamp_grass.dmi new file mode 100644 index 000000000000..c3036e60e5fa Binary files /dev/null and b/icons/turf/floors/auto_swamp_grass.dmi differ diff --git a/icons/turf/floors/swamp_water.dmi b/icons/turf/floors/swamp_water.dmi new file mode 100644 index 000000000000..25f901c10b0c Binary files /dev/null and b/icons/turf/floors/swamp_water.dmi differ diff --git a/icons/turf/walls/swamp_veg.dmi b/icons/turf/walls/swamp_veg.dmi new file mode 100644 index 000000000000..a6c2e354489e Binary files /dev/null and b/icons/turf/walls/swamp_veg.dmi differ diff --git a/maps/interiors/hovercraft.dmm b/maps/interiors/hovercraft.dmm new file mode 100644 index 000000000000..e02fcbb4d689 --- /dev/null +++ b/maps/interiors/hovercraft.dmm @@ -0,0 +1,158 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"c" = ( +/obj/structure/prop/vehicle/hovercraft{ + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/bed/chair/vehicle/comfy/alt_1{ + dir = 1; + pixel_x = -6; + buckling_x = -6 + }, +/obj/effect/landmark/interior/spawn/interior_viewport/simple{ + icon_state = "viewport_simple_middle"; + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + pixel_y = 6; + alpha = 75 + }, +/turf/open/shuttle/vehicle/floor_3_12, +/area/interior/vehicle/hovercraft) +"h" = ( +/obj/structure/bed/chair/vehicle/comfy/alt_1{ + dir = 1; + pixel_x = -22; + buckling_x = -22 + }, +/obj/effect/landmark/interior/spawn/entrance{ + alpha = 50; + exit_type = /obj/structure/interior_exit/vehicle/hovercraft/exterior; + name = "right entrance marker"; + tag = "right" + }, +/turf/open/shuttle/vehicle/floor_1_6, +/area/interior/vehicle/hovercraft) +"o" = ( +/obj/effect/landmark/interior/spawn/vehicle_driver_seat{ + dir = 4; + icon = 'icons/obj/vehicles/interiors/seats.dmi'; + icon_state = "alt1_vehicle_seat"; + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/landmark/interior/spawn/interior_viewport/simple{ + pixel_y = 33; + icon_state = "viewport_simple_front"; + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + pixel_x = 2; + layer = 3 + }, +/turf/open/shuttle/vehicle/floor_3_11, +/area/interior/vehicle/hovercraft) +"s" = ( +/obj/structure/bed/chair/vehicle/comfy/alt_1{ + pixel_x = -6; + pixel_y = 18; + buckling_x = -6; + buckling_y = 18 + }, +/obj/effect/landmark/interior/spawn/interior_viewport/simple{ + pixel_y = 36; + icon_state = "viewport_simple_middle"; + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + layer = 3 + }, +/turf/open/shuttle/vehicle/floor_3_11, +/area/interior/vehicle/hovercraft) +"t" = ( +/obj/effect/landmark/interior/spawn/interior_viewport/simple/windshield{ + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + icon_state = "viewport_front2" + }, +/turf/open/void/vehicle, +/area/space) +"v" = ( +/obj/effect/landmark/interior/spawn/interior_viewport/simple/windshield{ + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + icon_state = "viewport_front1" + }, +/turf/open/void/vehicle, +/area/space) +"y" = ( +/obj/effect/landmark/interior/spawn/interior_viewport/simple/windshield{ + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + icon_state = "viewport_front3" + }, +/turf/open/void/vehicle, +/area/space) +"G" = ( +/obj/structure/bed/chair/vehicle/comfy/alt_1{ + dir = 4; + pixel_x = -3; + pixel_y = 11; + buckling_x = -3; + buckling_y = 11 + }, +/obj/effect/landmark/interior/spawn/interior_viewport/simple{ + icon_state = "viewport_simple_front"; + icon = 'icons/obj/vehicles/interiors/hovercraft.dmi'; + pixel_x = 2; + pixel_y = 3; + alpha = 75 + }, +/turf/open/shuttle/vehicle/floor_3_12, +/area/interior/vehicle/hovercraft) +"M" = ( +/obj/structure/bed/chair/vehicle/comfy/alt_1{ + pixel_x = -22; + pixel_y = 18; + buckling_x = -22; + buckling_y = 18 + }, +/obj/effect/landmark/interior/spawn/entrance{ + dir = 1; + exit_type = /obj/structure/interior_exit/vehicle/hovercraft; + name = "left entrance marker"; + pixel_y = 32; + tag = "left" + }, +/turf/open/shuttle/vehicle/floor_1_6, +/area/interior/vehicle/hovercraft) +"O" = ( +/turf/open/void/vehicle, +/area/space) + +(1,1,1) = {" +O +O +O +O +O +"} +(2,1,1) = {" +O +O +s +c +O +"} +(3,1,1) = {" +O +O +M +h +O +"} +(4,1,1) = {" +O +O +o +G +O +"} +(5,1,1) = {" +O +v +t +y +O +"} diff --git a/maps/map_files/Sekhmet_Swamp/Sekhmet_Swamp.dmm b/maps/map_files/Sekhmet_Swamp/Sekhmet_Swamp.dmm index 27fa1fa0e395..2e946c1c204d 100644 --- a/maps/map_files/Sekhmet_Swamp/Sekhmet_Swamp.dmm +++ b/maps/map_files/Sekhmet_Swamp/Sekhmet_Swamp.dmm @@ -2,50 +2,46 @@ "aaa" = ( /turf/closed/wall/upp_ship, /area/sekhmet/outside/southeast_road) -"aab" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/central_road) "aac" = ( +/obj/structure/blocker/invisible_wall, /turf/closed/wall/upp_ship, /area/sekhmet/int_reg/catwalk) "aad" = ( /turf/closed/wall/upp_ship, /area/sekhmet/outside/central_road) "aae" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/machinery/light/small, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "aaf" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) "aag" = ( /obj/structure/platform_decoration/metal/kutjevo/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "aah" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/upp_ship, /area/sekhmet/outside/swamp) "aai" = ( -/obj/structure/platform/stone/soro, -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aaj" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/sky) +/turf/closed/wall/strata_ice/swamp, +/area/space) "aak" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname, /turf/open/floor/plating/plating_catwalk/strata, @@ -57,6 +53,7 @@ "aam" = ( /obj/structure/closet/crate, /obj/structure/platform/metal/shiva/west, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "aan" = ( @@ -69,15 +66,15 @@ /area/sekhmet/int_reg/garage) "aap" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "aaq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) "aar" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) "aas" = ( /obj/structure/machinery/door/airlock/hybrisa/generic/autoname, @@ -89,8 +86,8 @@ /area/sekhmet/int_reg/garage) "aau" = ( /obj/structure/platform/metal/shiva/east, -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/garage) @@ -99,20 +96,14 @@ icon_state = "cargo"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/shiva, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) -"aaw" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/corsat, -/area/sekhmet/int_heavy/low_level_gen) "aax" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /obj/structure/platform/metal/shiva, /turf/open/floor/strata/floor2, @@ -137,7 +128,7 @@ /area/sekhmet/int_reg/garage) "aaB" = ( /obj/effect/sentry_landmark/lz_2/bottom_left, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "aaC" = ( /obj/structure/sign/safety/storage{ @@ -145,27 +136,27 @@ pixel_y = -24 }, /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/southroad) "aaD" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "aaE" = ( /obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/shuttles/drop2) "aaF" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/southroad) "aaG" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/southroad) "aaH" = ( /obj/effect/sentry_landmark/lz_2/bottom_right, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "aaI" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ @@ -183,7 +174,7 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) "aaL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/shiva/east, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) @@ -202,34 +193,46 @@ /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) "aaP" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/platform/metal/stair_cut/shiva_right, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full"; + color = "#e1d9ce" }, -/obj/structure/platform/metal/shiva/north, /turf/open/floor/kutjevo/tan/multi_tiles/east, /area/sekhmet/int_glass/hosptial) "aaQ" = ( /obj/structure/platform/metal/shiva/east, +/obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "aaR" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/shiva/north, +/obj/item/prop/colony/canister{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/prop/colony/canister{ + pixel_x = -4; + pixel_y = -2; + dir = 8 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) "aaS" = ( /obj/structure/platform/metal/shiva/east, -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) "aaT" = ( /obj/effect/sentry_landmark/lz_2/top_left, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aaU" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/shiva, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) @@ -240,21 +243,18 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/water_filters) "aaW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/shiva/west, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "aaX" = ( -/obj/structure/platform/metal/shiva/north, -/obj/structure/stairs{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8 }, +/obj/structure/platform/metal/stair_cut/shiva_right, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) -"aaY" = ( -/obj/structure/platform_decoration/metal/shiva/east, -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_reg/southwest_complex) "aaZ" = ( /obj/structure/machinery/door/airlock/upp/engi/autoname{ dir = 1; @@ -311,29 +311,19 @@ /turf/open/floor/prison/darkyellowcorners2/north, /area/sekhmet/int_glass/hosptial) "abe" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - pixel_x = 8; - name = "colonial operations terminal"; - color = "#8B9490"; - layer = 6.01; - pixel_y = 1 - }, -/obj/structure/machinery/sensortower{ - pixel_x = -20; - layer = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/sekhmet/outside/central_road) +/obj/structure/shuttle/part/ert/front_left_upp, +/turf/open/floor/corsat, +/area/sekhmet/int_reg/ship1) "abf" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/darkyellow2/north, /area/sekhmet/int_glass/hosptial) "abg" = ( /obj/effect/sentry_landmark/lz_2/top_right, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "abh" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/item/tool/warning_cone{ pixel_x = 4; pixel_y = 9 @@ -341,19 +331,19 @@ /turf/open/floor/prison/darkyellow2/east, /area/sekhmet/int_glass/hosptial) "abi" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/static_comms/net_one, /turf/open/floor/corsat/marked, /area/sekhmet/int_glass/hosptial) "abj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/marked, /area/sekhmet/int_glass/hosptial) "abk" = ( /turf/closed/wall/upp_ship/reinforced, /area/sekhmet/int_glass/hosptial) "abl" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison, /area/sekhmet/int_glass/hosptial) "abm" = ( @@ -363,18 +353,16 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "abn" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/shiva/east, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) "abo" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - locked = 1 - }, +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "abp" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/shiva, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) @@ -397,7 +385,7 @@ /area/sekhmet/int_glass/south_complex) "abt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "abu" = ( /obj/structure/machinery/door/airlock/upp/generic/solid/autoname{ @@ -406,7 +394,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "abv" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/kutjevo_smooth/west, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) @@ -419,18 +407,21 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) "aby" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/kutjevo_smooth/east, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) "abz" = ( -/obj/structure/stairs, /obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/stairs/perspective{ + color = "#79573e"; + icon_state = "p_stair_sn_solo_cap" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) "abA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "abB" = ( /obj/structure/machinery/light{ @@ -446,7 +437,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "abD" = ( -/obj/structure/machinery/light/spot/blue{ +/obj/structure/machinery/light/small/blue{ dir = 1 }, /turf/open/floor/strata/fake_wood, @@ -455,35 +446,30 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 22; - pixel_x = -7; - can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" - }, /obj/item/prop/colony/canister{ pixel_x = 10; pixel_y = 11 }, /obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "abF" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "abG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "abH" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 4 + icon_state = "p_stair_full" }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "abI" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ @@ -510,9 +496,9 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) "abM" = ( -/obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ - req_access = null; - dir = 2 +/obj/structure/machinery/door/airlock/multi_tile/upp/sec/autoname{ + req_one_access = null; + dir = 1 }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) @@ -534,7 +520,7 @@ pixel_y = -5; pixel_x = 13 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "abQ" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/eng/autoname{ @@ -545,8 +531,8 @@ /area/sekhmet/int_glass/offices) "abR" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/gm/dirt, -/area/sekhmet/outside/airfield) +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "abS" = ( /obj/structure/machinery/door/airlock/upp/engi/autoname{ req_one_access = null @@ -559,7 +545,7 @@ dir = 8; pixel_x = -2 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "abU" = ( /obj/structure/machinery/door/airlock/upp/generic/solid/autoname{ @@ -587,7 +573,7 @@ /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) "abY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/shiva, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) @@ -597,21 +583,21 @@ /area/sekhmet/int_reg/complex_operation) "aca" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "acb" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -4; pixel_y = 5 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acc" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -7; pixel_y = 11 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acd" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ @@ -621,9 +607,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/complex_generic) "ace" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ - locked = 1 - }, +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/complex_generic) "acf" = ( @@ -631,19 +615,19 @@ /area/sekhmet/caves/west_cave) "acg" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = 6; pixel_y = 2; dir = 10 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "ach" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -11; pixel_y = 19 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "aci" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ @@ -659,10 +643,10 @@ /area/sekhmet/int_heavy/entry_zone) "ack" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 4 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acl" = ( /obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ @@ -679,16 +663,16 @@ pixel_x = 8; pixel_y = -5 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/caves/west_cave) "aco" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 5; pixel_x = -1; pixel_y = 1 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acp" = ( /obj/structure/largecrate/random, @@ -712,12 +696,12 @@ /area/sekhmet/caves/west_cave) "act" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = -13; pixel_y = -5; dir = 6 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acu" = ( /obj/structure/barricade/sandbags{ @@ -728,38 +712,38 @@ /area/sekhmet/caves/west_cave) "acv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = 5; pixel_y = -8 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acx" = ( /obj/item/tool/pickaxe, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ - pixel_x = 15; - pixel_y = 7 + pixel_x = 33; + pixel_y = 16 }, /obj/structure/flora/bush/ausbushes/var3/fullgrass{ - pixel_x = -8; - pixel_y = -7 + pixel_x = -2; + pixel_y = 2 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acz" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 1; - pixel_x = -8; - pixel_y = -8 + pixel_x = -1; + pixel_y = -12 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acA" = ( /obj/structure/desertdam/decals/road_stop{ @@ -773,77 +757,45 @@ pixel_x = -16; pixel_y = -5 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) -"acC" = ( -/obj/effect/mist/steam{ - pixel_x = 10; - pixel_y = -6 - }, -/turf/open/gm/coast/beachcorner2/south_west, -/area/sekhmet/outside/swamp) "acD" = ( /obj/structure/platform_decoration/metal/shiva/east, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) -"acE" = ( -/obj/effect/mist/steam{ - pixel_x = 11; - pixel_y = 2 - }, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/swamp) "acF" = ( /obj/structure/platform/metal/shiva/west, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 8; pixel_y = 8 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acH" = ( -/obj/effect/mist/steam{ - pixel_x = 10; - pixel_y = -6 - }, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/swamp) -"acI" = ( -/obj/effect/mist/steam{ - pixel_x = 11; - pixel_y = 2 - }, -/turf/open/gm/coast/beachcorner2/north_east, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "acJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "acK" = ( /obj/structure/platform/metal/shiva, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 2; + dir = 8; + pixel_x = 12 + }, /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/west_cave) "acL" = ( /obj/structure/platform_decoration/metal/shiva/north, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) -"acM" = ( -/obj/effect/mist/steam{ - pixel_x = -13; - pixel_y = 10 - }, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/swamp) -"acN" = ( -/obj/effect/mist/steam{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/swamp) "acO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 3; @@ -853,31 +805,29 @@ /area/sekhmet/caves/west_cave) "acP" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 1; pixel_x = -1; pixel_y = -3 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acQ" = ( /obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acR" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 4; pixel_x = -4; pixel_y = -5 }, /obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acS" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname{ - locked = 1 - }, +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/complex_generic) "acT" = ( @@ -887,45 +837,42 @@ /obj/structure/prop/ice_colony/surveying_device/measuring_device{ pixel_y = -4 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acV" = ( -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_reg/catwalk) -"acW" = ( -/obj/effect/mist/steam{ - pixel_x = -17; - pixel_y = 6 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/gm/coast/beachcorner2/south_west, -/area/sekhmet/outside/swamp) +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/small_power) "acX" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = 3; pixel_y = 36 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acY" = ( /obj/item/tool/shovel, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "acZ" = ( /obj/structure/machinery/landinglight/spoke{ pixel_y = -5; pixel_x = -13 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "ada" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = 5; pixel_y = 9 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adb" = ( /obj/structure/cargo_container/upp_small/container_20/left, @@ -933,7 +880,7 @@ /area/sekhmet/caves/west_cave) "adc" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = -16; pixel_y = 23 @@ -946,15 +893,8 @@ dir = 8; color = "#a98c7c" }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) -"ade" = ( -/obj/effect/mist/steam{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/gm/coast/north, -/area/sekhmet/outside/swamp) "adf" = ( /obj/structure/largecrate/random/barrel/medical, /turf/open/floor/plating/kutjevo, @@ -964,9 +904,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/west_cave) "adh" = ( -/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname{ - locked = 1 - }, +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_intel) "adi" = ( @@ -974,17 +912,17 @@ pixel_x = 3; pixel_y = 6 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adj" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adk" = ( /obj/structure/largecrate/hunter_games_ammo/good, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adl" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ @@ -994,15 +932,14 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_comms) "adm" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - color = "#77b300"; - pixel_x = 5; - pixel_y = 6 - }, /obj/effect/decal/warning_stripes{ icon_state = "cargo"; pixel_x = 1 }, +/obj/structure/cargo_container/horizontal/green/middle{ + pixel_x = 5; + pixel_y = 6 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "adn" = ( @@ -1010,7 +947,7 @@ /area/sekhmet/caves/west_cave) "ado" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = -16; pixel_y = 23 @@ -1019,7 +956,7 @@ /area/sekhmet/caves/west_cave) "adp" = ( /obj/structure/bed/chair, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ @@ -1027,19 +964,19 @@ pixel_y = 8 }, /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 1; pixel_x = -1; pixel_y = -3 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adr" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 10; pixel_y = 9 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "ads" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ @@ -1050,36 +987,18 @@ "adt" = ( /turf/open/floor/plating/kutjevo, /area/sekhmet/caves/west_cave) -"adu" = ( -/obj/effect/mist/steam{ - pixel_x = -15; - pixel_y = -14 - }, -/turf/open/gm/river/no_overlay, -/area/sekhmet/outside/swamp) "adv" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = -5; dir = 8; pixel_x = -31 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) -"adw" = ( -/obj/effect/mist/steam{ - pixel_x = -15; - pixel_y = -14 - }, -/turf/open/gm/coast/beachcorner2/north_west, -/area/sekhmet/outside/swamp) "adx" = ( -/obj/structure/platform/metal/kutjevo_smooth/east, -/obj/effect/mist/steam{ - pixel_x = -15; - pixel_y = -14 - }, -/turf/open/gm/coast/east, +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "ady" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ @@ -1090,48 +1009,47 @@ pixel_x = 4; pixel_y = -12 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adz" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 10; pixel_y = -1 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adA" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = -3; pixel_y = 5 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adB" = ( /obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic_solid/autoname{ - dir = 1; - locked = 1 + dir = 1 }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/complex_generic) "adC" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 8; pixel_y = -4 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adD" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 5 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform_decoration/metal/shiva/west, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) @@ -1147,12 +1065,12 @@ /area/sekhmet/int_reg/complex_comms) "adH" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 5; pixel_x = 8; pixel_y = -3 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adI" = ( /obj/structure/platform_decoration/metal/shiva, @@ -1160,16 +1078,14 @@ /area/sekhmet/outside/central_road) "adJ" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /obj/structure/platform/metal/shiva, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) "adK" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/platform/metal/shiva, /turf/open/floor/plating/kutjevo, @@ -1180,18 +1096,19 @@ /area/sekhmet/outside/central_road) "adM" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adN" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = 9; pixel_y = -13 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adO" = ( -/obj/structure/largecrate/random/barrel/brown, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/fake/handrail/kutjevo, /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/west_cave) "adP" = ( @@ -1199,55 +1116,50 @@ pixel_x = 4; pixel_y = 7 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adQ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/sentry_landmark/lz_1/bottom_right, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "adR" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/south_complex) "adS" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/item/reagent_container/food/drinks/coffeecup{ pixel_x = 11; pixel_y = 21 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "adT" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/structure/flora/bush/ausbushes/var3/fullgrass{ - pixel_x = 4; - pixel_y = -12 - }, -/turf/open/gm/dirt2, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "adU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/sand_white/layer0, -/area/sekhmet/caves/west_cave) +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/plate, +/area/sekhmet/int_reg/military_hangar) "adV" = ( /obj/effect/sentry_landmark/lz_1/top_right, /turf/open/floor/strata, @@ -1265,22 +1177,18 @@ /area/sekhmet/int_reg/military_hangar) "adZ" = ( /obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) -"aea" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/temple_outer) "aeb" = ( /obj/structure/largecrate/random/secure, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "aec" = ( /obj/structure/machinery/landinglight/spoke{ pixel_y = -5; pixel_x = 13 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "aed" = ( /obj/structure/machinery/door/airlock/upp/generic/autoname{ @@ -1313,21 +1221,28 @@ pixel_y = -5; pixel_x = -13 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) -"aei" = ( -/turf/closed/wall/upp_ship/reinforced/outer, -/area/sekhmet/int_heavy/low_level_gen) "aej" = ( -/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating/kutjevo, +/obj/structure/machinery/big_computers/computerbrown/computer3{ + name = "sensor computer"; + color = "#ffffb3"; + icon_state = "sensor_comp1_off"; + pixel_y = 2 + }, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 13; + pixel_y = 19 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship2) "aek" = ( /obj/structure/machinery/power/apc/power/north, /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/southroad) "ael" = ( +/obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/airfield) "aem" = ( @@ -1348,7 +1263,7 @@ /area/sekhmet/int_glass/complex_generic) "aeq" = ( /obj/structure/machinery/landinglight/spoke, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "aer" = ( /turf/closed/wall/upp_ship, @@ -1358,7 +1273,7 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) "aet" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) "aeu" = ( @@ -1371,12 +1286,11 @@ /turf/closed/wall/upp_ship/reinforced/outer, /area/sekhmet/int_reg/telecomm/lz2_northeast) "aex" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 }, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/telecomm/lz2_northeast) +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "aey" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1386,7 +1300,7 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) @@ -1399,40 +1313,49 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "aeA" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/heavy{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/airfield) "aeB" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/auto_turf/sand_white/layer1, +/obj/structure/flora/jungle/vines/light_2{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "aeC" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aeD" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirt, +/obj/structure/flora/jungle/vines/light_3{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "aeE" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = -5; dir = 8; pixel_x = -31 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "aeF" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 4; pixel_x = -4; pixel_y = -5 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "aeG" = ( /obj/effect/decal/warning_stripes{ @@ -1443,27 +1366,29 @@ /area/sekhmet/int_heavy/research) "aeH" = ( /obj/structure/flora/jungle/thickbush/large_jungle_bush{ - color = "#648c57"; + color = "#72963e"; icon_state = "bush3"; pixel_x = -15; pixel_y = -6; layer = 4.11 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeI" = ( /obj/structure/flora/jungle/thickbush/large_jungle_bush{ - color = "#648c57"; + color = "#72963e"; icon_state = "bush3"; pixel_x = -7; pixel_y = -6; layer = 4.11 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeJ" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_3{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeK" = ( /obj/structure/cargo_container/canc/left{ @@ -1473,27 +1398,23 @@ /area/sekhmet/int_reg/military_hangar) "aeL" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = -5; dir = 8; pixel_x = -31 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeM" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; - dir = 9; - pixel_x = -16; - pixel_y = 23 - }, -/turf/open/gm/dirt, -/area/sekhmet/outside/airfield) +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/garage) "aeN" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_3{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/airfield) "aeO" = ( /obj/effect/decal/warning_stripes{ @@ -1510,86 +1431,83 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "aeP" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_2{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeQ" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = 3; pixel_y = 36 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeR" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = 12; pixel_y = 19 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "aeS" = ( /obj/structure/flora/jungle/thickbush/large_jungle_bush{ - color = "#648c57"; + color = "#72963e"; icon_state = "bush2"; pixel_x = -17; pixel_y = -4 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeT" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = -3; pixel_y = 5 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeU" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/gm/dirt, -/area/sekhmet/outside/airfield) +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southeast_road) "aeV" = ( /obj/structure/flora/jungle/thickbush/large_jungle_bush{ - color = "#648c57"; + color = "#72963e"; icon_state = "bush3"; pixel_x = -17; pixel_y = -4; layer = 4.11 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "aeW" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - dir = 5 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/airfield) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) "aeX" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - dir = 5 - }, -/turf/open/gm/dirt, -/area/sekhmet/outside/airfield) +/turf/open/floor/corsat/arrow_north, +/area/sekhmet/int_heavy/research) "aeY" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - pixel_x = 9; - pixel_y = -13 +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/airfield) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/sekhmet/int_heavy/research) "aeZ" = ( /obj/structure/flora/jungle/thickbush/large_jungle_bush{ - color = "#648c57"; + color = "#72963e"; icon_state = "bush2"; pixel_x = -24; pixel_y = 8 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "afa" = ( /obj/structure/surface/table/almayer{ @@ -1600,66 +1518,68 @@ /area/sekhmet/int_reg/water_filters) "afb" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = -16; pixel_y = 23 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "afc" = ( -/obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/objective_landmark/close, -/turf/open/gm/river/desert/tyrargo/no_slowdown, +/turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/water_filters) "afd" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/airfield) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/plastic/alt, +/area/sekhmet/outside/east_jungle) "afe" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 8; pixel_y = -4 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "aff" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -4; pixel_y = 9 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "afg" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = 5; pixel_y = 9 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "afh" = ( -/obj/structure/tunnel, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_heavy/research) +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "afi" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/dirt, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "afj" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "afk" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_y = 6 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afl" = ( /obj/effect/landmark/objective_landmark/far, @@ -1667,32 +1587,33 @@ /area/sekhmet/int_glass/south_complex) "afm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ - pixel_y = 22 + pixel_y = 32; + pixel_x = -1 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afn" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d796a"; + color = "#a39e99"; dir = 9; pixel_x = -16; pixel_y = 23 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 4; pixel_y = 1 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afp" = ( /obj/structure/barricade/sandbags{ dir = 4; color = "#a98c7c" }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afq" = ( /obj/structure/largecrate/random/barrel/green, @@ -1710,101 +1631,107 @@ pixel_x = 4; pixel_y = -12 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "aft" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afu" = ( -/obj/structure/largecrate/random/barrel/red, +/obj/structure/largecrate/random/barrel/red{ + pixel_x = -4; + pixel_y = 1 + }, /obj/structure/barricade/sandbags{ dir = 4; color = "#a98c7c" }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afv" = ( -/obj/structure/cargo_container/upp_small/container_15/left, -/turf/open/gm/dirt2, +/obj/structure/cargo_container/kelland/alt/left{ + dir = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afw" = ( -/obj/structure/cargo_container/upp_small/container_15/right, -/turf/open/gm/dirt2, +/obj/structure/cargo_container/kelland/alt/right{ + dir = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afx" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -8; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "afy" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/central_road) "afz" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 7; - pixel_y = 20 +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 8; + pixel_y = -6 }, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "afA" = ( -/obj/structure/largecrate, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, +/obj/structure/largecrate/empty, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "afB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/upp_ship/reinforced/outer, -/area/sekhmet/outside/swamp) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "afC" = ( /obj/structure/platform/metal/kutjevo_smooth/north, -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, -/turf/open/gm/dirt, +/obj/structure/prop/fake/handrail/kutjevo, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "afD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/small_power) "afE" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/telecomm/lz1_southeast) "afF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 7; pixel_y = -8 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) "afH" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ - pixel_x = 15; - pixel_y = 7 + pixel_x = 12; + pixel_y = 14 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 4; pixel_y = -12 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "afJ" = ( /obj/structure/surface/table/almayer{ @@ -1817,23 +1744,30 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "afK" = ( -/obj/structure/tunnel, -/turf/open/gm/dirt2, -/area/sekhmet/outside/central_road) +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "afL" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "afM" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 4; pixel_x = -4; pixel_y = -5 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "afN" = ( /obj/effect/decal/warning_stripes{ @@ -1843,18 +1777,20 @@ /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "afO" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/east_jungle) +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) "afP" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "afQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) @@ -1863,7 +1799,7 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) "afS" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) @@ -1904,171 +1840,182 @@ /area/sekhmet/int_glass/complex_generic) "afW" = ( /obj/effect/landmark/objective_landmark/far, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "afX" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = 4; pixel_y = 7 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "afY" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -8; pixel_y = -1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "afZ" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -31; pixel_y = -5 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "aga" = ( /obj/structure/barricade/sandbags{ dir = 1; color = "#a98c7c" }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "agb" = ( /obj/structure/barricade/sandbags{ dir = 1; color = "#a98c7c" }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "agc" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ pixel_x = -7; pixel_y = -5 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "agd" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 3.01 }, -/obj/structure/surface/rack, +/obj/structure/surface/rack{ + color = "#98a3ab" + }, /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "age" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/largecrate/empty, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "agf" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) "agg" = ( -/obj/structure/surface/rack, +/obj/structure/surface/rack{ + color = "#98a3ab" + }, /obj/item/clothing/shoes/marine/upp/black/knife, /obj/item/clothing/mask/gas/upp_pfb, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "agh" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1; dir = 4 }, -/obj/structure/surface/rack, +/obj/structure/surface/rack{ + color = "#98a3ab" + }, /obj/item/clothing/shoes/marine/upp/black/knife, /obj/item/clothing/mask/gas/upp_pfb, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "agi" = ( -/obj/structure/tunnel, -/turf/open/gm/dirt, -/area/sekhmet/caves/temple) +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "agj" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 5; pixel_y = -1 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, /area/sekhmet/outside/east_jungle) "agk" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/southroad) "agl" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/east_jungle) "agm" = ( /obj/structure/blocker/invisible_wall, /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 4; pixel_y = 12; pixel_x = -10 }, -/turf/open/gm/river/no_slowdown, +/obj/structure/flora/wood/stick1{ + pixel_x = -17; + pixel_y = -24 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/east_jungle) "agn" = ( /obj/structure/blocker/invisible_wall, /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 8; - pixel_x = -26; - pixel_y = -14 + pixel_x = -28; + pixel_y = -12 }, /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; pixel_x = 7; pixel_y = -9 }, /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 4; pixel_y = 12; pixel_x = -10 }, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/east_jungle) "ago" = ( /obj/structure/blocker/invisible_wall, /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 4; pixel_y = -14 }, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, /area/sekhmet/outside/east_jungle) "agp" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/river/swamp, /area/sekhmet/outside/east_jungle) "agq" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - pixel_x = 7; - pixel_y = -9 + color = "#a39e99"; + pixel_x = 2; + pixel_y = -21 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/river/swamp, /area/sekhmet/outside/east_jungle) "agr" = ( /obj/effect/landmark/objective_landmark/medium, +/obj/structure/closet/firecloset/upp_full, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) "ags" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) @@ -2086,14 +2033,24 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "agu" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/swamp) "agv" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, /obj/effect/landmark/objective_landmark/close, +/obj/item/tool/screwdriver, +/obj/structure/sign/poster/pinup{ + pixel_x = 1; + pixel_y = 36 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/military_hangar) "agw" = ( @@ -2101,7 +2058,7 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "agx" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) @@ -2183,7 +2140,7 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "agF" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door_control{ pixel_x = -22; id = "rsrSTORE" @@ -2191,7 +2148,7 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "agG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/sleep_console{ dir = 1 }, @@ -2264,7 +2221,7 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "agQ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "Research - Virology Laboratory"; colony_camera_mapload = 0; @@ -2368,7 +2325,7 @@ /turf/open/floor/prison, /area/sekhmet/int_glass/hosptial) "aha" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/largecrate/random, /turf/open/floor/prison/darkyellow2/north, /area/sekhmet/int_glass/hosptial) @@ -2377,93 +2334,101 @@ pixel_x = 12; pixel_y = 11 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "ahc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 12; pixel_y = 11 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "ahd" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = 18; dir = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "ahe" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = 5; dir = 8; pixel_x = 1 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "ahf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt/desert2, +/turf/open/gm/dirt/swamp_dirt/variant_3, /area/sekhmet/outside/swamp) "ahg" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = 4; dir = 8; pixel_x = 23 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "ahh" = ( -/turf/open/gm/dirt/desert1, -/area/sekhmet/outside/swamp) +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "ahi" = ( -/turf/open/gm/dirt/desert2, +/turf/open/gm/dirt/swamp_dirt/variant_3, /area/sekhmet/outside/swamp) "ahj" = ( /obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "ahk" = ( /obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "ahl" = ( -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/swamp) "ahm" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 1; - pixel_y = 15 + pixel_x = 9; + pixel_y = 14 }, -/turf/open/gm/coast/south, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "ahn" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = 5; dir = 8; pixel_x = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "aho" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -7 + pixel_x = -29; + pixel_y = 10 }, -/turf/open/gm/coast/south, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "ahp" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = -10; - pixel_y = 2 + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 14; + pixel_y = 15 }, -/turf/open/gm/coast/beachcorner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/swamp) "ahq" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/strata, @@ -2474,29 +2439,33 @@ pixel_x = 1; pixel_y = 10 }, -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "ahs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname{ + dir = 2 }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/air_filters) "aht" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 5 + pixel_x = 11; + pixel_y = 3 }, -/turf/open/gm/coast/beachcorner/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, /area/sekhmet/outside/swamp) "ahu" = ( -/turf/open/gm/dirt/desert0, -/area/sekhmet/outside/swamp) +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_5/east, +/area/sekhmet/caves/temple) "ahv" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -10; - pixel_y = 2 + pixel_x = 1; + pixel_y = -3 }, -/turf/open/gm/coast/west, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "ahw" = ( /obj/structure/platform/metal/kutjevo_smooth/east, @@ -2504,24 +2473,31 @@ pixel_x = -7; pixel_y = 4 }, -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "ahx" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = 1; pixel_y = 10 }, -/turf/open/gm/coast/north, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) "ahy" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -10; - pixel_y = 9 + pixel_x = -21; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 7; + pixel_y = -17 }, -/turf/open/gm/coast/north, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) "ahz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/air_filters) "ahA" = ( @@ -2534,63 +2510,70 @@ }, /obj/structure/reagent_dispensers/tank/fuel, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/plating/kutjevo, /area/sekhmet/caves/temple) "ahB" = ( -/turf/open/gm/dirt/desert3, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, /area/sekhmet/outside/swamp) "ahC" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/air_filters) "ahD" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = -3; pixel_y = -4; dir = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/outside/swamp) "ahE" = ( -/obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/sekhmet/int_reg/telecomm/lz1_southeast) +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/closed/wall/strata_ice/swamp, +/area/sky) "ahF" = ( /obj/effect/landmark/static_comms/net_two, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/corsat/marked, /area/sekhmet/int_reg/telecomm/lz1_southeast) "ahG" = ( -/obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/sekhmet/int_reg/telecomm/lz1_southeast) +/obj/structure/blocker/invisible_wall, +/turf/open/slippery/hull/dir/west, +/area/sekhmet/int_reg/catwalk) "ahH" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/telecomm/lz1_southeast) "ahI" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/gm/dirt/swamp_dirt/variant_5, /area/sekhmet/outside/swamp) "ahJ" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth, -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/swamp) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/reagent_container/hypospray/autoinjector/emergency, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) "ahK" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "ahL" = ( -/turf/closed/wall/upp_ship, -/area/space) +/obj/structure/machinery/door/airlock/upp/generic/solid/autoname{ + needs_power = 0; + name = "\improper Bolted Airlock"; + emp_proof = 1; + explo_proof = 1; + unacidable = 1; + unslashable = 1; + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/small_power) "ahM" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/orange_edge/west, @@ -2602,32 +2585,44 @@ layer = 5 }, /obj/structure/blocker/invisible_wall, +/obj/effect/abstract/ripple/shadow, /turf/open/floor/strata/floor3, -/area/space) +/area/sekhmet/outside/swamp) "ahO" = ( /turf/closed/wall/upp_ship/reinforced/outer, /area/space) "ahP" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "ahQ" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "ahR" = ( /obj/item/device/flashlight/lamp/tripod/grey{ light_power = 0.3; light_range = 4 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "ahS" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "ahT" = ( -/turf/open/floor/plating/kutjevo, -/area/sekhmet/caves/temple) +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = 11; + pixel_y = -17 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "ahU" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -2644,24 +2639,24 @@ /area/sekhmet/int_heavy/entry_zone) "ahW" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 5; pixel_y = -1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "ahX" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = 2; dir = 8; pixel_x = 8 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "ahY" = ( /obj/structure/platform_decoration/metal/shiva/north, -/turf/open/gm/coast/beachcorner/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, /area/sekhmet/outside/swamp) "ahZ" = ( /obj/structure/closet{ @@ -2683,167 +2678,179 @@ /area/sekhmet/int_heavy/research) "aia" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -10; - pixel_y = 9 + pixel_x = 6; + pixel_y = 19 }, -/turf/open/gm/coast/beachcorner/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, /area/sekhmet/outside/swamp) "aib" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 5; pixel_y = -1 }, -/turf/open/gm/coast/beachcorner/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, /area/sekhmet/outside/swamp) "aic" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = -4; pixel_y = -5 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirt, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "aid" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 5; - pixel_y = 6 + pixel_x = 8; + pixel_y = 12 }, -/turf/open/gm/coast/beachcorner/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, /area/sekhmet/outside/swamp) "aie" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/beachcorner/south_west, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, /area/sekhmet/outside/swamp) "aif" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aig" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -10; - pixel_y = 9 + pixel_x = -4; + pixel_y = 15 }, -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "aih" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - dir = 5; - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/gm/dirt, -/area/sekhmet/outside/swamp) +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) "aii" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_y = 5; dir = 8; pixel_x = 1 }, -/turf/open/gm/coast/beachcorner/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, /area/sekhmet/outside/swamp) "aij" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = -10; pixel_y = 2 }, -/turf/open/gm/coast/beachcorner/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, /area/sekhmet/outside/swamp) "aik" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/caves/temple) "ail" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "aim" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/caves/temple) "ain" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aio" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "aip" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/caves/temple) "aiq" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "air" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/caves/temple) "ais" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "ait" = ( -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/caves/temple) "aiu" = ( -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiv" = ( -/obj/structure/platform_decoration/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiw" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aix" = ( /obj/structure/prop/ice_colony/surveying_device, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiy" = ( /obj/effect/decal/remains/xeno, /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) "aiz" = ( -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiA" = ( -/obj/structure/platform/stone/soro/east, -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/caves/temple) "aiB" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, /area/sekhmet/caves/temple) "aiC" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, /area/sekhmet/caves/temple) "aiD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/north, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) "aiE" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aiF" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -2852,13 +2859,13 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiG" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiH" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -2868,24 +2875,30 @@ /area/sekhmet/caves/temple) "aiJ" = ( /obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aiK" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aiL" = ( /obj/structure/largecrate/random/secure, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "aiM" = ( -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiN" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiO" = ( /obj/effect/decal/warning_stripes{ @@ -2898,23 +2911,27 @@ /area/sekhmet/caves/temple) "aiP" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/gm/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, +/obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/plating/kutjevo, /area/sekhmet/caves/temple) "aiR" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/caves/temple) "aiS" = ( /obj/effect/decal/warning_stripes{ @@ -2939,58 +2956,68 @@ /area/sekhmet/caves/temple) "aiU" = ( /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/caves/temple) "aiV" = ( /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) "aiW" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/caves/temple) "aiX" = ( -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) "aiY" = ( -/obj/structure/platform_decoration/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aiZ" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "aja" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "ajr" = ( /obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) -"ajs" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_reg/water_filters) "ajt" = ( /obj/structure/fence/slim/upp/door, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "aju" = ( /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/upp_ship/reinforced/outer, /area/sekhmet/int_reg/telecomm/lz2_northeast) "ajv" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) "ajw" = ( /obj/structure/fence/slim/upp/door, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "ajx" = ( /obj/structure/machinery/vending/coffee, @@ -3016,145 +3043,145 @@ /obj/item/storage/box/evidence{ pixel_x = 10 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "ajz" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = -3; pixel_y = -4; dir = 4 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajA" = ( /obj/structure/reagent_dispensers/tank/fuel, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) -"ajB" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) "ajC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 7; pixel_y = -8 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajD" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = 1; pixel_y = 10 }, -/turf/open/gm/coast/south, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "ajE" = ( /obj/structure/cargo_container/hd/right, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "ajF" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; pixel_x = -4; pixel_y = -5 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajH" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 1; - pixel_y = 10 + pixel_x = 7; + pixel_y = 30 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/wood/stick2{ + pixel_x = -15; + pixel_y = -6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajI" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/temple_outer) -"ajJ" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - dir = 5; - pixel_y = -1 +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = 26; + pixel_y = 3 }, -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -4; + pixel_y = -13 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -3; + pixel_y = 33 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ajJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "ajK" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - pixel_y = 2; + color = "#a39e99"; + pixel_y = -12; dir = 8; - pixel_x = 8 + pixel_x = 20 }, -/turf/open/gm/coast/beachcorner/south_west, -/area/sekhmet/outside/temple_outer) +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "ajL" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = -7; pixel_y = 4 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass{ pixel_x = 10; pixel_y = 9 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajN" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = -10; pixel_y = 9 }, -/turf/open/gm/coast/north, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "ajO" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 1; - pixel_y = 15 - }, -/turf/open/gm/coast/north, -/area/sekhmet/outside/temple_outer) -"ajP" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/temple_outer) -"ajQ" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - pixel_y = 5; - dir = 8; - pixel_x = 1 +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -2; + pixel_y = -26 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "ajR" = ( /obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -7 + pixel_x = -8; + pixel_y = -13 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ajS" = ( /obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; + color = "#a39e99"; dir = 1; pixel_x = -8; pixel_y = -8 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) -"ajT" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - pixel_y = 2; - dir = 8; - pixel_x = 8 +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"akb" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -17; + pixel_y = 14 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -17; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "akw" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -3172,9 +3199,17 @@ /area/sekhmet/int_heavy/research) "akA" = ( /obj/effect/decal/siding/wood_siding, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) +"akH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "akR" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -3182,7 +3217,6 @@ /obj/item/folded_tent/big{ pixel_x = -3; pixel_y = -11; - color = "#666600"; name = "folded UPP Big Tent"; desc = "A standard UPP Tent. This one is just a bigger, general purpose version. Unfold in a suitable location for maximum FOB vibes. Mess Tech not included. ENTRANCE TO THE SOUTH." }, @@ -3191,7 +3225,6 @@ id = "wrehouse1" }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/multi_tiles/southwest, @@ -3209,25 +3242,42 @@ /area/sekhmet/int_reg/engineering) "alp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) "alq" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"alS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/small_power) "alT" = ( -/obj/structure/platform_decoration/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "ama" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"amc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -23; + pixel_y = 17 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "ame" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "aml" = ( @@ -3239,14 +3289,23 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) +"amo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 17; + pixel_y = 12 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southeast_road) "amt" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "amu" = ( /obj/structure/largecrate/random/barrel/true_random, @@ -3265,32 +3324,72 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"amw" = ( +/obj/structure/flora/wood/stick1{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"amF" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/outside/swamp) "ano" = ( -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"anu" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "anX" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"aob" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "aof" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sky) "aon" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) +"aoo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -5; + pixel_y = 6; + dir = 6 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "aop" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/plating_catwalk/strata, @@ -3298,28 +3397,35 @@ "aoO" = ( /turf/closed/wall/upp_ship, /area/sekhmet/int_glass/complex_generic) -"apm" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/effect/mist/steam{ - pixel_x = -15; - pixel_y = -14 +"apk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -8; + pixel_y = -4 }, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "apw" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/complex_comms) +"apU" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "aqa" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) -"aqx" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/airfield) "aqE" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -3327,6 +3433,43 @@ }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) +"aqK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 24 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"ard" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8; + pixel_x = 5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"arx" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 15 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"arI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "arN" = ( /turf/closed/shuttle/ert{ icon_state = "upp5" @@ -3334,8 +3477,7 @@ /area/sekhmet/int_reg/ship1) "arR" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) @@ -3345,16 +3487,41 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"asF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 18 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "asL" = ( -/obj/structure/largecrate, -/turf/open/floor/strata, -/area/sekhmet/int_reg/military_hangar) +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/airfield) "asT" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"asV" = ( +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced/tinted{ + layer = 4.01 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = 1; + pixel_y = 34 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/complex_generic) "ate" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -3378,9 +3545,27 @@ /obj/structure/largecrate/goat, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"atp" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"att" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"atY" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/area/sekhmet/int_reg/catwalk) "auc" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4 }, /obj/structure/barricade/handrail/wire{ dir = 1; @@ -3391,7 +3576,8 @@ light_power = 0.5; dir = 1 }, -/turf/open/floor/strata/fake_wood, +/obj/structure/platform/metal/stair_cut/shiva_left, +/turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "aue" = ( /obj/structure/surface/table/almayer{ @@ -3405,11 +3591,27 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) -"aul" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +"auj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 15; + pixel_y = -17 }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"aul" = ( +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/caves/west_cave) +"ava" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -14; + pixel_x = -8 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) "avp" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -3459,13 +3661,43 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"awV" = ( +/obj/structure/flora/wood/stick3{ + dir = 4; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "awX" = ( /turf/closed/shuttle/ert{ icon_state = "upp25" }, /area/sekhmet/int_reg/ship1) +"axf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -14; + pixel_y = 23 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -12; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -12; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 5; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "axl" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -3480,30 +3712,72 @@ "axI" = ( /turf/closed/shuttle/elevator, /area/sekhmet/int_heavy/research) +"axQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = 12; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "ayp" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"ayW" = ( +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 1; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3/east, +/area/space) "aza" = ( -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "azu" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"azw" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "azx" = ( /turf/closed/shuttle/elevator, /area/sekhmet/int_reg/military_hangar) +"azH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -14 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "azK" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/shiva/east, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) "azR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) "aAk" = ( @@ -3515,15 +3789,22 @@ /obj/structure/desertdam/decals/road_stop, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) +"aAu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "aAv" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 8 + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/gm/dirt, -/area/sekhmet/outside/swamp) +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "aAw" = ( /obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "aAD" = ( @@ -3531,16 +3812,19 @@ icon_state = "W"; layer = 2.5 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "aAJ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 9 +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/int_heavy/research) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "aAN" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -3566,6 +3850,16 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"aAQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 7; + pixel_y = -8 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_y = 18 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "aAV" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/orange_cover, @@ -3574,26 +3868,26 @@ /obj/structure/machinery/landinglight/delaythree{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "aBg" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "aBk" = ( -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) "aBm" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "aBs" = ( /obj/item/tool/warning_cone{ @@ -3622,6 +3916,11 @@ }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_reg/complex_intel) +"aBJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "aBK" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -3632,14 +3931,54 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) -"aCl" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/north, -/area/sekhmet/outside/airfield) +"aCi" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 13; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"aCn" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 20; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aCz" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aCB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/structure/flora/wood/stick1{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"aCP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "aCZ" = ( /turf/open/floor/kutjevo/grey, /area/sekhmet/shuttles/drop3) @@ -3648,7 +3987,7 @@ layer = 3.1; dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "aDp" = ( /obj/structure/sign/nosmoking_2{ @@ -3661,15 +4000,25 @@ /area/sekhmet/int_glass/hosptial) "aDC" = ( /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, /area/sekhmet/outside/temple_outer) +"aDF" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -21; + pixel_y = 13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aDG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/southwest_complex) "aDJ" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "aDK" = ( /obj/effect/decal/warning_stripes{ @@ -3687,6 +4036,15 @@ }, /turf/open/floor/corsat/plate, /area/sekhmet/int_heavy/research) +"aDW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "aEe" = ( /obj/structure/bed/chair{ dir = 4 @@ -3745,15 +4103,60 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"aER" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) +"aFb" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aFg" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/closed/wall/rock{ + color = "#797571" + }, +/area/sekhmet/outside/swamp) "aFl" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southeast_road) +"aFE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"aGe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "aGr" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated, /area/sekhmet/caves/south_cave) "aGG" = ( @@ -3765,12 +4168,20 @@ "aHj" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - pixel_y = -7 + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/gm/coast/east, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"aHC" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aHH" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) "aHM" = ( @@ -3779,19 +4190,31 @@ /area/sekhmet/int_glass/hosptial) "aHY" = ( /obj/structure/platform/metal/strata/north, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) "aIc" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "aIv" = ( /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/comms_lower) +"aIC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -5; + dir = 8; + pixel_x = 2 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "aIL" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/kutjevo/multi_tiles/southeast, @@ -3801,13 +4224,38 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/floodlight/landing/floor, /obj/structure/machinery/landinglight/delayone{ dir = 8 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"aJk" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aJJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) +"aJK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = -12; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 9; + pixel_y = -7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "aJP" = ( /obj/structure/machinery/camera{ c_tag = "Warehouse - Lobby"; @@ -3821,18 +4269,65 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"aJZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"aKk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "aKO" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/sekhmet/int_reg/ship2) +"aLh" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aLI" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + pixel_y = 13; + layer = 3.02 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"aLS" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aLY" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "aMv" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/int_heavy/research) +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -18; + pixel_y = -2; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "aMK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "UPPmilArmory"; @@ -3843,17 +4338,30 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/military_hangar) +"aNr" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "aNB" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/outside/southeast_road) +"aNL" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) "aNQ" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "aNR" = ( /obj/effect/decal/warning_stripes{ @@ -3861,12 +4369,25 @@ dir = 1; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"aOp" = ( +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"aOt" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "aOu" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "aOT" = ( /obj/structure/barricade/handrail/wire, @@ -3886,7 +4407,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = -8 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/ship2) "aPj" = ( /obj/structure/blocker/invisible_wall, @@ -3937,10 +4458,47 @@ /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"aPW" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"aQb" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) +"aQg" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "aQt" = ( /obj/structure/barricade/wooden, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"aQH" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/barricade/handrail/wire{ + layer = 5.11; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "aRl" = ( /obj/structure/machinery/door_control/brbutton{ id = "rsrHangarRepair" @@ -3951,25 +4509,59 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) "aRz" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) +"aSc" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/ship1) +"aSd" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aTq" = ( /turf/closed/wall/upp_ship/reinforced/outer, -/area/sekhmet/int_reg/catwalk) +/area/sekhmet/int_reg/small_power) +"aTI" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 18; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aTS" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 15; + pixel_y = -20 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"aTX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_reg/military_hangar) "aUO" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 6 +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/southeast_road) +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "aUZ" = ( /obj/structure/machinery/landinglight/delaytwo{ dir = 8 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"aVk" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aVs" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ req_access = null; @@ -3977,8 +4569,16 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"aVu" = ( +/obj/structure/flora/wood/stick3{ + dir = 1; + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "aVx" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/warehouse) "aVP" = ( @@ -3990,7 +4590,7 @@ pixel_x = 5; layer = 2.98 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "aWj" = ( @@ -4012,6 +4612,32 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/engineering) +"aWk" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -8; + pixel_y = 22 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"aWw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"aWK" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 14; + pixel_y = 11 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "aWR" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4024,14 +4650,14 @@ pixel_x = -8; pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "aWW" = ( /obj/structure/barricade/handrail/medical{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "aXq" = ( @@ -4039,7 +4665,7 @@ /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) "aXx" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/hosptial) "aXH" = ( @@ -4048,17 +4674,70 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/outside/central_road) +"aXL" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 12; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 2; + pixel_y = -13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"aXZ" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/outside/swamp) "aYf" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"aYm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -20; + pixel_y = 20 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 15; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aYy" = ( -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_solo_cap" + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"aZg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 16; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "aZh" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4070,32 +4749,58 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) +"aZF" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/stairs/perspective{ + color = "#838a88"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) "aZO" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/temple_outer) "bay" = ( /obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"baQ" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -14; + pixel_y = -13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bbl" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -26; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "bbr" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/item/prop/tableflag/upp{ - pixel_y = 21; - pixel_x = 11; + pixel_y = 24; + pixel_x = 10; anchored = 1 }, /turf/open/floor/strata/multi_tiles/west, @@ -4105,13 +4810,27 @@ color = "#8B9490" }, /obj/item/packageWrap, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "bce" = ( /obj/structure/reagent_dispensers/tank/fuel, /turf/open/floor/strata/orange_cover, /area/sekhmet/int_reg/comms_lower) +"bcl" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bcm" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "bcS" = ( /obj/structure/window/reinforced{ dir = 1 @@ -4135,14 +4854,41 @@ /turf/open/floor/almayer/tcomms, /area/sekhmet/int_reg/complex_comms) "bcZ" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "bda" = ( -/obj/structure/platform/stone/soro/east, -/obj/structure/platform/stone/soro, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"beh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"ben" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"beq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_heavy/research) "beB" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4158,15 +4904,56 @@ /obj/effect/decal/strata_decals/grime/grime3{ dir = 1 }, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"bfc" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) +"bfl" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) "bfq" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/hosptial) +"bfM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"bfR" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 16; + pixel_y = 21 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"bfV" = ( +/obj/structure/fence/slim/upp/door, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) +"bfY" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "bgl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4179,11 +4966,24 @@ /area/sekhmet/int_reg/air_filters) "bhh" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - unacidable = 1; - name = "Elevator Lock" + name = "Elevator Lockdown" }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/comms_lower) +"bhD" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) +"bhI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "bhU" = ( /obj/structure/cargo_container/horizontal/blue/middle{ pixel_x = 5; @@ -4196,11 +4996,11 @@ pixel_x = 3; pixel_y = 14 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "bhY" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "bhZ" = ( /obj/structure/surface/rack{ @@ -4209,6 +5009,83 @@ }, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"bid" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -23; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 16; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bii" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -6; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 13; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bij" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"biL" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -26; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 14; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -7; + pixel_y = 21 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bjc" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"bjo" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "bjr" = ( /obj/structure/terminal{ dir = 8 @@ -4217,21 +5094,63 @@ pixel_x = -11; pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) "bju" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) "bjz" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/garage) +"bjC" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"bjL" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bjW" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_x = 9; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -14; + pixel_y = 2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"bkb" = ( +/obj/structure/machinery/door/airlock/upp/generic/solid/autoname{ + needs_power = 0; + name = "\improper Bolted Airlock"; + emp_proof = 1; + explo_proof = 1; + unacidable = 1; + unslashable = 1; + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/outside/swamp) +"bko" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 3; + pixel_y = -12 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/east_jungle) "bkr" = ( /obj/structure/machinery/disposal, /turf/open/floor/strata/floor2, @@ -4241,6 +5160,29 @@ dir = 1 }, /area/sekhmet/int_heavy/research) +"bkE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_reg/water_filters) +"bkH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -13; + dir = 8; + pixel_x = -17 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"bkM" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "blc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/imidazoline{ @@ -4259,6 +5201,14 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) +"blm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "blv" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4271,12 +5221,29 @@ pixel_x = -6; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) +"blJ" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/marked, +/area/sekhmet/outside/southeast_road) +"blW" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "blZ" = ( /turf/open/floor/corsat, /area/sekhmet/int_reg/engineering) +"bmd" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/offices) "bmp" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4288,17 +5255,85 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"bmN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bmT" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -12; + pixel_y = -10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bmV" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bni" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"bnS" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"bnX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 12; + pixel_y = -17 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "bou" = ( -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_full" + }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"boD" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "boE" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"bpp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 1; + pixel_y = 12 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "bpy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4313,16 +5348,30 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/red1, /area/sekhmet/int_reg/complex_operation) +"bpG" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "bpU" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 7; + pixel_y = 2 + }, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - pixel_y = -7 + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bqD" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4332,25 +5381,36 @@ pixel_y = 11 }, /obj/item/tool/weldingtool/simple, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "bqJ" = ( /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) -"brx" = ( -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty"; - layer = 5 +"bru" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/strata/floor3, -/area/sekhmet/outside/swamp) +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"brx" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/sky) "brD" = ( /obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) +"brH" = ( +/obj/item/stool, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "bsn" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; @@ -4358,35 +5418,61 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/outside/central_road) +"bsq" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_heavy/research) "bsA" = ( -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/east_jungle) "bsP" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"bsS" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "btA" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/item/prop/tableflag/upp{ pixel_y = 21; pixel_x = 11; anchored = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"btM" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "btR" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -4397,11 +5483,11 @@ /area/sekhmet/int_glass/complex_generic) "btV" = ( /obj/structure/largecrate/random/barrel/true_random, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) -"btX" = ( -/turf/open/gm/coast/south, -/area/sekhmet/outside/airfield) "bua" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, @@ -4442,20 +5528,61 @@ /obj/structure/bed/sofa/south/grey/left{ pixel_y = 7 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"bvH" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -31; + pixel_y = 40 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bvL" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "bvW" = ( /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/gm/coast/beachcorner/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"bwc" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 12; + pixel_y = 22 + }, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "bwh" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) +"bwj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -4; + pixel_y = -17 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) +"bwm" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "bws" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4468,35 +5595,90 @@ pixel_x = -10; pixel_y = 5 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) "bwI" = ( -/obj/structure/machinery/power/power_generator/reactor/colony, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/area/sekhmet/int_reg/small_power) +"bxg" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -16; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "bxi" = ( /turf/closed/shuttle/elevator{ dir = 8 }, /area/sekhmet/int_heavy/research) +"bxs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"bxD" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bxE" = ( /obj/structure/machinery/landinglight/delayone{ dir = 4 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) -"bye" = ( -/obj/structure/sign/safety/suit_storage{ - pixel_x = 30; - pixel_y = -12 +"bxR" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) +"bxY" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"bye" = ( /obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) +"byl" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) +"byr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 5; + dir = 8; + pixel_x = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"byM" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -1; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "byO" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -4522,33 +5704,92 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/hosptial) +"bza" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 14; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bzv" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/yard) +"bzy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "bzC" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" + }, +/area/sekhmet/outside/swamp) +"bzP" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 19 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bzX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = -4 }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"bAd" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) +"bAh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/catwalk) "bAK" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 }, /turf/open/floor/filtrationside/north, /area/sekhmet/int_reg/air_filters) +"bAL" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick1{ + pixel_x = 11; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bBc" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "bBn" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"bBT" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bBX" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -4563,10 +5804,44 @@ "bDx" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/sekhmet/outside/central_road) +"bDN" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"bDU" = ( +/obj/structure/prop/wooden_cross{ + pixel_y = 11; + icon_state = "cross2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"bDW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 13; + pixel_y = -15 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"bEf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 5; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 13; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "bEm" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison, /area/sekhmet/int_glass/hosptial) @@ -4580,6 +5855,7 @@ pixel_x = 2 }, /obj/item/weapon/gun/pistol/highpower, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "bEV" = ( @@ -4588,14 +5864,33 @@ /area/sekhmet/int_reg/warehouse) "bFp" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "bFR" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/shuttles/drop2) +"bFU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8; + pixel_x = -2 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) +"bGw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "bGy" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "bGA" = ( /obj/effect/decal/warning_stripes{ @@ -4615,9 +5910,16 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/water_filters) "bGQ" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/upp_ship, /area/sekhmet/caves/south_cave) +"bGZ" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bHe" = ( /obj/structure/largecrate/random/barrel/true_random, /obj/effect/decal/warning_stripes{ @@ -4628,8 +5930,30 @@ /area/sekhmet/int_reg/warehouse) "bHE" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) +"bHH" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_heavy/research) +"bHK" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"bHZ" = ( +/obj/effect/decal/cleanable/blood/oil{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/garage) "bIr" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -4662,18 +5986,12 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "bIF" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "bIM" = ( /obj/structure/bed/chair/comfy/orange, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "bIO" = ( /obj/structure/machinery/light/small{ @@ -4685,12 +6003,40 @@ /area/sekhmet/int_reg/military_hangar) "bJh" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"bJm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 14; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "bJt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) +"bJC" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_x = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bKe" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"bKA" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = 23 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "bKF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -4705,6 +6051,31 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"bKG" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) +"bLP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -21; + pixel_y = -5; + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "bLQ" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/south_complex) @@ -4715,9 +6086,15 @@ /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"bMh" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bMB" = ( /obj/structure/platform/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "bMJ" = ( /obj/structure/pipes/vents/pump{ @@ -4726,17 +6103,46 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/offices) +"bMR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bNj" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1, +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bNo" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) +"bNp" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bNq" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -4747,13 +6153,13 @@ "bNM" = ( /obj/structure/platform/metal/shiva/east, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "bNS" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/caves/temple) "bOd" = ( /obj/structure/surface/table/almayer{ @@ -4773,12 +6179,32 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) +"bOw" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 15; + pixel_y = 12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bOI" = ( /obj/effect/decal/remains/human, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) +"bOX" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"bPa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southeast_road) "bPj" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata/floor3, @@ -4786,26 +6212,19 @@ "bPr" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device, /obj/structure/platform/metal/shiva/west, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "bPu" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/platform/metal/shiva/north, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/central_road) "bPL" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "bPS" = ( /obj/structure/surface/table/reinforced/prison, @@ -4815,10 +6234,26 @@ }, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) +"bPU" = ( +/obj/structure/closet, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_glass/south_complex) +"bQd" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -2; + pixel_y = -12 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"bQB" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "bQE" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer1{ + icon_state = "dark_computer_radar_off" }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) @@ -4826,26 +6261,34 @@ /obj/structure/prop/ice_colony/surveying_device{ dir = 8 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_5/east, /area/sekhmet/caves/temple) "bQJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "bQU" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) -"bRy" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +"bRh" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 5; + pixel_y = -15 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"bRm" = ( +/obj/structure/platform_decoration/metal/shiva/west, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 }, +/turf/open/floor/almayer/silverfull, +/area/sekhmet/int_glass/hosptial) +"bRy" = ( +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/central_road) "bRC" = ( /obj/structure/surface/table/almayer{ @@ -4860,9 +6303,20 @@ }, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"bRE" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/clipboard, +/obj/item/tool/pen/multicolor/fountain{ + pixel_x = -17; + pixel_y = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/south_complex) "bRJ" = ( /obj/structure/fence/slim/upp, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz1_southeast) "bSa" = ( /obj/effect/decal/warning_stripes{ @@ -4871,6 +6325,14 @@ /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) +"bSc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -20; + pixel_y = -12 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "bSJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4881,7 +6343,7 @@ dir = 8; pixel_x = -2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/yard) "bSW" = ( @@ -4892,27 +6354,90 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"bSY" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 16 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -3; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -1; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 9; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bSZ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 21; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "bTc" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"bTi" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 9; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 10; + pixel_y = 8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"bTC" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -5; + pixel_y = -14 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "bTW" = ( /obj/structure/surface/table/holotable{ color = "#424a50" }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/item/clothing/mask/gas/upp_pfb, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "bUq" = ( -/turf/open/floor/kutjevo/grey, -/area/sekhmet/int_reg/ship2) +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -19; + pixel_y = 23 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "bVs" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) "bVH" = ( /turf/open/shuttle/dropship/light_grey_bottom_right, /area/sekhmet/int_reg/ship1) +"bVR" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "bVZ" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -4929,22 +6454,50 @@ pixel_x = 5; pixel_y = -3 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) +"bWd" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/caves/temple) "bWr" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"bWG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/sekhmet/int_reg/military_hangar) "bWL" = ( /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) "bWM" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"bXf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"bXp" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -4; + pixel_y = 16 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "bXs" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -4967,9 +6520,71 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/hosptial) +"bXX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"bYv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -8 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"bYH" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"bYJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"bZn" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + name = "Emergency Lockdown"; + needs_power = 0; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_heavy/research) "bZt" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southeast_road) +"bZD" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + pixel_y = 13; + layer = 3.02 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"bZQ" = ( +/obj/item/prop/colony/canister{ + pixel_x = 7; + pixel_y = 18 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/garage) "bZV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4979,8 +6594,7 @@ pixel_y = 4 }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) @@ -5003,11 +6617,29 @@ "cau" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"caG" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) +"cbc" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "cbg" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/sekhmet/int_reg/ship2) +"cbl" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/water_filters) "cbR" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -5028,6 +6660,9 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"ccl" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/east, +/area/sekhmet/outside/airfield) "ccA" = ( /turf/open/floor/plating/warnplate/southwest, /area/sekhmet/shuttles/drop3) @@ -5040,7 +6675,7 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) "cde" = ( @@ -5051,6 +6686,28 @@ }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"cdm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = 16; + pixel_x = -2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"cef" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) +"ceh" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cem" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -5081,11 +6738,18 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"cfh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 2; + dir = 8; + pixel_x = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "cfy" = ( /obj/structure/largecrate/supply/supplies/flares, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "cgo" = ( @@ -5115,7 +6779,7 @@ /area/sekhmet/int_reg/engineering) "chE" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "chO" = ( /obj/structure/machinery/power/apc/power/west, @@ -5129,42 +6793,66 @@ icon_state = "N"; pixel_y = 2 }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) +"cip" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cit" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sky) +"ciy" = ( +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) "cjq" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = -7 + dir = 6; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/temple_outer) +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "cjt" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/complex_operation) "cjJ" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) +"cjM" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -21; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "ckC" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, -/turf/closed/shuttle{ - dir = 1; - icon_state = "pwall" +/turf/closed/wall/rock{ + color = "#797571" }, -/area/sky) +/area/space) "ckN" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "clb" = ( /obj/structure/largecrate/supply/supplies/sandbags, @@ -5189,92 +6877,211 @@ pixel_y = 18; pixel_x = 14 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "clZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) "cmk" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"cmB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -3; + dir = 8; + pixel_x = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"cmF" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"cmK" = ( +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "cmX" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"cnq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "cnr" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - unacidable = 1; - name = "Elevator Lock" + name = "Elevator Lockdown" }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/military_hangar) "cnx" = ( /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/west_cave) +"cnJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "cnK" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"cou" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 18; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "coB" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/west_cave) "coD" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/complex_generic) "cpl" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, -/turf/open/floor/prison/kitchen, +/turf/open/floor/hybrisa/tile/tilewhite, /area/sekhmet/int_glass/south_complex) -"cqG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"cpp" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"cpr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "smallgarage"; + name = "Garage Shutters"; + color = "#8B9490"; + dir = 2; + pixel_y = -2 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/sekhmet/int_heavy/research) -"cqP" = ( -/obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ - req_access = null +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/southwest_complex) +"cpE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cpJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -1; + pixel_y = -14 }, -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_reg/military_hangar) -"cqZ" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp_rightengine" +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 8; + pixel_y = -11 }, -/area/sekhmet/int_reg/ship2) -"crC" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"cpR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -9; + pixel_y = 17 }, -/obj/item/storage/box/lights/mixed{ - pixel_x = -6 +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"cqh" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_x = 5 }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 6; +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cqj" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -7; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"cqo" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -15; + pixel_y = -23 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 23; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cqA" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"cqG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_heavy/research) +"cqP" = ( +/obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ + req_access = null + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/military_hangar) +"cqZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_rightengine" + }, +/area/sekhmet/int_reg/ship2) +"crC" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = -6 + }, +/obj/item/storage/box/lights/tubes{ + pixel_x = 6; pixel_y = -2 }, /obj/item/storage/box/lights/tubes{ @@ -5282,24 +7089,61 @@ pixel_y = 9 }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/corsat, /area/sekhmet/int_reg/engineering) "crL" = ( /turf/open/slippery/hull/dir/northeast, /area/sky) +"crU" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -14; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"csb" = ( +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = -6; + pixel_y = 23 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) +"csc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"csq" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"csE" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "ctd" = ( /obj/structure/reagent_dispensers/tank/fuel/gas, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/yard) "ctg" = ( /obj/structure/platform/metal/strata/east, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "cti" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) "ctH" = ( @@ -5318,7 +7162,9 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) "cub" = ( @@ -5330,11 +7176,14 @@ /area/sekhmet/outside/east_jungle) "cuh" = ( /obj/structure/noticeboard{ - pixel_x = 16; + pixel_x = 21; pixel_y = 31 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration/metal/shiva/east, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_x = -8; + pixel_y = 41 + }, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) "cup" = ( @@ -5345,37 +7194,50 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "cuq" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) -"cuY" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +"cuF" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 6; + pixel_x = 17 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -12; + pixel_y = 14; + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"cuY" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "cvv" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) "cvw" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = -3 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/southeast_road) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "cvP" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ +/obj/structure/cargo_container/horizontal/red/bottom{ pixel_x = 5; pixel_y = 6; layer = 2.98 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "cvT" = ( /obj/structure/surface/table/almayer{ @@ -5392,11 +7254,18 @@ /area/sekhmet/int_reg/warehouse) "cwx" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"cwP" = ( +/obj/item/tool/warning_cone{ + pixel_x = 7; + pixel_y = 21 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "cwT" = ( /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "cxi" = ( /obj/structure/surface/table/almayer{ @@ -5405,14 +7274,41 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) "cxM" = ( -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_full" + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) +"cxQ" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"cxX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"cyg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "cyh" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/swamp) "cyJ" = ( /obj/structure/surface/table/almayer{ @@ -5438,14 +7334,29 @@ /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) "cyV" = ( -/obj/structure/stairs{ - dir = 1 - }, /obj/structure/barricade/handrail/strata{ dir = 4 }, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_solo_cap" + }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/sekhmet/int_reg/ship1) +"czw" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/central_road) +"czE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "czP" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -5454,15 +7365,30 @@ pixel_x = 1; pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"czQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"cAj" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cAp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) "cAB" = ( /obj/structure/machinery/vending/cigarette, @@ -5473,6 +7399,15 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"cAC" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -13; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cBa" = ( /obj/effect/decal/siding{ icon_state = "siding8" @@ -5481,13 +7416,22 @@ color = "#6b675e"; layer = 2.79 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_reg/complex_intel) +"cBe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 11; + pixel_y = 15 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "cBf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) @@ -5499,37 +7443,71 @@ /obj/item/storage/belt{ pixel_y = 3 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) "cBH" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "cCd" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - pixel_y = -7 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -7 + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/gm/coast/beachcorner/north_west, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "cCn" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"cCu" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cCF" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) "cCI" = ( -/turf/open/gm/coast/beachcorner2/south_west, +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 19; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/east_jungle) +"cCV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/ad{ + pixel_y = 33 + }, +/obj/structure/sign/poster/ad{ + pixel_y = 33 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/complex_generic) "cDW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5549,8 +7527,16 @@ }, /obj/item/clothing/head/helmet/marine/veteran/UPP/army, /obj/item/clothing/head/helmet/marine/veteran/UPP/army, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) +"cEm" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "cEt" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -5560,19 +7546,26 @@ id = "wrehouse2" }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "cER" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) "cET" = ( /obj/structure/inflatable/door, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/caves/temple) +"cFn" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cFu" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/sterile_white, @@ -5588,6 +7581,15 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"cFW" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -10; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cGg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5597,9 +7599,42 @@ layer = 3.1; dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/item/prop/almayer/handheld1{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = 8 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"cGl" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 5; + pixel_y = 20 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"cGr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "cGG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/crowbar/tactical{ @@ -5619,7 +7654,7 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "cHF" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/orange_edge/west, /area/sekhmet/int_reg/complex_comms) "cHQ" = ( @@ -5636,51 +7671,57 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) "cHW" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "cIm" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/warnplate/west, /area/sekhmet/shuttles/drop3) "cIq" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = -7 - }, -/turf/closed/wall/rock{ - color = "#a39e99" - }, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "cIL" = ( /obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "cIM" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/southeast_road) +"cIZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -6; + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "cJb" = ( /obj/structure/bed/roller/hospital_empty/bigrollerempty, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "cJf" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "cJi" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/shuttles/drop3) "cJo" = ( -/obj/structure/flora/bush/ausbushes/palebush, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, /obj/structure/platform/metal/strata/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "cJw" = ( /obj/effect/decal/warning_stripes{ @@ -5697,7 +7738,7 @@ /obj/structure/blocker/invisible_wall/water{ desc = "The heat is too intense to even be near." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) @@ -5709,35 +7750,96 @@ "cJX" = ( /obj/structure/platform/metal/shiva/north, /obj/structure/largecrate/random/secure, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "cKb" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"cKc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cKf" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) "cKg" = ( /obj/structure/largecrate/random/case, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"cKj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -21; + pixel_y = -5; + dir = 6 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) +"cKQ" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5, +/area/sekhmet/outside/swamp) +"cKR" = ( +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 4; + pixel_y = -15 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) +"cKV" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/flora/wood/stick2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cKW" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "cLj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/corsat/squares, /area/sekhmet/int_reg/engineering) +"cLk" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"cLs" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cLy" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/machine_32x64/indestructible{ @@ -5764,6 +7866,29 @@ "cMb" = ( /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"cMN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -34 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) +"cNb" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -18; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -11; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cNg" = ( /obj/structure/closet/hydrant{ pixel_y = 32 @@ -5773,7 +7898,7 @@ pixel_y = 15; pixel_x = 12 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) @@ -5804,12 +7929,31 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) +"cOt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"cOD" = ( +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/sekhmet/int_reg/ship2) "cOE" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "cOZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -5831,9 +7975,22 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) "cPL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata/floor3, -/area/sekhmet/int_heavy/research) +/obj/structure/blocker/invisible_wall, +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 1; + pixel_y = 16 + }, +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/space) "cPW" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -5841,16 +7998,25 @@ /obj/structure/machinery/prop/almayer/computer/PC, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) +"cQW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 16; + dir = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "cRa" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "cRi" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "South Complex - East Hall"; colony_camera_mapload = 0; @@ -5859,6 +8025,13 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/south_complex) +"cRs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "cRv" = ( /obj/effect/decal/siding{ icon_state = "siding4" @@ -5867,18 +8040,30 @@ color = "#6b675e"; layer = 2.79 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_reg/complex_intel) +"cRI" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cRQ" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "cRZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "cSb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "Site - Filtration"; colony_camera_mapload = 0; @@ -5886,19 +8071,71 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/air_filters) +"cSS" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cTb" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 10; + pixel_y = 18 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "cTk" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/spawner/random/toolbox, /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship1) "cUa" = ( -/obj/structure/window/framed/upp_ship, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/small_power) "cUd" = ( /obj/structure/machinery/chem_dispenser, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) +"cUe" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/west, +/area/sekhmet/outside/temple_outer) +"cUg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -14; + pixel_y = 11; + dir = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"cUr" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 8; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 15; + pixel_y = -26 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cUR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 2 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "cUT" = ( /obj/structure/machinery/camera{ c_tag = "Central Complex - Operations"; @@ -5912,61 +8149,196 @@ dir = 5 }, /area/sekhmet/int_heavy/research) +"cVy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"cVR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -17; + pixel_y = 9 + }, +/obj/structure/flora/wood/stick2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cVU" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ pixel_x = 5; pixel_y = 6; layer = 2.98 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "cWe" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "cWg" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) +"cWp" = ( +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"cWD" = ( +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "cXe" = ( /obj/structure/cargo_container/canc/mid{ layer = 2.98 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) -"cZp" = ( +"cXf" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, /area/sekhmet/outside/swamp) -"daO" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +"cXW" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/central_road) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"cYc" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/flora/wood/stick2{ + pixel_x = 10; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cYe" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"cYv" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cZp" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"cZM" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"daO" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "dbj" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"dbH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/closet/crate/ammo, +/obj/item/weapon/gun/smg/ppsh/with_drum_mag, +/obj/item/ammo_magazine/smg/ppsh/extended, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_heavy/research) +"dbN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/research) "dbQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"ddi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -12; + pixel_y = -15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -7; + pixel_y = 4; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"ddO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "ddS" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - pixel_y = -7 + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, /turf/closed/wall/r_wall/bunker, /area/sekhmet/int_reg/air_filters) +"deg" = ( +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/airfield) +"deh" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_x = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 15; + pixel_y = -19 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "deE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/item/device/flashlight/lamp/tripod/grey{ light_power = 0.3; light_range = 4 @@ -5979,8 +8351,7 @@ pixel_x = -4 }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) @@ -5994,9 +8365,25 @@ }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"deL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 13; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "dfr" = ( /turf/open/floor/filtrationside/southeast, /area/sekhmet/int_reg/air_filters) +"dfG" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_y = -1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "dfJ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -6007,10 +8394,27 @@ }, /obj/item/tool/hand_labeler{ pixel_x = 9; - pixel_y = 13 + pixel_y = 16 + }, +/obj/item/evidencebag{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/item/evidencebag{ + pixel_x = 6; + pixel_y = 5 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) +"dfO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = 5; + dir = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "dga" = ( /obj/structure/machinery/landinglight/delaythree{ dir = 8 @@ -6023,17 +8427,32 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) +"dgw" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "dhg" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) "dhA" = ( -/obj/effect/decal/cleanable/generic{ - color = "#5d524b"; - alpha = 155 +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/small_power) +"dhB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "dhH" = ( /obj/structure/window_frame/wood, /obj/item/stack/sheet/wood{ @@ -6051,7 +8470,9 @@ pixel_y = 4; anchored = 1 }, -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) "dhJ" = ( @@ -6070,9 +8491,7 @@ pixel_x = 7; pixel_y = 7 }, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "dhK" = ( @@ -6087,10 +8506,27 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) +"dhL" = ( +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "djf" = ( /obj/structure/reagent_dispensers/tank/fuel, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"djn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/item/device/defibrillator/compact_adv, +/obj/structure/closet/crate/internals, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_heavy/research) "djB" = ( /obj/item/stool{ pixel_x = 2; @@ -6115,19 +8551,32 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "djH" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "djM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "djN" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/sekhmet/int_heavy/research) +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -14; + dir = 8; + pixel_x = -17 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"djT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "djV" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -6155,22 +8604,30 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/complex_generic) +"dkr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -21; + pixel_y = -13 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "dkI" = ( /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/military_hangar) "dkY" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/central_road) "dlh" = ( /obj/structure/kitchenspike, -/turf/open/floor/prison/kitchen, +/turf/open/floor/hybrisa/tile/tilewhite, /area/sekhmet/int_glass/south_complex) "dlC" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "dlD" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ @@ -6178,6 +8635,20 @@ }, /turf/open/floor/strata/green1, /area/sekhmet/int_glass/complex_generic) +"dlN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 2; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 17; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "dlU" = ( /turf/open/floor/strata/floor2, /area/sekhmet/outside/southeast_road) @@ -6192,21 +8663,74 @@ icon_state = "SE-out"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"dmB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dmX" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/shuttle/black, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) +"dna" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"dnw" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"doa" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"dok" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 9; + pixel_y = 20 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "doo" = ( /obj/structure/closet/cabinet, +/obj/effect/decal/hybrisa/dirt, +/obj/item/clothing/accessory/helmet/cover/netting/jungle, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) "dor" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/machinery/door_control{ pixel_x = 9; @@ -6245,7 +8769,7 @@ /area/sekhmet/outside/central_road) "doX" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "dpa" = ( /obj/structure/barricade/handrail/wire, @@ -6256,13 +8780,13 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) "dpM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/closed/wall/strata_outpost, /area/sekhmet/int_heavy/research) "dqe" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "dqA" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/generic/autoname{ @@ -6271,30 +8795,95 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/southwest_complex) "dqS" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirt2, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"dqT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -11; + pixel_y = 14 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/south_cave) +"drb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/sekhmet/int_reg/ship1) "drk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/warehouse) +"drn" = ( +/obj/item/prop/colony/canister{ + pixel_x = 3; + pixel_y = 18; + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/garage) "drs" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/sand_white/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"dru" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "drR" = ( -/obj/structure/stairs, -/turf/open/floor/kutjevo/grey, -/area/sekhmet/int_reg/military_hangar) +/obj/item/clothing/suit/armor/vest/UPP/alt, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/air_filters) "dsE" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"dsN" = ( +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_y = 23 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -2; + pixel_y = 22 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 10; + pixel_y = -21 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dsU" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_y = -3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dtH" = ( /obj/structure/surface/table{ color = "#8B7B5B" @@ -6314,8 +8903,7 @@ pixel_y = -7 }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/hosptial) @@ -6324,9 +8912,18 @@ light_power = 0.5; dir = 1 }, +/obj/structure/prop/hybrisa/misc/elevator_button{ + pixel_x = -6; + pixel_y = 36 + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) +"dud" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "duG" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/outside/central_road) @@ -6339,12 +8936,20 @@ layer = 3.1; dir = 4 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "duO" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) +"duS" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_y = -7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "duT" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) @@ -6373,6 +8978,29 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"dvr" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"dvt" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_1"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_reg/military_hangar) +"dwl" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/telecomm/lz1_southeast) +"dwm" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -11; + pixel_y = -17 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dwo" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -6403,18 +9031,12 @@ }, /area/sekhmet/int_reg/ship2) "dxf" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "dxu" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) @@ -6425,12 +9047,49 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/entry_zone) -"dyd" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +"dxZ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -6; + pixel_y = -27 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"dyd" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"dyl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"dyQ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -1 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"dyR" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -18; + pixel_y = -2; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) +"dze" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "dzs" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/corsat, @@ -6439,13 +9098,38 @@ /obj/effect/decal/cleanable/dirt/alt_dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"dzz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "dAw" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) +"dAx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"dAU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "dBp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost/reinforced/hull, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + name = "Emergency Lockdown"; + needs_power = 0; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) "dBq" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -6453,7 +9137,7 @@ pixel_y = 24; pixel_x = 16 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -6467,21 +9151,60 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"dCC" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/structure/machinery/computer/emails, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 41 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/southwest_complex) +"dCD" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 1; + pixel_y = -21 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dDb" = ( +/obj/effect/alien/weeds/node, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "dDe" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"dDt" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "dDA" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"dDJ" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dDK" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "dEa" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "dEj" = ( /obj/structure/machinery/camera{ @@ -6492,11 +9215,16 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/complex_generic) "dEo" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor2, /area/sekhmet/outside/east_jungle) +"dEC" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "dEJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6509,8 +9237,10 @@ /obj/structure/sign/safety/water{ pixel_x = -18 }, -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "dEM" = ( /obj/vehicle/powerloader/jd{ @@ -6524,7 +9254,6 @@ "dFn" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/floor3, @@ -6545,6 +9274,14 @@ "dGl" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/sekhmet/outside/temple_outer) +"dGm" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/flora/wood/stick2{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "dGr" = ( /obj/structure/sink{ layer = 3.1; @@ -6553,12 +9290,19 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"dGJ" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dGP" = ( /obj/structure/machinery/autolathe, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "dGR" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -6572,16 +9316,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/southwest, /area/sekhmet/int_reg/water_filters) +"dHi" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dHu" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/east_jungle) "dHG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp/corner, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "dHP" = ( /obj/structure/surface/table{ @@ -6595,9 +9340,21 @@ dir = 6 }, /area/sekhmet/int_reg/comms_lower) +"dIE" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -10; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dIS" = ( /turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/area/sekhmet/int_reg/small_power) +"dJj" = ( +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) "dJm" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -6608,12 +9365,22 @@ /area/sekhmet/int_reg/warehouse) "dJC" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 1 + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"dJL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -3; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "dJM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "South Complex - Therapeutics"; colony_camera_mapload = 0; @@ -6622,9 +9389,15 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/hosptial) +"dJY" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/hosptial) "dKc" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "dKF" = ( /obj/structure/surface/table{ @@ -6644,8 +9417,13 @@ /area/sekhmet/int_reg/air_filters) "dKY" = ( /obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/southroad) +"dLa" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) "dLs" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/plating/plating_catwalk/strata, @@ -6659,37 +9437,100 @@ /area/sekhmet/outside/central_road) "dLx" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/telecomm/lz2_northeast) "dLM" = ( /obj/structure/machinery/disposal, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"dLR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 6; + pixel_y = -11 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"dMe" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/shiva/prefabricated, +/area/sekhmet/int_reg/air_filters) +"dMf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -14; + pixel_y = -17; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"dMN" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"dMQ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 3; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dNg" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "dNB" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/temple_outer) "dOw" = ( -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88" + }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) -"dPG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" +"dPt" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) +"dPx" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -6; + pixel_y = 9 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -5; + pixel_y = -22 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"dPG" = ( +/obj/structure/flora/grass/tallgrass/swamp/corner, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "dQa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) "dQj" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -6703,7 +9544,12 @@ dir = 4; pixel_y = 10 }, -/obj/structure/curtain, +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) "dQm" = ( @@ -6715,22 +9561,43 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"dQo" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "dQr" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/complex_generic) -"dRp" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - pixel_x = 5; - pixel_y = 6; - layer = 2.98 +"dRf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -8; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_x = 14; + pixel_y = 6 }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"dRh" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dRp" = ( /obj/structure/bed/chair{ buckling_y = 18; dir = 8; pixel_x = 6; pixel_y = 18 }, -/turf/open/gm/dirt, +/obj/structure/cargo_container/horizontal/red/middle{ + pixel_x = 5; + pixel_y = 6; + layer = 2.98 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "dRq" = ( /obj/effect/landmark/survivor_spawner, @@ -6745,14 +9612,30 @@ /area/sekhmet/int_glass/complex_generic) "dRu" = ( /obj/structure/platform/metal/shiva/west, -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) -"dRL" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/sekhmet/outside/airfield) +"dRI" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -5; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dSh" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "dSq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -6760,11 +9643,44 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"dSB" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -13; + pixel_y = -16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dSU" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 15; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "dTp" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/structure/platform/metal/shiva, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"dTu" = ( +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -27; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -4; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dTx" = ( /obj/effect/decal/siding{ icon_state = "siding2" @@ -6778,7 +9694,7 @@ /area/sekhmet/int_heavy/research) "dTK" = ( /obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "dTW" = ( @@ -6796,10 +9712,44 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"dTZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"dUv" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "dUL" = ( /obj/structure/sign/nosmoking_2, -/turf/closed/wall/upp_ship, -/area/sekhmet/int_reg/catwalk) +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/int_reg/small_power) +"dUO" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -16; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dUU" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dVl" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/garage) @@ -6810,7 +9760,7 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "dVw" = ( -/turf/open/gm/coast/south, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "dVU" = ( /turf/open/floor/plating/plating_catwalk/strata, @@ -6830,32 +9780,98 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/caves/temple) +"dWg" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/central_road) +"dWC" = ( +/obj/effect/decal/floor_symbol/upp/northface{ + pixel_x = 16; + pixel_y = 17; + color = "#8c4040" + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "dWD" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /turf/open/shuttle/dropship/light_grey_left_to_right, /area/sekhmet/int_reg/ship1) +"dWO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"dXi" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = -10; + pixel_y = 9; + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"dXA" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dXC" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) -"dYj" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +"dXQ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 17; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"dYa" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/sky) +"dYb" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 14; + pixel_y = -18 }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"dYj" = ( +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/int_heavy/research) "dYn" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) +"dYI" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick2{ + pixel_x = -20; + pixel_y = -17; + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dYT" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -6885,20 +9901,56 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"dYY" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "dZb" = ( /obj/effect/decal/siding{ icon_state = "siding4" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_intel) +"dZj" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/outside/swamp) "dZp" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/sign/safety/commline_connection{ pixel_x = -19 }, /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/complex_comms) +"dZw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -15; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 17; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 8; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "dZz" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -6908,34 +9960,73 @@ pixel_y = 8 }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 40 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) +"eaa" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) "ead" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/temple_outer) "eae" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) -"ear" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"eah" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) +"eaj" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_x = 5 }, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/plating/kutjevo, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ear" = ( +/turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/temple) -"eaO" = ( -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/sekhmet/outside/airfield) +"eaD" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 8; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eaL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 18; + dir = 4 + }, +/obj/structure/flora/wood/stick3{ + dir = 1; + pixel_x = -10; + pixel_y = -10 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ebs" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -6949,6 +10040,10 @@ pixel_x = -14; pixel_y = -1 }, +/obj/item/clothing/accessory/patch/upp/alt{ + pixel_x = 2; + pixel_y = 6 + }, /obj/item/map, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) @@ -6956,38 +10051,118 @@ /obj/structure/machinery/disposal, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) +"ebJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 1; + pixel_y = 11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "ebT" = ( /obj/structure/closet/cabinet, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) -"ect" = ( -/obj/structure/platform/metal/shiva/north, -/turf/open/gm/coast/east, -/area/sekhmet/outside/swamp) -"ecE" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +"ebV" = ( +/obj/structure/machinery/door_control{ + pixel_x = 1; + pixel_y = -20; + id = "LZ1shutter1" }, -/turf/open/floor/strata/floor2, -/area/sekhmet/int_reg/engineering) -"ecL" = ( -/obj/structure/safe/floor{ - name = "safe"; - spawnkey = 0 +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/military_hangar) +"ebZ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 5 }, -/obj/structure/machinery/light{ - light_power = 0.5 +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 2; + pixel_y = -6 }, -/turf/open/floor/strata/floor3, -/area/sekhmet/int_reg/complex_operation) -"ecO" = ( -/turf/closed/wall/upp_ship/reinforced/outer, -/area/sekhmet/int_reg/comms_lower) -"edG" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eca" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eci" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/obj/structure/flora/wood/stick4{ + pixel_x = 18; + pixel_y = 4 + }, +/obj/structure/flora/wood/stick1{ + pixel_x = 10; + pixel_y = -6 + }, +/obj/structure/flora/wood/stick3{ + pixel_x = -15; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) +"ect" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/flora/wood/stick2{ + pixel_x = 1; + pixel_y = -17 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"ecE" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/engineering) +"ecL" = ( +/obj/structure/safe/floor{ + name = "safe"; + spawnkey = 0 + }, +/obj/structure/machinery/light{ + light_power = 0.5 + }, +/obj/item/weapon/gun/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/item/clothing/mask/gas/pmc/upp{ + pixel_y = -8 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/complex_operation) +"ecO" = ( +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/int_reg/comms_lower) +"edq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) +"edr" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"edG" = ( /obj/structure/machinery/landinglight{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "edO" = ( @@ -6995,15 +10170,13 @@ icon_state = "N"; pixel_y = 2 }, -/obj/structure/filingcabinet{ +/obj/structure/filingcabinet/dark{ pixel_x = -8; - pixel_y = 1; - color = "#8B7B5B" + pixel_y = 1 }, -/obj/structure/filingcabinet{ +/obj/structure/filingcabinet/dark{ pixel_x = 8; - pixel_y = 1; - color = "#8B7B5B" + pixel_y = 1 }, /obj/structure/machinery/light{ light_power = 0.5 @@ -7018,12 +10191,30 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "eeE" = ( -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/east_jungle) "eeH" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner/south_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"eeI" = ( +/obj/structure/stairs/perspective{ + color = "#79573e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, /area/sekhmet/outside/swamp) +"efg" = ( +/obj/effect/decal/floor_symbol/upp/northface/west{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "efi" = ( /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/military_hangar) @@ -7044,6 +10235,53 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/air_filters) +"efx" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"efB" = ( +/obj/structure/prop/swamp_plants/algae/full{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/obj/structure/flora/wood/stick1{ + pixel_x = 9; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"efC" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -4; + dir = 8; + pixel_x = -3 + }, +/obj/structure/flora/wood/stick3{ + dir = 8; + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/east_jungle) +"efH" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"efI" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "efR" = ( /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/south_cave) @@ -7052,7 +10290,7 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "egh" = ( @@ -7069,16 +10307,38 @@ /obj/effect/alien/weeds/node, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"egl" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "egr" = ( /turf/open/floor/corsat/marked, /area/sekhmet/outside/southroad) "egw" = ( /obj/effect/alien/weeds/node, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/caves/temple) +"egz" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "egB" = ( /obj/structure/platform/metal/strata/west, -/turf/open/gm/dirt, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 4; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) "egE" = ( /obj/structure/bed/chair/comfy/beige{ @@ -7089,39 +10349,130 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) +"egT" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"egX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -19; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 27; + pixel_y = 19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 13; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eha" = ( +/obj/effect/decal/hybrisa/dirt, /obj/structure/bed/chair/comfy/blue{ - dir = 1 + dir = 1; + layer = 2.4 + }, +/obj/structure/window/reinforced/tinted{ + layer = 3.4 }, -/obj/structure/window/reinforced/tinted, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "ehb" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) +"ehq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"ehH" = ( +/obj/structure/flora/wood/stick4{ + dir = 1; + pixel_x = 16; + pixel_y = -13 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"eib" = ( +/obj/structure/prop/swamp_plants/algae/corner, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 6; + pixel_y = -21 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eii" = ( +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_y = 12 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"eil" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"eiv" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "eiV" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/central_road) "ejc" = ( -/obj/structure/largecrate, /obj/effect/decal/warning_stripes{ icon_state = "cargo"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/empty, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "ejR" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 6; + pixel_y = -12 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) +"ejV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -3; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "ekO" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" @@ -7130,8 +10481,13 @@ "ekV" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/ammo_magazine/handful/shotgun/heavy/dragonsbreath, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"ell" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/entry_zone) "elF" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7148,27 +10504,91 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) +"elQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 5; + dir = 8; + pixel_x = 1 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"emh" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"emi" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/flora/wood/stick1{ + pixel_y = 17 + }, +/obj/structure/flora/wood/stick2{ + pixel_y = -1; + dir = 1 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "emG" = ( /obj/structure/largecrate/random/case/double{ layer = 2.99 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"emH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -9 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"emN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = 5; + dir = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "emO" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"emY" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "enc" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/yard) "enl" = ( /turf/open/floor/plating/warnplate/north, /area/sekhmet/shuttles/drop3) +"enp" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_x = 3; + pixel_y = -6; + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 35; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "enu" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) @@ -7181,14 +10601,34 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "eoi" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/power/apc/power/east, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) +"eoz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -11; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eoO" = ( /obj/structure/largecrate/random/barrel/true_random, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"eoP" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"eoY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_glass/south_complex) "epi" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner{ @@ -7205,53 +10645,163 @@ }, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) +"epq" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 11; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "epM" = ( /obj/structure/machinery/power/apc/power/west, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"eqa" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -4; + pixel_y = -22 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eqo" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/small_power) "eqz" = ( /obj/structure/cargo_container/canc/left, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"eqF" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eqH" = ( /obj/structure/window/framed/strata, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/entry_zone) "eqJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_intel) "eqX" = ( -/obj/effect/vehicle_spawner/van/decrepit, +/obj/structure/prop/dam/crane/damaged{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/garage) "ery" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/entry_zone) +"esd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "esh" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) "esu" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ name = "Staircase Access" }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/military_hangar) "esx" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 6 +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/swamp) +"esT" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -17; + pixel_y = 18 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/central_road) +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"etb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.01 + }, +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/structure/machinery/computer/cameras/colony_camera{ + name = "console"; + pixel_x = 3; + pixel_y = 3; + network = list("Sekhmet"); + colony_camera_mapload = 0; + layer = 3 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/military_hangar) "etc" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"eth" = ( +/obj/structure/platform/metal/shiva, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "etm" = ( -/obj/structure/closet/crate/secure/gear, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = -4; + pixel_y = -18; + dir = 1 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"eto" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 12 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"etp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "etG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7262,6 +10812,18 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"etH" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz2_northeast) +"etN" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -6; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "etT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/reagentgrinder{ @@ -7270,7 +10832,9 @@ /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "eua" = ( -/obj/structure/largecrate, +/obj/structure/largecrate/guns/russian{ + pixel_x = -2 + }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/sekhmet/int_reg/ship1) "eub" = ( @@ -7279,36 +10843,63 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) -"euH" = ( -/turf/open/floor/strata/fake_wood, -/area/sekhmet/int_reg/complex_operation) -"euL" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +"euf" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"euu" = ( +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" }, -/obj/effect/decal/siding{ - icon_state = "siding2"; - pixel_y = 10 +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" }, -/obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/north, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 16; + pixel_y = 15 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"euH" = ( +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_reg/complex_operation) "euU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"evJ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "evV" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated, /area/sekhmet/outside/airfield) "ewf" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"ewn" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"ewF" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "exa" = ( /obj/item/device/flashlight/lamp/tripod/grey{ light_power = 0.3; @@ -7317,15 +10908,39 @@ /turf/open/floor/plating/plating_catwalk/shiva, /area/sekhmet/outside/temple_outer) "exp" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"exs" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = -28 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"exA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"exL" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "eyb" = ( -/obj/structure/machinery/light{ - light_power = 0.5; - dir = 8 +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -17; + pixel_y = -4; + layer = 4.11 }, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/sekhmet/int_heavy/research) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "eyh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7344,7 +10959,7 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) "eyx" = ( -/obj/structure/largecrate, +/obj/structure/largecrate/empty, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "eyI" = ( @@ -7355,47 +10970,76 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) "ezh" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/structure/safe/floor{ name = "safe"; spawnkey = 0 }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/engineering) +"ezD" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 8; + pixel_y = 16 + }, +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/space) "ezK" = ( /obj/structure/platform/metal/shiva, -/turf/open/gm/coast/east, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "eAl" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"eAt" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eAy" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/south_complex) +"eBd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "eBe" = ( /obj/item/maintenance_jack, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/garage) "eBm" = ( @@ -7406,12 +11050,19 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "eBp" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_glass/south_complex) +"eBA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 16 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "eCp" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "eCz" = ( @@ -7433,15 +11084,22 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"eCO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "eDr" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/fake_wood, @@ -7450,6 +11108,29 @@ /obj/structure/machinery/deployable/barrier, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"eDR" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eEp" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 2; + pixel_y = 4; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"eEO" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/sky) "eFl" = ( /obj/item/tool/kitchen/rollingpin{ pixel_y = 2 @@ -7467,6 +11148,7 @@ /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "eFO" = ( @@ -7520,7 +11202,7 @@ pixel_y = 35; pixel_x = -1 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 19 }, /obj/effect/decal/strata_decals/grime/grime1{ @@ -7530,8 +11212,10 @@ /area/sekhmet/int_reg/southwest_complex) "eGL" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "eGR" = ( /obj/structure/surface/rack{ @@ -7552,7 +11236,7 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/garage) "eHe" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "eHg" = ( /obj/structure/cargo_container/upp/mk6/right{ @@ -7560,12 +11244,8 @@ pixel_y = 11; layer = 3.01 }, -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" - }, -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff"; - pixel_y = 21 +/obj/structure/cargo_container/kelland/alt/right{ + dir = 8 }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) @@ -7573,14 +11253,33 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"eHw" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -16; + pixel_y = 3 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "eHV" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) +"eIU" = ( +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "eJn" = ( /obj/structure/filtration/machine_96x96/disinfection, /obj/structure/barricade/handrail/type_b{ @@ -7593,9 +11292,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/southwest, /area/sekhmet/int_reg/water_filters) +"eJr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "eJN" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "eKo" = ( /obj/structure/machinery/light{ @@ -7607,6 +11313,18 @@ /obj/item/stack/sheet/wood, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"eKK" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -17; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -20; + pixel_y = -16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eKM" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/fake_wood, @@ -7624,6 +11342,13 @@ "eLr" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"eLz" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "eLH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "biggarage"; @@ -7634,6 +11359,10 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/garage) +"eLL" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "eLY" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -7641,11 +11370,19 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) +"eMx" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 9; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eMy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "eNl" = ( @@ -7653,17 +11390,38 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) "eNo" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"eNV" = ( +/obj/structure/flora/wood/stick4, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"eNY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "eOm" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, /obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) +"eOu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "eOy" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -7692,36 +11450,73 @@ pixel_y = 4; anchored = 1 }, -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) "ePb" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "ePr" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) +"ePB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "ePL" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "ePW" = ( /obj/structure/bed/chair, /obj/effect/decal/siding, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"eQg" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 16; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eQl" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "eQp" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"eQy" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eQz" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "eQR" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "eQT" = ( /obj/structure/window_frame/wood, @@ -7739,7 +11534,9 @@ pixel_y = 4; anchored = 1 }, -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) "eQV" = ( @@ -7750,13 +11547,31 @@ /obj/item/device/flashlight, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) +"eRh" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"eRk" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "eRq" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "eRu" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "eRK" = ( /obj/structure/surface/table/almayer{ @@ -7769,9 +11584,14 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"eRR" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_reg/catwalk) "eRZ" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/caves/temple) "eSg" = ( /obj/structure/surface/table/almayer{ @@ -7782,6 +11602,19 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) +"eSs" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) +"eSU" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "eSY" = ( /obj/structure/cargo_container/horizontal/blue/top{ pixel_x = 5; @@ -7794,19 +11627,27 @@ pixel_x = 9; pixel_y = 10 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "eTn" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" - }, /obj/effect/decal/warning_stripes{ icon_state = "cargo"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/kelland/alt/left{ + dir = 8 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"eTB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eTJ" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -7814,9 +11655,18 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/engineering) +"eTK" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 8; + pixel_y = -23 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "eTO" = ( -/obj/structure/stairs/perspective/kutjevo, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "eTQ" = ( /obj/structure/surface/table/almayer{ @@ -7836,7 +11686,7 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_reg/engineering) "eTW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "South Complex - West Hall"; colony_camera_mapload = 0; @@ -7845,6 +11695,22 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/southwest_complex) +"eTX" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/sign/flag/upp{ + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_glass/south_complex) +"eUu" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -19; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eUG" = ( /obj/structure/platform/metal/shiva/west, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -7854,30 +11720,39 @@ /obj/structure/machinery/vending/cigarette, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) +"eUW" = ( +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "eVd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/arrow_west, /area/sekhmet/int_heavy/research) "eVw" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "eVS" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/plating/warnplate/east, /area/sekhmet/shuttles/drop3) +"eWj" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southeast_road) "eWG" = ( /turf/closed/shuttle/ert{ icon_state = "upp22" }, /area/sekhmet/int_reg/ship1) +"eWS" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = -1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "eXg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -7889,7 +11764,7 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "eYt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) "eYv" = ( @@ -7900,22 +11775,79 @@ pixel_x = -8; pixel_y = 6 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) "eZo" = ( /turf/closed/wall/strata_outpost, /area/sekhmet/int_heavy/research) +"eZy" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "eZD" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) +"eZW" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/empty, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "fad" = ( -/obj/structure/platform_decoration/stone/soro/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/temple_outer) +"fah" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/marked, +/area/sekhmet/outside/southeast_road) +"faj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/swamp) +"faE" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"fba" = ( +/obj/structure/machinery/big_computers/computerbrown/computer4{ + icon_state = "sensor_comp2_off"; + color = "#ffffb3"; + name = "sensor computer"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/prop/tableflag/upp{ + pixel_x = -10; + pixel_y = 19 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/sekhmet/int_reg/ship2) "fbc" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -7928,20 +11860,80 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) -"fbA" = ( -/obj/structure/prop/dam/crane/damaged{ - dir = 1 +"fbd" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"fbg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/east_jungle) +"fbx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -16; + pixel_y = 23 }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"fbA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/vehicle_spawner/hovercraft/decrepit, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) +"fdv" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -4; + pixel_y = 16 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -3; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fdy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/military_hangar) +"fdH" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"fdM" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -20; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -13; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fej" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7954,11 +11946,10 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "feP" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "ffk" = ( /obj/structure/prop/structure_lattice{ @@ -7977,8 +11968,22 @@ pixel_y = -24 }, /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/southroad) +"ffD" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 9; + pixel_y = 16 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"ffK" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 21; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "ffM" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -7986,6 +11991,16 @@ }, /turf/open/floor/prison/bright_clean/southwest, /area/sekhmet/int_reg/water_filters) +"fga" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) +"fgd" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/space) "fgk" = ( /turf/closed/shuttle/ert{ icon_state = "upp1" @@ -8009,17 +12024,43 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, +/obj/structure/sign/poster/music{ + pixel_x = -4; + pixel_y = 30 + }, +/obj/structure/sign/poster/music{ + pixel_x = -12; + pixel_y = 34 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) +"fgt" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fgy" = ( /obj/vehicle/train/cargo/engine, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "fgz" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"fgB" = ( +/obj/structure/cargo_container/horizontal/green/top{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/warehouse) +"fgT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/garage) "fgY" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -8028,7 +12069,7 @@ /obj/item/storage/toolbox/mechanical{ pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) "fgZ" = ( @@ -8036,13 +12077,16 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "fha" = ( -/obj/structure/stairs, -/turf/open/floor/kutjevo/grey, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship2) "fhd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -8055,7 +12099,7 @@ /area/sekhmet/int_reg/ship1) "fhY" = ( /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "fiL" = ( /obj/structure/surface/table/reinforced/prison, @@ -8066,18 +12110,18 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "fjb" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/obj/structure/machinery/door/airlock/multi_tile/elevator/brown, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "fjc" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/beachcorner/north_west, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, /area/sekhmet/outside/swamp) "fjg" = ( /obj/structure/bed/chair/comfy/beige{ @@ -8089,10 +12133,11 @@ /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "fjm" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "South Complex - Bridge"; colony_camera_mapload = 0; @@ -8117,9 +12162,7 @@ /area/sekhmet/int_glass/hosptial) "fkg" = ( /obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) "fkl" = ( @@ -8128,8 +12171,43 @@ opacity = 0 }, /area/sekhmet/int_reg/ship2) +"fkF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -11; + pixel_y = -17 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) +"fkV" = ( +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/int_reg/small_power) +"fld" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/sky) +"flh" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -11; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"flq" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/outside/swamp) "flr" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 @@ -8153,7 +12231,7 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/caves/temple) "flJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -8169,20 +12247,25 @@ /turf/open/floor/corsat, /area/sekhmet/shuttles/drop1) "fmG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/garage) +"fmK" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "fmL" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) "fmU" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "fnb" = ( /obj/structure/coatrack{ @@ -8194,8 +12277,18 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/comms_lower) "fnv" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"fny" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/abstract/ripple/shadow, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/sekhmet/outside/swamp) "fnO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -8225,14 +12318,38 @@ pixel_x = 6; pixel_y = -5 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"fol" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 11 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/east_jungle) +"foo" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -18; + pixel_y = -2; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "fot" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"fow" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 7; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "foF" = ( /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/complex_comms) @@ -8246,27 +12363,114 @@ "foL" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/central_road) -"fpK" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +"fpi" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"fpy" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/small_power) +"fpC" = ( +/obj/structure/cargo_container/upp_small/container_6/left, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) +"fpD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"fpK" = ( +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) +"fpQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"fpS" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 20; + pixel_y = 34 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"fpX" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"fpY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_x = 11; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "fqb" = ( -/turf/open/gm/river/no_overlay, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) +"fqD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -9; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "frb" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/landmark/objective_landmark/far, +/obj/item/stack/sheet/plasteel/large_stack, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) +"frc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) +"frt" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/slippery/hull/dir/southeast, +/area/sekhmet/int_reg/catwalk) +"frE" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -10; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 12; + pixel_y = 8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "frQ" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -8274,16 +12478,32 @@ pixel_x = -3; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/military_hangar) "frZ" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "fse" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"fsn" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -14; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -3; + pixel_y = -13 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fsK" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -8296,23 +12516,84 @@ /area/sekhmet/int_reg/military_hangar) "ftl" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/int_reg/yard) +"fts" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -23; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 4; + pixel_y = 33 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ftt" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ftu" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + color = "#a98c7c" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"ftv" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -9; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ftw" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/int_reg/complex_intel) +"ftG" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "ftM" = ( /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "fuf" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" +/obj/structure/flora/grass/tallgrass/swamp, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"fum" = ( +/obj/structure/flora/wood/stick3{ + dir = 1; + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"fuq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -2; + dir = 8; + pixel_x = 4 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "fuv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8320,29 +12601,65 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"fuB" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fvf" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = -7 + dir = 5; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = -13; + color = "#865c47"; + icon_state = "flammable_pipe_3"; + pixel_x = -6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "fvC" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) "fvI" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/sand_white/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) +"fvM" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"fvN" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 14; + pixel_y = -18 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "fvZ" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"fwt" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "fwv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -8351,51 +12668,97 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"fwz" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/west, +/area/sekhmet/outside/swamp) "fwP" = ( /obj/structure/pipes/vents/pump, /obj/structure/platform/metal/shiva/east, /turf/open/floor/carpet, /area/sekhmet/int_reg/complex_operation) +"fwX" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + name = "Emergency Lockdown"; + needs_power = 0; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/space/basic, +/area/space) "fxj" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"fxx" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/sky) +"fxD" = ( +/obj/effect/decal/floor_symbol/upp/northface/northwest{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "fxW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/temple) "fxX" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/southwest_complex) "fyj" = ( -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 10 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "fyD" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/structure/platform/metal/shiva, /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"fyM" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/gm/dirt/swamp_dirt/variant_5, +/area/sekhmet/outside/swamp) +"fyQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "fzc" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "fzo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "fzA" = ( /obj/structure/prop/structure_lattice{ @@ -8408,18 +12771,24 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) +"fzG" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -6; + pixel_y = 20 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "fzH" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "fzV" = ( /obj/item/tool/warning_cone{ pixel_x = 6 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "fAn" = ( @@ -8427,7 +12796,7 @@ /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "fAq" = ( -/turf/open/floor/prison/kitchen, +/turf/open/floor/hybrisa/tile/tilewhite, /area/sekhmet/int_glass/south_complex) "fAH" = ( /obj/structure/surface/table/almayer{ @@ -8437,6 +12806,17 @@ /obj/structure/platform/metal/shiva, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) +"fAV" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/outside/swamp) +"fBc" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "fBe" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -8451,21 +12831,41 @@ pixel_y = -1 }, /obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"fBj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) +"fBk" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "fBF" = ( /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) "fBY" = ( /obj/item/stool, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) "fBZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_operation) +"fCa" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "fCc" = ( /obj/structure/closet{ pixel_x = -8; @@ -8491,32 +12891,50 @@ pixel_x = -10; pixel_y = 3 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = -1; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "fCg" = ( -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/gm/dirt/desert_dug, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) "fCk" = ( -/turf/open/gm/coast/north, -/area/sekhmet/outside/airfield) +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -14; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"fCn" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fCB" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/elevatorshaft, /area/sekhmet/int_reg/air_filters) +"fCQ" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "fCU" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "fCZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) @@ -8525,18 +12943,49 @@ dir = 10 }, /area/sekhmet/int_heavy/research) +"fDj" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -8; + pixel_y = -16 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"fDZ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/prop/fake/handrail/kutjevo, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"fEd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/catwalk) +"fEy" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fFo" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"fFp" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_heavy/research) "fFq" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) @@ -8558,11 +13007,20 @@ pixel_y = 1 }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"fFP" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"fFS" = ( +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "fFX" = ( /obj/structure/machinery/landinglight{ dir = 4 @@ -8570,12 +13028,12 @@ /obj/structure/machinery/landinglight/delaythree{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "fFY" = ( /obj/structure/bed/chair/comfy/beige, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "fGq" = ( @@ -8583,15 +13041,42 @@ icon_state = "upp23" }, /area/sekhmet/int_reg/ship1) +"fGt" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/east_jungle) +"fGv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 14; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -13; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "fGF" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) "fHd" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"fHf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = 19 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "fHq" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -8609,19 +13094,47 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) -"fHR" = ( -/obj/structure/window/framed/shiva, -/obj/structure/curtain, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_glass/complex_generic) -"fHS" = ( -/obj/structure/noticeboard{ - pixel_x = 1; - pixel_y = 31 +"fHt" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/south_complex) +"fHw" = ( +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"fHD" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"fHR" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 2.9; + alpha = 220 + }, +/obj/structure/window/framed/shiva/grey, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_glass/complex_generic) +"fHS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, +/turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/hosptial) +"fIw" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fIA" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo"; @@ -8630,14 +13143,33 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "fJi" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp20" - }, +/obj/structure/shuttle/part/ert/front_left_upp, +/turf/open/floor/corsat, /area/sekhmet/int_reg/ship2) +"fJk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 12; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 10; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fJp" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/military_hangar) +"fJE" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/small_power) "fJS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "rsrHangarStorage2"; @@ -8648,26 +13180,69 @@ /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) "fJT" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/int_reg/military_hangar) "fJW" = ( /obj/structure/platform_decoration/metal/almayer, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) +"fKk" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 10; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "fKs" = ( /obj/structure/largecrate/random, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "fKy" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) +"fKB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -3; + pixel_y = 19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fKL" = ( /obj/structure/platform/metal/strata, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"fKZ" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -16; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"fLe" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"fLj" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 15; + pixel_y = -16 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fLs" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/outside/airfield) @@ -8675,27 +13250,86 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/corsat, /area/sekhmet/shuttles/drop1) +"fMd" = ( +/obj/structure/platform/metal/strata/north, +/obj/effect/abstract/ripple/shadow, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) "fMe" = ( /turf/closed/wall/strata_outpost/reinforced, /area/sekhmet/int_heavy/research) "fMm" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - pixel_x = 5; - pixel_y = 6; - layer = 2.98 - }, /obj/structure/bed/chair{ buckling_y = 18; dir = 8 }, -/turf/open/auto_turf/sand_white/layer1, +/obj/structure/cargo_container/horizontal/red/top{ + pixel_x = 5; + pixel_y = 6; + layer = 2.98 + }, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) +"fMC" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"fNi" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"fNv" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -17; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "fNw" = ( /turf/open/floor/plating/warnplate/northeast, /area/sekhmet/shuttles/drop3) +"fNB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -18; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fNX" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/water_filters) +"fOm" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"fOn" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "fOq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8711,11 +13345,22 @@ color = "#8B9490" }, /obj/item/storage/photo_album{ - pixel_y = -1; - pixel_x = -4 + pixel_y = 1; + pixel_x = 6 + }, +/obj/item/clock{ + pixel_x = -5; + pixel_y = -1 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/entry_zone) +"fOT" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "fPb" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8734,6 +13379,15 @@ }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"fPj" = ( +/obj/structure/terminal{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/corsat/squares, +/area/sekhmet/int_reg/engineering) "fPv" = ( /obj/structure/largecrate/supply/floodlights, /obj/structure/machinery/camera{ @@ -8746,9 +13400,68 @@ /area/sekhmet/int_reg/warehouse) "fPz" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/double{ + dir = 8 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"fPH" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) +"fPK" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 10 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) +"fPN" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"fPV" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -10; + pixel_y = 6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"fQe" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 14; + pixel_y = -34 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"fQl" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"fQn" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) +"fQv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 15; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "fQE" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -8762,11 +13475,17 @@ pixel_y = 9 }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"fQL" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "fRj" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -8789,6 +13508,21 @@ /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"fRX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -17; + pixel_y = 21 + }, +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"fSn" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 2; + pixel_y = 28 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "fSx" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -8801,38 +13535,81 @@ pixel_x = -11; pixel_y = 2 }, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "fSF" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/southroad) "fTI" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) +"fUe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -12; + pixel_y = 11 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"fUj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -4; + dir = 8; + pixel_x = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "fUo" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "fUt" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, /obj/item/stool, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"fUE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -17; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fUJ" = ( -/obj/structure/largecrate, +/obj/structure/largecrate/empty{ + layer = 2.9 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"fUP" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fVb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 @@ -8844,16 +13621,35 @@ /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "fVe" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) +"fVx" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -14; + pixel_y = 11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"fVH" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -18; + pixel_y = -21 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -1; + pixel_y = -12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "fVO" = ( /obj/structure/machinery/blackbox_recorder{ name = "blackbox processor" @@ -8873,13 +13669,27 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) +"fVT" = ( +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "fWd" = ( -/turf/open/floor/strata/floor3, +/obj/structure/fence/slim/upp, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "fWg" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"fWu" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "fWC" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8907,26 +13717,53 @@ color = "#8B9490" }, /obj/item/maintenance_jack, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/double{ dir = 4 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) -"fXi" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/temple_outer) "fXn" = ( /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/complex_operation) "fXF" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/gm/coast/west, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 6; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) +"fXV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"fYf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"fYk" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = -3 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southeast_road) "fYo" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "fYr" = ( @@ -8951,42 +13788,95 @@ /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) "fYy" = ( -/obj/structure/reagent_dispensers/tank/fuel, /obj/structure/machinery/light/double{ dir = 4 }, +/obj/structure/reagent_dispensers/tank/fuel/spacecraft, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"fZd" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"fZg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 13; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 2; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 15; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"fZi" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/swamp) "fZo" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - pixel_y = -7 + pixel_y = -2; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 }, -/turf/open/auto_turf/sand_white/layer1, -/area/sekhmet/outside/temple_outer) -"fZr" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = -13; + color = "#865c47"; + icon_state = "flammable_pipe_3"; + pixel_x = -6; + layer = 5 }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"fZr" = ( +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) "fZy" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/alien/weeds/node, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) +"fZC" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"fZQ" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "gab" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/swamp) +"gal" = ( +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"gav" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -17; + pixel_y = -4; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "gaO" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "UPP - Stairway Entry"; colony_camera_mapload = 0; @@ -9006,38 +13896,92 @@ /obj/structure/cargo_container/upp/mid, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"gbh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 14 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "gbt" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, +/obj/structure/platform/metal/strata/east, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/swamp) +"gbQ" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/item/clothing/suit/armor/vest/UPP/alt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) "gbW" = ( /turf/open/floor/kutjevo/grey, /area/sekhmet/int_glass/south_complex) +"gcb" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = -7; + pixel_y = 17 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"gcc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -5; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "gcv" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer3{ + icon_state = "dark_computer_radar1_off" }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"gcG" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -12; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gcL" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator, +/obj/structure/machinery/door/airlock/multi_tile/elevator/brown, /obj/structure/blocker/invisible_wall, /turf/open/floor/corsat, /area/sekhmet/int_reg/comms_lower) "gcR" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 5 - }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southeast_road) +"gcW" = ( +/obj/structure/cargo_container/upp_small/container_9/right, +/turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "gcZ" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 1 + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/floor3, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"gdK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "gdL" = ( /obj/structure/bed{ icon_state = "abed"; @@ -9046,11 +13990,43 @@ /obj/item/book, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) +"gdS" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -16; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "gdZ" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"geo" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_y = -9 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"geM" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -3; + pixel_y = 21 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"geW" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"gfc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gfh" = ( /obj/structure/machinery/camera{ c_tag = "Central Complex - West Hall"; @@ -9060,9 +14036,15 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) +"gfj" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "gfq" = ( -/obj/structure/platform_decoration/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "ggi" = ( /obj/structure/machinery/landinglight{ @@ -9070,6 +14052,10 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"ggk" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ggq" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -9083,10 +14069,12 @@ /area/sekhmet/int_heavy/research) "ggt" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + light_color = "#C02526"; + color = "#C02526"; + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "ggG" = ( /obj/effect/decal/warning_stripes{ @@ -9109,35 +14097,25 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "ghB" = ( -/obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; - pixel_x = 3; - pixel_y = -2 - }, /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "ghR" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, -/obj/structure/flora/jungle/vines/light_1, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "gip" = ( /obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "giq" = ( /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "giF" = ( /obj/effect/decal/warning_stripes{ @@ -9150,6 +14128,12 @@ /obj/structure/reagent_dispensers/tank/water, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"gji" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 16 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "gjA" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/bright_clean2, @@ -9158,11 +14142,28 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) +"gkl" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gko" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 17; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gkq" = ( /turf/open/shuttle/dropship/light_grey_bottom_left, /area/sekhmet/int_reg/ship1) "gkr" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "gkH" = ( @@ -9196,7 +14197,7 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) "gkV" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_intel) @@ -9228,10 +14229,23 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"gld" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "glq" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/item/clothing/accessory/patch/upp/alt, +/obj/item/clothing/mask/gas/upp_pfb{ + pixel_x = 4; + pixel_y = 2 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) "glr" = ( @@ -9240,20 +14254,28 @@ }, /obj/structure/safe, /obj/item/book/codebook/upp, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/science, +/obj/item/device/motiondetector/m717, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_reg/complex_intel) +"gly" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "glA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/alien/weeds/node, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "glX" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "gmh" = ( /obj/structure/surface/rack{ @@ -9265,15 +14287,9 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "gmk" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) "gmF" = ( /obj/structure/surface/table/almayer{ @@ -9286,10 +14302,28 @@ /obj/structure/bed/chair, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) +"gnr" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"gns" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gnz" = ( -/obj/structure/machinery/colony_floodlight, +/obj/structure/machinery/colony_floodlight{ + pixel_x = 3; + pixel_y = 3 + }, /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "gnB" = ( /obj/structure/surface/table/woodentable/poor, @@ -9299,8 +14333,37 @@ name = "I hate BUGS!!!"; desc = "A campaign made to stop the bug menace, the mosquito!!!" }, +/obj/item/paper{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 8; + pixel_x = 7; + pixel_y = -18 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"gnC" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = -4; + pixel_y = -10 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 9; + pixel_y = -11; + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "gnO" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -9317,60 +14380,67 @@ pixel_x = -7; pixel_y = 6 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "gnQ" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - color = "#8B7B5B" - }, -/obj/structure/bookcase{ - icon_state = "book-5"; - color = "#8B7B5B"; - pixel_y = 12 +/obj/item/book/manual/surgery, +/obj/item/book/manual/surgery, +/obj/item/book/manual/surgery, +/obj/item/book/manual/surgery, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5" }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/hosptial) "gnR" = ( -/obj/structure/stairs{ - dir = 8 - }, /obj/structure/platform/metal/shiva, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full"; + color = "#e1d9ce" + }, /turf/open/floor/kutjevo/tan/multi_tiles/east, /area/sekhmet/int_glass/hosptial) +"gnX" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_reg/complex_intel) "gob" = ( -/obj/structure/prop/dam/truck/mining, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown_Cargo_Barrels, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) -"goj" = ( -/obj/effect/decal/cleanable/dirt/alt_dirt, -/turf/closed/wall/rock{ - color = "#a39e99" - }, -/area/sky) "goq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) "gox" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "goI" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "goL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) @@ -9388,7 +14458,7 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "gpj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/entry_zone) "gpl" = ( @@ -9397,6 +14467,13 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/caves/temple) +"gpo" = ( +/obj/structure/cargo_container/kelland/alt/right{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "gpu" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) @@ -9425,8 +14502,10 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) "gpV" = ( -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "gqh" = ( /obj/structure/surface/table/almayer{ @@ -9437,28 +14516,57 @@ pixel_x = 8; pixel_y = -2 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) +"gqH" = ( +/obj/structure/platform_decoration/metal/kutjevo/north, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "gqM" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 11 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"gqP" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "grb" = ( /obj/effect/decal/siding{ icon_state = "siding2" }, /obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/offices) +"grj" = ( +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = 12; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"grk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "grz" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -9471,7 +14579,7 @@ /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "grS" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "grY" = ( /obj/effect/decal/warning_stripes{ @@ -9481,14 +14589,34 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"gse" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "gsu" = ( -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "gtq" = ( /obj/structure/machinery/power/power_generator/reactor/colony, /turf/open/floor/bcircuit, /area/sekhmet/int_reg/engineering) +"gtr" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 10; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -15; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gtx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -9505,6 +14633,25 @@ }, /turf/open/floor/corsat/plate, /area/sekhmet/int_heavy/research) +"gua" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick1{ + pixel_x = -30; + pixel_y = 16; + dir = 1 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -5; + pixel_y = 12; + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "guk" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -9518,7 +14665,7 @@ pixel_x = -8; pixel_y = 12 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "guq" = ( /obj/effect/decal/siding{ @@ -9531,9 +14678,48 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) +"guB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gvb" = ( +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5" + }, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/complex_generic) "gve" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/north_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -2; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -1; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, /area/sekhmet/outside/east_jungle) "gvf" = ( /obj/structure/closet/crate/freezer/cooler{ @@ -9561,14 +14747,44 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"gvQ" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -3; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gwg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 10 + }, +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"gwh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -16 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "gwp" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/shuttles/drop3) "gwr" = ( -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/temple_outer) "gwu" = ( /obj/structure/barricade/metal{ @@ -9592,11 +14808,32 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/structure/curtain{ - pixel_y = 4 +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" }, +/obj/item/reagent_container/hypospray/autoinjector/emergency, /turf/open/floor/plating/plating_catwalk, /area/sekhmet/int_glass/offices) +"gwx" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gwA" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gwH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -9604,28 +14841,69 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/engineering) +"gwW" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"gxi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "gxu" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"gxv" = ( +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gxw" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 13; + pixel_y = -10 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "gxy" = ( /obj/effect/decal/warning_stripes{ icon_state = "door_warning"; dir = 1; pixel_y = 2 }, -/turf/open/floor/strata/multi_tiles/southeast, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "gxQ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"gyv" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "gyG" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "gyI" = ( /obj/structure/platform_decoration/metal/shiva, @@ -9641,29 +14919,77 @@ /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) "gzF" = ( -/obj/structure/platform_decoration/stone/soro/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -13; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "gAj" = ( /obj/structure/reagent_dispensers/tank/fuel/gas, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/yard) +"gAl" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "gAn" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) +"gAB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gAJ" = ( +/obj/structure/flora/wood/stick3{ + dir = 1; + pixel_x = -8; + pixel_y = -9 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "gBu" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"gCh" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 5 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"gCt" = ( +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gCv" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) "gCy" = ( @@ -9678,40 +15004,70 @@ networks_receive = list("Colonist"); networks_transmit = list("Colonist") }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) +"gCJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/central_road) +"gCY" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -12; + pixel_y = 13 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "gDb" = ( /obj/structure/fence/slim/upp, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/central_road) +"gDo" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 15; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gDr" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "gDs" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "gDx" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/gm/coast/west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "gDG" = ( /turf/open/floor/strata/multi_tiles/southwest, @@ -9725,7 +15081,7 @@ pixel_y = 35; pixel_x = -1 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 19 }, /obj/effect/decal/strata_decals/grime/grime1{ @@ -9733,22 +15089,56 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/offices) +"gDW" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gDY" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_heavy/research) "gEt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "door_warning"; - dir = 1; - pixel_y = 2 +/obj/structure/window/framed/shiva/grey, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_glass/complex_generic) +"gEL" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -6; + pixel_y = 15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles/southeast, -/area/sekhmet/int_reg/military_hangar) +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"gEZ" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"gFi" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"gFk" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "gFp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"gFF" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/flora/wood/stick2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gFL" = ( /obj/effect/decal/siding{ icon_state = "siding4" @@ -9756,9 +15146,29 @@ /obj/structure/machinery/power/apc/power/south, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_intel) +"gFW" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) "gGq" = ( /turf/open/floor/filtrationside, /area/sekhmet/int_reg/air_filters) +"gGv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"gGA" = ( +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "gHe" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) @@ -9769,6 +15179,24 @@ /obj/structure/machinery/computer/emails, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) +"gHD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"gIA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 4; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "gIN" = ( /turf/closed/shuttle/ert{ icon_state = "upp16" @@ -9780,13 +15208,59 @@ }, /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/southroad) +"gJj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -18; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gJy" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/flora/wood/stick2{ + pixel_x = -12; + pixel_y = 15 + }, +/obj/structure/flora/wood/stick1{ + dir = 1; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gJz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gJM" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/sekhmet/int_reg/comms_lower) "gKc" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/southeast_road) "gKe" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/gm/coast/beachcorner/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, /area/sekhmet/outside/swamp) "gKk" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -9795,16 +15269,21 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, /area/sekhmet/outside/temple_outer) +"gKn" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gKt" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "gKv" = ( /turf/closed/shuttle/ert{ @@ -9812,20 +15291,82 @@ opacity = 0 }, /area/sekhmet/int_reg/ship1) +"gKX" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 33; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 13; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/flora/wood/stick1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gLb" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/east, +/area/sekhmet/caves/temple) "gLu" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"gMv" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 16; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 3; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gMy" = ( +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/shuttles/drop3) "gME" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) +"gMI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"gMN" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_glass/south_complex) +"gNb" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/garage) "gNu" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "gND" = ( -/obj/structure/window/framed/strata, +/obj/structure/window/framed/shiva/grey, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/yard) "gNO" = ( @@ -9833,7 +15374,7 @@ /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) "gNZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/southwest_complex) "gOr" = ( @@ -9842,7 +15383,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/temple_outer) "gOF" = ( /obj/structure/surface/table/almayer{ @@ -9853,6 +15394,27 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"gOO" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"gOR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"gPs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 14; + pixel_y = -16 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "gPv" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -9867,8 +15429,15 @@ /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "gPT" = ( -/obj/structure/platform/stone/soro/west, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 4; + pixel_y = 20 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "gPU" = ( /obj/structure/surface/table/almayer{ @@ -9889,17 +15458,43 @@ /area/sekhmet/int_reg/complex_operation) "gQf" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "gQJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/closed/wall/strata_outpost, /area/sekhmet/int_heavy/research) +"gQY" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -21; + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"gRc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = -5; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"gRj" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "gRw" = ( /obj/structure/bed/chair/comfy/blue{ - dir = 1 + dir = 1; + layer = 2.4 + }, +/obj/structure/window/reinforced/tinted{ + layer = 3.4 }, -/obj/structure/window/reinforced/tinted, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "gRy" = ( @@ -9939,6 +15534,37 @@ /obj/item/storage/backpack/satchel/med, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) +"gSD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 2; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"gSK" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 32; + layer = 2.9 + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + name = "Emergency Lockdown"; + needs_power = 0; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_heavy/research) +"gSV" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "gSW" = ( /obj/effect/decal/siding{ icon_state = "siding2" @@ -9946,7 +15572,7 @@ /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/offices) "gTa" = ( @@ -9957,18 +15583,19 @@ /area/sekhmet/int_reg/warehouse) "gTc" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "gTo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 1 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "gTK" = ( /obj/structure/barricade/handrail/wire, @@ -9976,8 +15603,13 @@ /area/sekhmet/outside/southeast_road) "gTN" = ( /obj/structure/platform/metal/shiva, -/turf/open/gm/coast/south, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) +"gTQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/sky) "gTU" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -9991,16 +15623,59 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southeast_road) +"gUq" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) +"gUr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) +"gUv" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gUB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "biggarage2"; + name = "Garage Shutters"; + color = "#8B9490"; + dir = 2; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/garage) "gUE" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 8 +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 2; + pixel_y = 12 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "gUJ" = ( /obj/structure/machinery/landinglight, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "gVs" = ( @@ -10017,19 +15692,24 @@ pixel_y = 8; layer = 2.99 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) "gVK" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/caves/west_cave) "gVN" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"gVR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "gVV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -10042,14 +15722,39 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/telecomm/lz2_northeast) "gWX" = ( -/obj/structure/sign/flag/upp{ - pixel_x = -29 +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -9 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, -/area/sekhmet/int_glass/offices) +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gXh" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"gXq" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gXs" = ( -/turf/open/gm/dirt2, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/temple) "gXx" = ( /turf/open/floor/strata/floor2, @@ -10059,12 +15764,15 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/outside/southeast_road) "gXF" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/small_power) "gXT" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" +/obj/structure/cargo_container/kelland/alt/right{ + dir = 8 }, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) @@ -10085,6 +15793,14 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"gYx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = 19 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "gZb" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -10092,6 +15808,21 @@ /obj/effect/spawner/random/tool, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"gZl" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -16; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "gZm" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -10101,11 +15832,17 @@ pixel_x = 18; pixel_y = 9 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "gZN" = ( /obj/structure/platform_decoration/metal/strata/east, -/turf/open/gm/coast/north, +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "gZS" = ( /obj/structure/machinery/computer/telecomms/traffic{ @@ -10129,42 +15866,77 @@ /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "haL" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/structure/machinery/computer/cameras{ - colony_camera_mapload = 0; +/obj/structure/machinery/computer/cameras/colony_camera{ + name = "console"; + pixel_x = 1; + pixel_y = 7; network = list("Sekhmet"); - dir = 8; - layer = 2.96; - pixel_y = 7 + colony_camera_mapload = 0; + dir = 8 }, /obj/structure/machinery/computer/card{ dir = 8; - pixel_y = -6; - layer = 2.97; + pixel_y = -13; desc = "Terminal for programming worker ID card access." }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "hbF" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/southeast_road) +/obj/structure/surface/table/woodentable/poor, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/sign/poster/clf{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/east_jungle) "hbJ" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" +/obj/structure/cargo_container/kelland/alt/left{ + dir = 8 }, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"hbL" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "hbS" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"hbW" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"hcn" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hcq" = ( /obj/structure/machinery/computer/telecomms/server{ density = 1; @@ -10173,6 +15945,13 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) +"hdz" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 2; + pixel_y = -15 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "hdJ" = ( /obj/structure/machinery/light{ light_power = 0.5 @@ -10205,16 +15984,15 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) +"heq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_heavy/research) "hev" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "heY" = ( /obj/effect/decal/warning_stripes{ @@ -10225,7 +16003,7 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "hfA" = ( @@ -10246,10 +16024,24 @@ "hfX" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/swamp) +"hgL" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"hhi" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hhn" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/southroad) "hhx" = ( @@ -10267,7 +16059,7 @@ /obj/item/clipboard{ pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 @@ -10279,27 +16071,25 @@ dir = 8; layer = 3.01 }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - pixel_x = -3; - name = "colonial operations terminal"; - color = "#8B9490" - }, /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/machinery/computer/cameras{ - colony_camera_mapload = 0; - network = list("Sekhmet"); - layer = 3.01; - pixel_y = -1; - pixel_x = -5; - color = "#8B9490" - }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/big_computers/computerdark/computer4{ + icon_state = "dark_computer_mps_off" + }, +/obj/structure/machinery/computer/cameras/colony_camera{ + name = "console"; + pixel_x = -2; + pixel_y = 3; + network = list("Sekhmet"); + colony_camera_mapload = 0; + layer = 3 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "hhJ" = ( @@ -10309,6 +16099,14 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"hiJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_x = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "hiT" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /turf/open/floor/strata/multi_tiles/southwest, @@ -10320,6 +16118,15 @@ /obj/effect/alien/weeds/node, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) +"hjd" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "hjv" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -10341,6 +16148,28 @@ }, /turf/open/floor/interior/plastic/alt, /area/sekhmet/outside/east_jungle) +"hjJ" = ( +/obj/structure/surface/table/woodentable{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle/upp{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/south_complex) +"hjY" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_y = 13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hka" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10350,28 +16179,43 @@ pixel_x = 2 }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) "hkq" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, /turf/closed/wall/strata_outpost/reinforced/hull, /area/sky) -"hkH" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - pixel_x = 5; - pixel_y = 6; - layer = 2.98 +"hky" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 2; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -15; + pixel_y = 14 }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 16; + pixel_y = -3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"hkH" = ( /obj/structure/bed/chair{ buckling_y = 18; dir = 8; pixel_x = -1; pixel_y = 10 }, -/turf/open/gm/dirt, +/obj/structure/cargo_container/horizontal/red/top{ + pixel_x = 5; + pixel_y = 6; + layer = 2.98 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "hli" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "hlj" = ( /obj/structure/machinery/light{ @@ -10380,6 +16224,13 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) +"hlL" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "hlU" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -10394,7 +16245,8 @@ /area/sekhmet/int_reg/complex_operation) "hmi" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth, -/turf/open/gm/dirt, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "hmu" = ( /turf/open/floor/prison/bright_clean2, @@ -10421,25 +16273,34 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/structure/curtain{ - pixel_y = 4 +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" }, /turf/open/floor/plating/plating_catwalk, /area/sekhmet/int_reg/southwest_complex) +"hmQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/int_reg/military_hangar) "hmU" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "hnk" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "hnw" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/south, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "hnD" = ( /obj/structure/prop/structure_lattice{ @@ -10457,26 +16318,25 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) "hnK" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"hnO" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "hnV" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, +/obj/structure/closet, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) "hnZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/sekhmet/int_glass/hosptial) "hoc" = ( /obj/effect/decal/siding{ @@ -10496,6 +16356,19 @@ }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_reg/complex_intel) +"hoe" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hpj" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -12 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "hpm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata/multi_tiles/southwest, @@ -10537,6 +16410,13 @@ /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/south_complex) +"hrh" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "hrR" = ( /obj/structure/closet{ pixel_x = -8; @@ -10554,20 +16434,43 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "hsh" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/air_filters) +"hsm" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/prop/swamp_plants/algae/straight/south, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "hsu" = ( /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/gm/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/central_road) +"hsK" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 18; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hsQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"hsS" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "htF" = ( /obj/structure/surface/table{ color = "#8B7B5B" @@ -10580,7 +16483,7 @@ /area/sekhmet/int_reg/southwest_complex) "htM" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "htW" = ( /turf/open/floor/strata/floor3, @@ -10596,6 +16499,14 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/outside/central_road) +"huB" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/kutjevo/plate, +/area/sekhmet/int_reg/military_hangar) "huJ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -10613,14 +16524,13 @@ /area/sekhmet/int_reg/warehouse) "hva" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southroad) "hvd" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor, /obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor, /turf/open/floor/corsat/marked, /area/sekhmet/outside/southeast_road) "hvh" = ( @@ -10650,6 +16560,15 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/comms_lower) +"hwe" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 14; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hxg" = ( /obj/structure/barricade/handrail/wire, /obj/structure/barricade/handrail/wire{ @@ -10664,14 +16583,38 @@ pixel_y = 5; buckling_y = 5 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"hxN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 11; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hxS" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"hxT" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/east_jungle) +"hym" = ( +/obj/structure/platform/metal/shiva, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hyn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10702,19 +16645,37 @@ /area/sekhmet/int_reg/ship1) "hyA" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/airfield) +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"hyB" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 15; + pixel_y = -11 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "hyJ" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"hzs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -2; + dir = 8; + pixel_x = -2 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "hzt" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "hzC" = ( /obj/structure/bed/chair/comfy/beige{ @@ -10769,17 +16730,34 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "hAG" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) +"hAI" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) "hAW" = ( /obj/structure/sign/safety/bathunisex, /turf/closed/wall/upp_ship, /area/sekhmet/int_reg/complex_operation) +"hBn" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 10 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"hBz" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 12; + pixel_y = 37 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "hBH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -10817,19 +16795,32 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) -"hCi" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +"hBT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 1; + pixel_y = -1 }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"hCa" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"hCi" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "hCj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "hCr" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/north, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "hCs" = ( /turf/closed/shuttle{ @@ -10846,17 +16837,95 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/entry_zone) +"hCW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 2; + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) +"hCX" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) +"hDn" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -21; + pixel_y = -16 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"hDP" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"hDY" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -8; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hEa" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/air_filters) +"hEf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"hEm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hEq" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = -2; + pixel_y = -10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = -19 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "hEu" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) +"hEA" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -11; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hEW" = ( /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/corsat, /area/sekhmet/int_reg/air_filters) "hFd" = ( /obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -10884,26 +16953,39 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) +"hGB" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "hGC" = ( /obj/effect/decal/remains/xeno, /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/temple_outer) "hGF" = ( -/obj/structure/prop/almayer/computers/mapping_computer{ - name = "colonial operations terminal"; - color = "#8B9490"; - pixel_x = -1 - }, /obj/item/prop/tableflag/upp{ pixel_y = 16; pixel_x = -12; anchored = 1 }, +/obj/structure/machinery/big_computers/computerdark/computer2, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) +"hGJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_x = 12; + pixel_y = 8; + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "hGQ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "rsrCargoEntry"; @@ -10914,9 +16996,31 @@ /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) "hGT" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner/north_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"hGW" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -12; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hHl" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/swamp) +"hHu" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/small_power) "hHI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10924,17 +17028,36 @@ /turf/closed/wall/shiva/prefabricated, /area/sekhmet/caves/temple) "hHQ" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/west_cave) +"hIk" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hIw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"hIE" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hIN" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3/east, +/area/space) "hJb" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -10943,16 +17066,44 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) "hJk" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 4 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"hJB" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hJF" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) +"hJH" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"hJU" = ( +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz1_southeast) +"hKj" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 10; + dir = 8; + pixel_x = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "hKm" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -10972,7 +17123,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) "hKK" = ( /obj/structure/machinery/light/double{ @@ -10980,6 +17131,20 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"hKL" = ( +/obj/effect/landmark/queen_spawn, +/obj/effect/alien/weeds/node, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"hKM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "hKU" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/outside/east_jungle) @@ -11011,15 +17176,32 @@ /area/sekhmet/int_glass/hosptial) "hLF" = ( /obj/structure/platform_decoration/metal/almayer, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"hMb" = ( +/obj/structure/machinery/light{ + light_power = 0.5; + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_heavy/research) "hMf" = ( /obj/structure/cargo_container/hd/mid, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"hMj" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"hMH" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) "hNj" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "hNm" = ( /obj/structure/machinery/camera{ @@ -11032,23 +17214,57 @@ /area/sekhmet/int_glass/complex_generic) "hNW" = ( /obj/structure/platform/metal/shiva, -/turf/open/gm/coast/west, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "hNZ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"hOf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -7; + pixel_y = -16; + dir = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "hOt" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/upp_ship/reinforced/outer, -/area/sekhmet/outside/swamp) +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/int_reg/small_power) "hOD" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) +"hPf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 7 + }, +/obj/structure/platform_decoration/metal/strata, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"hPx" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -12; + pixel_y = 22 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -12; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "hPA" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -11062,18 +17278,31 @@ pixel_x = -3 }, /obj/item/storage/pouch/flamertank, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"hPQ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/obj/structure/sign/poster/upp{ + pixel_x = -11; + pixel_y = 35 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "hQh" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -6; + pixel_y = -13 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/central_road) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "hQi" = ( /obj/structure/filtration/machine_96x96/sedimentation, /obj/structure/barricade/handrail/type_b{ @@ -11083,16 +17312,34 @@ /turf/open/floor/filtrationside/southwest, /area/sekhmet/int_reg/water_filters) "hQk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/sign/safety/conference_room{ pixel_x = 33 }, +/obj/effect/decal/siding{ + icon_state = "siding9" + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) "hQv" = ( -/obj/structure/reagent_dispensers/tank/fuel, +/obj/structure/reagent_dispensers/tank/fuel/spacecraft, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"hQy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5.11 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "hQz" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/ship2) @@ -11105,11 +17352,11 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "hQE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_intel) @@ -11120,20 +17367,50 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "hRw" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "hSa" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"hTc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "hTh" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/engineering) +"hTl" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hTn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"hTA" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = 1 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) "hTI" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata, @@ -11142,9 +17419,28 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"hTQ" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -21; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "hUh" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -11156,6 +17452,18 @@ /obj/item/reagent_container/glass/rag/polishing_rag, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"hUr" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "hUF" = ( /obj/structure/closet/secure_closet/hydroponics{ pixel_x = 8 @@ -11163,8 +17471,17 @@ /obj/structure/closet/secure_closet/hydroponics{ pixel_x = -8 }, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/complex_generic) +"hUQ" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 28; + pixel_y = 21 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "hUS" = ( /obj/structure/closet/crate/secure/gear, /turf/open/floor/kutjevo/grey, @@ -11173,7 +17490,7 @@ /turf/open/floor/plating/warnplate/west, /area/sekhmet/shuttles/drop3) "hVA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) @@ -11223,22 +17540,67 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"hWB" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"hWO" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -2; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 16; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "hXm" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) -"hXr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/gm/river/desert/tyrargo/no_slowdown, -/area/sekhmet/int_reg/water_filters) +"hXB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) +"hXE" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "hXK" = ( /obj/structure/cargo_container/hd/left/alt, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"hYg" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"hYq" = ( +/obj/structure/bed/sofa/south{ + desc = "An old rusty ladder"; + icon = 'icons/obj/structures/ladders.dmi'; + icon_state = "ladder11"; + name = "Old Ladder" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "hYS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/sekhmet/int_heavy/research) @@ -11251,13 +17613,19 @@ /obj/structure/machinery/landinglight/delayone{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "hZn" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/complex_generic) +"hZp" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_y = -6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "hZD" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/east_jungle) @@ -11269,8 +17637,28 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "iaB" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/int_glass/complex_generic) +"iaU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5.11 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"ibt" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 4; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ibJ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -11307,9 +17695,25 @@ pixel_x = 22; pixel_y = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) +"idq" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"idB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "idI" = ( /obj/structure/cargo_container/upp/right, /obj/effect/decal/warning_stripes{ @@ -11320,15 +17724,91 @@ "idL" = ( /turf/closed/wall/strata_outpost, /area/sekhmet/outside/southeast_road) +"iec" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_1"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_reg/comms_lower) +"ied" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -2; + pixel_x = 1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "iew" = ( /turf/closed/wall/upp_ship, /area/sekhmet/int_glass/south_complex) +"ieI" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"ieO" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 12; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"ifc" = ( +/obj/structure/machinery/door/airlock/upp/generic/solid/autoname{ + needs_power = 0; + name = "\improper Bolted Airlock"; + emp_proof = 1; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/outside/swamp) +"ifg" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 17; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -11; + pixel_y = 12 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ifo" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ify" = ( /obj/structure/platform_decoration/metal/strata, -/turf/open/gm/dirt, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) +"ifJ" = ( +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_glass/complex_generic) "ifP" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/swamp) "ign" = ( @@ -11341,21 +17821,78 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"igU" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/flora/wood/stick2{ + pixel_x = 14; + pixel_y = -12; + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ihd" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = -20; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/east_jungle) +"ihm" = ( +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) +"ihp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "ihq" = ( /obj/structure/cargo_container/upp/mk6/right, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"ihN" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "ihO" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"iiy" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_reg/ship2) "iiA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_comms) "iiB" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "iiJ" = ( /obj/structure/surface/table/almayer{ @@ -11367,19 +17904,41 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) +"iiL" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "iiM" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) +"iiW" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 4; + pixel_y = -25 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 11; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ijq" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "ijs" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "ijC" = ( /obj/structure/surface/table/almayer{ @@ -11394,9 +17953,18 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) +"ijJ" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ika" = ( /obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "ikX" = ( /obj/structure/surface/table{ @@ -11409,21 +17977,12 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) -"ilc" = ( -/obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/gm/dirt, -/area/sekhmet/outside/airfield) "ilp" = ( /obj/structure/surface/rack{ color = "#6b675e"; layer = 2.79 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/orange_cover, /area/sekhmet/int_reg/comms_lower) "ilu" = ( @@ -11437,24 +17996,60 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"ilz" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1; + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"ilK" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 11; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ime" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "imf" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"imz" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/swamp) "imC" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer3{ + icon_state = "dark_computer_radar1_off" }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) +"imF" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_x = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "imP" = ( -/obj/structure/stairs, /obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/stairs/perspective{ + color = "#79573e"; + icon_state = "p_stair_sn_solo_cap" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) "imZ" = ( @@ -11466,6 +18061,20 @@ }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"inH" = ( +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = -11 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "inP" = ( /obj/structure/machinery/power/smes/buildable{ name = "backup power SMES" @@ -11480,6 +18089,19 @@ /obj/structure/machinery/vending/hydronutrients, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"ipt" = ( +/obj/structure/prop/swamp_plants/algae/full{ + pixel_x = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ipv" = ( +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) "ipE" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /turf/open/floor/strata/multi_tiles/southwest, @@ -11510,15 +18132,46 @@ /turf/open/floor/podhatchfloor, /area/sekhmet/int_reg/complex_operation) "ipT" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, +/obj/structure/shuttle/part/ert/transparent/right_engine, +/turf/open/floor/corsat, /area/sekhmet/int_reg/ship1) "ipU" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) +"iqf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 3; + dir = 8 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"iqj" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 9; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"iqq" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "iqA" = ( /turf/closed/wall/upp_ship/reinforced/outer, /area/sekhmet/outside/swamp) @@ -11529,37 +18182,68 @@ /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/southroad) "iqF" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/shiva/east, /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/central_road) +"irp" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "iry" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"irC" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"irM" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "isf" = ( /turf/closed/wall/strata_outpost, /area/sekhmet/outside/central_road) +"ism" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -2; + dir = 8 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "isC" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "isM" = ( /obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/southeast_road) +"iti" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/airfield) "itG" = ( /turf/closed/wall/upp_ship, /area/sekhmet/int_reg/complex_operation) @@ -11595,28 +18279,32 @@ /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) "iuy" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/west, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "iuz" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) "iuH" = ( -/turf/open/gm/coast/beachcorner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"iuM" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526"; + dir = 1 + }, +/turf/open/floor/strata/floor3, /area/sekhmet/outside/swamp) "iuW" = ( /obj/structure/cargo_container/upp/tan/mid, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "iva" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) "ivL" = ( @@ -11637,13 +18325,20 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "iwf" = ( -/obj/structure/reagent_dispensers/tank/fuel, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/double{ dir = 4 }, +/obj/structure/reagent_dispensers/tank/fuel/spacecraft, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"iwl" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "iwq" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "Complex Security Shutter"; @@ -11654,12 +18349,20 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/complex_operation) +"iwt" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "iwv" = ( /obj/effect/decal/siding/wood_siding{ pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "iwU" = ( /obj/effect/decal/warning_stripes{ @@ -11674,28 +18377,61 @@ /obj/item/explosive/mine, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) +"iwZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = 14 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) "ixp" = ( /obj/structure/platform/metal/strata/east, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick2{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "ixr" = ( /obj/structure/platform/metal/strata/north, -/turf/open/gm/coast/north, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 17; + pixel_y = -17 + }, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) "ixJ" = ( -/obj/structure/platform/stone/soro/east, -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "ixS" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp25" - }, +/obj/structure/shuttle/part/ert/front_right_upp, +/turf/open/floor/corsat, /area/sekhmet/int_reg/ship2) "iyf" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/offices) +"iyj" = ( +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 23; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iyl" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, @@ -11707,6 +18443,20 @@ }, /turf/open/floor/filtrationside/southwest, /area/sekhmet/int_reg/air_filters) +"iys" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -17 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "iyO" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -11725,9 +18475,33 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"iyU" = ( +/obj/structure/largecrate/empty{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "izc" = ( -/turf/open/gm/coast/beachcorner/south_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/flora/wood/stick3{ + dir = 4; + pixel_x = -3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, /area/sekhmet/outside/east_jungle) +"izR" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -15; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "izT" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -11738,6 +18512,26 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"iAe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) +"iAf" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 18; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iAj" = ( /obj/structure/platform/metal/shiva/west, /turf/open/floor/plating/kutjevo, @@ -11746,7 +18540,7 @@ /obj/effect/decal/siding/wood_siding{ pixel_y = 2 }, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "iBk" = ( /obj/structure/machinery/disposal, @@ -11763,41 +18557,82 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "iBK" = ( -/obj/structure/platform/stone/soro/west, -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) "iBO" = ( -/obj/structure/machinery/cm_vending/sorted/walkman, +/obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "iCq" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5"; + pixel_y = 44; + layer = 3.01; + density = 0 + }, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "iCs" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"iCZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "iDc" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/hosptial) "iDd" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/sekhmet/outside/east_jungle) "iDs" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) @@ -11815,6 +18650,20 @@ /obj/structure/machinery/computer3/server/rack, /turf/open/floor/almayer/tcomms, /area/sekhmet/int_reg/complex_comms) +"iDR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 9; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = -13 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "iDS" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -11826,6 +18675,41 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"iEv" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 29; + pixel_y = 31 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"iEz" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"iEC" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 8; + pixel_y = -20 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"iEW" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) "iFg" = ( /obj/structure/bed/chair, /turf/open/floor/strata/multi_tiles/southwest, @@ -11847,21 +18731,78 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/military_hangar) +"iGg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"iGi" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"iGm" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "iGt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"iGA" = ( +/obj/structure/flora/wood/stick1{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "iGM" = ( /obj/structure/bed/chair, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) +"iGR" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"iHf" = ( +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"iHu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -12; + dir = 8; + pixel_x = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "iHY" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/no_slowdown, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "iIo" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/swamp) +"iIq" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iJn" = ( /obj/vehicle/powerloader/jd{ name = "\improper CosmosStal 12 Bogatyr Power Loader"; @@ -11870,6 +18811,28 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"iJp" = ( +/obj/structure/closet/crate/secure/explosives, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/item/explosive/grenade/phosphorus/upp, +/obj/structure/sign/poster/pinup{ + pixel_x = 1; + pixel_y = 34 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/cobweb{ + color = "#aaaaaa" + }, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_x = 11; + pixel_y = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/east_jungle) "iJy" = ( /obj/structure/window/reinforced{ dir = 4 @@ -11880,27 +18843,60 @@ /obj/structure/prop/server_equipment/broken, /turf/open/floor/almayer/tcomms, /area/sekhmet/int_reg/complex_comms) +"iJA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 6; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"iJJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "iJN" = ( /obj/structure/sign/safety/storage{ pixel_x = 7; pixel_y = -24 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) "iJW" = ( -/obj/structure/largecrate, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, +/obj/structure/largecrate/empty, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) "iJY" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/temple) +"iKc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -16; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -12; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -8; + pixel_y = -18 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iKH" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -11908,12 +18904,33 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) +"iKV" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/outside/swamp) "iLb" = ( /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"iLt" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 7; + pixel_y = -24 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "iLO" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"iLT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = 5; + pixel_x = -15 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "iLY" = ( /obj/structure/machinery/door/poddoor/almayer/blended{ name = "Entry Zone Lock"; @@ -11936,11 +18953,22 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) +"iMN" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 26; + pixel_y = 29 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -13; + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "iNA" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "iNP" = ( @@ -11948,7 +18976,7 @@ layer = 3.1; dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "iNZ" = ( @@ -11957,32 +18985,86 @@ layer = 2.79 }, /obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) +"iOd" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"iOt" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iOD" = ( /turf/closed/wall/upp_ship, /area/sekhmet/int_reg/complex_comms) "iOH" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "iOR" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"iOV" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 19; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"iOW" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "iPd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 9 +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -6 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/central_road) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"iPf" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -18; + pixel_y = -2; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"iQm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) "iQu" = ( /obj/structure/prop/ice_colony/surveying_device, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"iQy" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/slippery/hull/dir, +/area/sekhmet/int_reg/catwalk) +"iQR" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iQV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = null; @@ -11995,7 +19077,7 @@ /area/sekhmet/int_heavy/research) "iRa" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/southwest_complex) "iRo" = ( @@ -12005,7 +19087,7 @@ /area/sekhmet/int_heavy/research) "iRD" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "iRF" = ( /obj/effect/decal/warning_stripes{ @@ -12014,11 +19096,15 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "iRH" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil{ + pixel_x = -2; + pixel_y = 7 + }, /obj/item/prop/colony/canister{ - pixel_x = 13; - pixel_y = 14 + pixel_x = 10; + pixel_y = 21 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/garage) "iSq" = ( @@ -12029,7 +19115,7 @@ icon_state = "W" }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) "iTv" = ( /obj/structure/closet/secure_closet/personal{ pixel_x = -7; @@ -12069,21 +19155,23 @@ pixel_x = 6; pixel_y = -3 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) "iTN" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "iTV" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "iTY" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "iUh" = ( /obj/structure/barricade/handrail/wire{ @@ -12102,15 +19190,28 @@ network = list("Sekhmet"); dir = 8 }, +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_x = -2 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "iUA" = ( /obj/effect/decal/siding/wood_siding{ pixel_y = -32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) +"iVa" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iVb" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -12140,9 +19241,24 @@ icon_state = "S"; pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"iVA" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -9; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"iVF" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 25 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "iVO" = ( /obj/structure/largecrate/random/case/small, /obj/structure/largecrate/random/mini/small_case/c{ @@ -12151,6 +19267,14 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"iVU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "iVW" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/machine_32x64/indestructible{ @@ -12159,13 +19283,32 @@ layer = 5 }, /turf/open/floor/elevatorshaft, -/area/sekhmet/outside/temple_outer) -"iWH" = ( -/turf/open/gm/coast/beachcorner/north_east, -/area/sekhmet/outside/airfield) +/area/sekhmet/outside/swamp) +"iVX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"iWE" = ( +/obj/structure/flora/wood/stick2{ + pixel_y = -1; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"iXr" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "iXF" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/airfield) "iXZ" = ( @@ -12174,16 +19317,17 @@ light_range = 4 }, /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "iYL" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/spawner/random/bomb_supply, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) "iYU" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/south_complex) "iZc" = ( @@ -12205,12 +19349,40 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/north, /area/sekhmet/int_reg/water_filters) +"iZx" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -13; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -26; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "iZJ" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/south_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -4 + }, +/obj/structure/flora/wood/stick2{ + pixel_y = 18; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/east_jungle) "iZK" = ( -/turf/open/gm/coast/south, +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_y = 7 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/east_jungle) "iZP" = ( /obj/structure/bed, @@ -12227,27 +19399,32 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) -"iZR" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/sekhmet/outside/airfield) "iZT" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "jab" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "jaf" = ( /obj/effect/decal/remains/xeno, /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) +"jag" = ( +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 5 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "jal" = ( /obj/structure/barricade/handrail/wire{ dir = 1 @@ -12255,15 +19432,27 @@ /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor2, /area/sekhmet/outside/east_jungle) +"jaq" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -7; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jaZ" = ( /obj/item/toy/gun, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "jbb" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "jbz" = ( /obj/effect/landmark/xeno_spawn, @@ -12274,28 +19463,42 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/prison, /area/sekhmet/int_glass/hosptial) +"jcP" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jdk" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "jdB" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "jdI" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) +"jdP" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "jdV" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -12318,6 +19521,28 @@ }, /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) +"jen" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jex" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"jeA" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/flora/wood/stick2{ + pixel_x = -3; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jeX" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -12329,7 +19554,7 @@ }, /obj/item/storage/pouch/construction, /obj/item/clothing/accessory/storage/webbing, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/item/storage/pouch/tools, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) @@ -12342,10 +19567,20 @@ color = "#6b675e"; layer = 2.79 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"jfE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -6; + pixel_y = 5; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "jfF" = ( /turf/closed/wall/upp_ship, /area/sekhmet/int_reg/warehouse) @@ -12360,6 +19595,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) "jfR" = ( @@ -12378,8 +19614,30 @@ /obj/structure/machinery/power/apc/power/south, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) +"jgk" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33; + pixel_x = -1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/complex_generic) +"jgl" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 16; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jhg" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/engineering) "jhz" = ( @@ -12400,15 +19658,16 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) "jja" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "jjj" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "jjy" = ( /obj/structure/barricade/handrail/wire{ @@ -12418,7 +19677,9 @@ /turf/open/floor/kutjevo/multi_tiles/west, /area/sekhmet/outside/central_road) "jjE" = ( -/obj/structure/stairs/perspective/kutjevo, +/obj/structure/stairs/perspective{ + color = "#838a88" + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/central_road) "jjR" = ( @@ -12435,6 +19696,20 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) +"jkN" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_glass/south_complex) +"jkT" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_reg/garage) "jkU" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, /turf/open/floor/strata/floor2, @@ -12443,9 +19718,23 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "jlA" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"jlE" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jlH" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/swamp) "jma" = ( /obj/structure/surface/table/almayer{ @@ -12462,13 +19751,39 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"jmi" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"jmn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"jms" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "jmw" = ( -/obj/structure/largecrate, /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; pixel_x = 16; pixel_y = -8 }, +/obj/structure/largecrate/empty, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southeast_road) "jmz" = ( @@ -12479,17 +19794,33 @@ "jmG" = ( /turf/open/floor/strata/orange_edge/southeast, /area/sekhmet/int_reg/comms_lower) +"jmI" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 23; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jmZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) "jnn" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"jnv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_x = -15 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "joh" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -12502,14 +19833,35 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"jon" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -5; + dir = 8; + pixel_x = 2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "jov" = ( /obj/structure/platform_decoration/metal/shiva, -/turf/open/gm/coast/south, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "joF" = ( /obj/structure/machinery/computer/med_data, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) +"joG" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"joR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "jpb" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -12529,7 +19881,7 @@ /area/sekhmet/outside/east_jungle) "jpn" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "jpp" = ( /obj/effect/decal/warning_stripes{ @@ -12540,11 +19892,20 @@ /area/sekhmet/int_reg/military_hangar) "jpt" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, +/obj/structure/closet/firecloset/upp_full, /turf/open/floor/corsat, /area/sekhmet/int_reg/garage) +"jpx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "jpA" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/kutjevo/grey, @@ -12559,16 +19920,15 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "jpT" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "jqu" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "jqw" = ( /obj/effect/decal/warning_stripes{ @@ -12589,18 +19949,31 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) +"jqK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/south_complex) "jqL" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "jrf" = ( /obj/structure/cargo_container/upp/right, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"jri" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "jrB" = ( /obj/item/device/megaphone{ pixel_x = 7; @@ -12609,8 +19982,35 @@ /obj/structure/machinery/prop/almayer/CICmap/upp, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"jrG" = ( +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"jsO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = -12 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"jtn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = 15; + dir = 6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "jtt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "Administration - Office"; colony_camera_mapload = 0; @@ -12620,24 +20020,36 @@ /area/sekhmet/int_heavy/research) "jtC" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/gm/coast/beachcorner/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, /area/sekhmet/outside/swamp) "jtN" = ( /turf/closed/shuttle/ert{ icon_state = "upp1" }, /area/sekhmet/int_reg/ship2) +"jub" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "jue" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "juu" = ( /obj/structure/machinery/autolathe/full, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) +"juA" = ( +/obj/structure/flora/wood/stick3{ + dir = 8; + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "juN" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "juV" = ( /obj/structure/cargo_container/upp/mk6/mid{ @@ -12651,6 +20063,7 @@ layer = 2.79 }, /obj/item/tool/scythe, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "jwi" = ( @@ -12665,27 +20078,56 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "jwZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"jxg" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 16; + pixel_y = -18 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jxo" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/coast/beachcorner/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, /area/sekhmet/outside/swamp) "jxs" = ( /obj/structure/platform/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"jxu" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 6; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "jxF" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) +"jxI" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -14; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jxO" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -12699,7 +20141,7 @@ /area/sekhmet/int_reg/military_hangar) "jxS" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "jye" = ( /obj/effect/decal/siding, @@ -12707,45 +20149,104 @@ dir = 8; pixel_y = 24 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "jyi" = ( /obj/structure/closet/crate/freezer/cooler, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"jyj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 19; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "jym" = ( /turf/closed/wall/upp_ship, /area/sekhmet/int_glass/offices) +"jyn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"jyq" = ( +/obj/structure/platform/metal/shiva/east, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/southwest_complex) +"jyA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 11; + pixel_y = 3; + dir = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) "jyE" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "jyS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "jyT" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"jzp" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jzD" = ( +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"jAh" = ( +/obj/structure/fence/slim/upp/door, +/turf/open/gm/dirt/swamp_dirt/variant_5, +/area/sekhmet/outside/swamp) "jAk" = ( /obj/structure/cargo_container/upp/mk6/right{ pixel_x = -2 }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"jAE" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2"; + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "jAI" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/temple_outer) "jAP" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "jAR" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, @@ -12754,32 +20255,45 @@ /area/sekhmet/int_reg/telecomm/lz2_northeast) "jBH" = ( /obj/structure/platform_decoration/metal/shiva, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "jBW" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp/corner, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "jCa" = ( /turf/open/floor/interior/tatami, /area/sekhmet/int_reg/complex_intel) +"jCe" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jCi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "jCo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "jCF" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/kutjevo/tan/plate, @@ -12811,8 +20325,19 @@ name = "pen" }, /obj/item/device/megaphone, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"jDv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -9 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "jDX" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/warning_stripes{ @@ -12822,32 +20347,64 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"jEq" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/garage) +"jEy" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jEX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jFe" = ( /obj/structure/closet/crate/ammo, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/platform/metal/shiva/north, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/double/sawn, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) +"jFC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "jFO" = ( +/obj/structure/platform/metal/shiva, /obj/structure/cargo_container/horizontal/blue/bottom{ - color = "#77b300"; pixel_x = 5; - pixel_y = 6 + pixel_y = 6; + layer = 2.98 }, -/obj/structure/platform/metal/shiva, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "jGq" = ( /obj/structure/machinery/prop/almayer/computer{ - pixel_y = 32; - layer = 2.9; - pixel_x = -1 + pixel_y = 29; + pixel_x = -1; + color = "#ffffb3" }, -/obj/structure/prop/almayer/computers/sensor_computer3{ +/obj/structure/machinery/big_computers/computerbrown/computer5{ color = "#ffffb3"; + name = "sensor computer"; + icon_state = "sensor_comp3_off"; pixel_y = 2 }, /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, @@ -12873,9 +20430,27 @@ /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"jHC" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"jHX" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_y = -5 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -14; + pixel_y = 23 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jIj" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "jIq" = ( /obj/structure/barricade/handrail/type_b{ @@ -12885,36 +20460,60 @@ /turf/open/floor/filtrationside/west, /area/sekhmet/int_reg/air_filters) "jID" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"jJi" = ( +/turf/closed/wall/rock{ + color = "#797571" + }, +/area/sekhmet/int_reg/comms_lower) "jJo" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; - can_block_movement = 0; - color = "#8B7B5B" + can_block_movement = 0 }, /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; - can_block_movement = 0; - color = "#8B7B5B" + can_block_movement = 0 }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"jJx" = ( +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) "jJT" = ( -/turf/open/gm/coast/beachcorner2/south_west, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"jJU" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/south_complex) +"jKf" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "jKo" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "jKv" = ( /obj/structure/largecrate/random/barrel/true_random, @@ -12924,7 +20523,7 @@ /obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) "jKF" = ( @@ -12941,7 +20540,7 @@ /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/outside/temple_outer) "jLq" = ( /obj/structure/surface/table/almayer{ @@ -12957,6 +20556,51 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"jLv" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -18 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"jLB" = ( +/obj/structure/bed/sofa/south{ + desc = "An old rusty ladder"; + icon = 'icons/obj/structures/ladders.dmi'; + icon_state = "ladder11"; + name = "Old Ladder"; + pixel_y = 19 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) +"jLG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"jLN" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 3; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jLS" = ( +/obj/structure/flora/wood/stick4{ + dir = 1; + pixel_x = 4; + pixel_y = -11 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "jMn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -12965,7 +20609,7 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "jMw" = ( @@ -12981,14 +20625,28 @@ }, /turf/open/floor/filtrationside/north, /area/sekhmet/int_heavy/research) +"jMx" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"jMG" = ( +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) "jMN" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_intel) -"jNo" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +"jNl" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = 3; + pixel_y = -2 }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"jNo" = ( +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/airfield) "jNC" = ( /obj/effect/decal/warning_stripes{ @@ -13069,12 +20727,24 @@ /area/sekhmet/outside/east_jungle) "jOD" = ( /obj/structure/machinery/door/airlock/hatch/cockpit/upp, -/turf/open/shuttle/black, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship2) +"jPh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) +"jPi" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open_space, +/area/sky) "jPG" = ( /obj/structure/machinery/telecomms/relay/preset/ice_colony{ density = 0; - layer = 6 + layer = 6; + pixel_y = -6 }, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/plating_catwalk/strata, @@ -13085,12 +20755,65 @@ }, /turf/open/floor/strata/red1, /area/sekhmet/int_reg/complex_operation) +"jPR" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 4; + pixel_y = -12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"jQc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/east_jungle) +"jQe" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "jQh" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"jQi" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 19; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jRo" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) +"jRE" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -23; + pixel_y = 12 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "jRI" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -13102,6 +20825,15 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) +"jRU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "jSy" = ( /obj/structure/reagent_dispensers/tank/fuel, /turf/open/floor/corsat, @@ -13130,20 +20862,53 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) -"jTj" = ( -/obj/structure/prop/ice_colony/surveying_device{ - dir = 4 - }, -/turf/open/gm/dirt2, -/area/sekhmet/caves/temple) -"jTw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "cargo" +"jSN" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/surface/rack{ +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"jSQ" = ( +/obj/structure/filingcabinet/wood/chestdrawer{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/filingcabinet/wood/chestdrawer{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, +/obj/structure/machinery/light/blue{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/south_complex) +"jSV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"jTj" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"jTw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/structure/surface/rack{ color = "#6b675e"; layer = 2.79 }, @@ -13152,7 +20917,7 @@ pixel_x = 3; pixel_y = 5 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "jTy" = ( @@ -13171,19 +20936,72 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"jTI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -16; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"jTJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 10 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/east_jungle) +"jTV" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"jUi" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jUp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) +"jUu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -4; + pixel_x = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"jUW" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jVm" = ( /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/gm/coast/west, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "jVt" = ( /obj/structure/largecrate/random/secure, -/turf/open/shuttle/black, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) "jVv" = ( -/obj/structure/reagent_dispensers/tank/fuel, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/reagent_dispensers/tank/fuel/spacecraft, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"jVH" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "jWa" = ( /obj/structure/barricade/handrail/wire{ dir = 1 @@ -13195,12 +21013,35 @@ /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/southroad) "jWo" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/beachcorner2/north_west, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -15; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 19; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 13; + pixel_y = -3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, /area/sekhmet/outside/swamp) +"jWB" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "jWH" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"jXa" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "jXA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -13209,12 +21050,12 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) "jXE" = ( -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) "jXF" = ( /obj/structure/surface/table/almayer{ @@ -13222,16 +21063,27 @@ }, /obj/structure/machinery/computer/secure_data{ dir = 8; - req_access = null + req_access = null; + pixel_y = 5; + layer = 3 }, /obj/structure/barricade/handrail/wire, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"jXK" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick1{ + pixel_x = -3; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "jXW" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/obj/structure/reagent_dispensers/tank/fuel, +/obj/structure/reagent_dispensers/tank/fuel/spacecraft, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "jXZ" = ( @@ -13241,19 +21093,23 @@ /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/yard) "jYe" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - color = "#8B7B5B" - }, -/obj/structure/bookcase{ - icon_state = "book-5"; - color = "#8B7B5B"; - pixel_y = 12 +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5" }, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "jYm" = ( @@ -13284,49 +21140,81 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/structure/curtain{ - pixel_y = 4 +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" }, /turf/open/floor/plating/plating_catwalk, /area/sekhmet/int_reg/complex_operation) "jYC" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/squares, /area/sekhmet/int_reg/engineering) "jZi" = ( -/turf/closed/wall/strata_outpost, +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/outside/swamp) +"jZq" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"jZR" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/swamp) "kah" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"kbb" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 7 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "kbg" = ( -/turf/open/gm/coast/beachcorner2/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, /area/sekhmet/outside/swamp) +"kbk" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open_space, +/area/sky) "kbH" = ( -/turf/open/gm/coast/beachcorner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, /area/sekhmet/outside/east_jungle) +"kbI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "kbS" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/offices) "kcK" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/beachcorner/north_east, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "kcL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "kcN" = ( @@ -13337,18 +21225,36 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/int_glass/complex_generic) +"kdz" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "kdG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "kdU" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"kek" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 9 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"keu" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "kex" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -13377,19 +21283,35 @@ pixel_x = 17; pixel_y = 15 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "kfK" = ( /obj/effect/decal/remains/xeno, /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/temple_outer) +"kfY" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "kgg" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"kgr" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -16; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "kgy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -13403,15 +21325,32 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/prop/power_transformer, /turf/open/floor/greengrid, /area/sekhmet/outside/central_road) +"kgQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "khb" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" +/obj/structure/cargo_container/kelland/alt/right{ + dir = 4 }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"khe" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"khh" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) "khs" = ( /obj/structure/machinery/door/airlock/upp/generic/autoname{ req_access = null; @@ -13421,7 +21360,7 @@ /area/sekhmet/int_reg/military_hangar) "kip" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "kis" = ( /obj/effect/decal/warning_stripes{ @@ -13435,6 +21374,22 @@ "kiw" = ( /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"kiC" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"kiG" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -1; + pixel_y = 13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "kiL" = ( /obj/structure/window/framed/upp_ship, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -13445,6 +21400,10 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/complex_operation) +"kiT" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "kjG" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 @@ -13452,24 +21411,36 @@ /turf/open/floor/filtrationside/northeast, /area/sekhmet/int_reg/air_filters) "kjH" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) +"kjP" = ( +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "kky" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) "kkC" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) -"klo" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +"kkI" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/airfield) +"kkQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = -13 }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"klo" = ( +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/temple_outer) "klL" = ( /obj/structure/closet{ @@ -13486,6 +21457,33 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"kmO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"knl" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"knp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "knF" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -13494,24 +21492,79 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"knG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) +"koI" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -13; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -13; + pixel_y = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"koP" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/water_filters) +"kpJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = 23 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"kpM" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "kpO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt2, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/caves/temple) "kpU" = ( -/obj/structure/curtain, +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" + }, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "kqm" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" - }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/cargo_container/kelland/alt/left{ + dir = 8 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "kqL" = ( @@ -13534,15 +21587,31 @@ "kqO" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/southroad) +"kqZ" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/swamp) "krx" = ( /obj/structure/barricade/handrail/wire{ dir = 1 }, /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/central_road) +"krE" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 13; + pixel_y = 8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "krQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "krY" = ( /obj/structure/barricade/handrail/wire, @@ -13559,12 +21628,51 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"ksu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 8; + pixel_y = -9 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/airfield) +"ksw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -8; + pixel_y = -22 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ksx" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_glass/south_complex) "ksB" = ( -/turf/open/gm/coast/beachcorner/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"ktg" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "ktt" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "ktz" = ( /obj/structure/closet{ @@ -13598,28 +21706,52 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) "ktO" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) "kuk" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) +"kuq" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -27; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "kuu" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -7; + pixel_y = 5 + }, /obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "kuQ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/sky) +"kvd" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -12; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 7; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "kvj" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 3.01 }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/kutjevo/plate, @@ -13629,13 +21761,28 @@ /turf/open/floor/plating/warnplate/west, /area/sekhmet/shuttles/drop3) "kvB" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"kvM" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_heavy/research) "kvV" = ( /obj/structure/dropship_equipment/fulton_system, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"kvZ" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/complex_generic) "kwI" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -13643,8 +21790,20 @@ }, /obj/effect/spawner/random/tool, /obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"kwL" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 13; + pixel_y = 41 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "kwM" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -13654,7 +21813,7 @@ layer = 2.98 }, /obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "kxb" = ( /obj/structure/surface/rack{ @@ -13700,15 +21859,9 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) "kxL" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "kxV" = ( /obj/structure/bed/chair{ @@ -13717,10 +21870,14 @@ pixel_x = 4; pixel_y = -2 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"kyD" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "kzt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) @@ -13730,6 +21887,47 @@ opacity = 0 }, /area/sekhmet/int_reg/ship1) +"kzK" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) +"kzV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_x = -11; + pixel_y = 35 + }, +/obj/structure/sign/poster/upp{ + pixel_x = -2; + pixel_y = 32 + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_reg/water_filters) +"kzZ" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 9; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_y = 16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kAy" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "kAI" = ( /obj/structure/surface/table{ color = "#8B7B5B" @@ -13742,34 +21940,55 @@ name = "pen" }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 + }, +/obj/structure/sign/banners/upp_flag{ + pixel_y = 30; + can_block_movement = 0; + pixel_x = 1; + layer = 2.9 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) +"kBg" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/prop/swamp_plants/algae/straight, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "kBT" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1; dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "kCi" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"kCs" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 1; + pixel_y = -18 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "kCv" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "kCV" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/swamp) "kCX" = ( /obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "kDH" = ( /obj/structure/largecrate/random/case/small, @@ -13777,9 +21996,33 @@ pixel_x = 4; pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"kDI" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 16; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kDZ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "kEa" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -13790,10 +22033,50 @@ }, /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/central_road) +"kEe" = ( +/obj/structure/prop/ice_colony/surveying_device{ + dir = 4 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"kEu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = -7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"kEK" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/complex_operation) +"kET" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/central_road) "kEW" = ( -/obj/structure/platform_decoration/stone/soro/east, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"kEZ" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/southwest_complex) "kFa" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -13805,21 +22088,42 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/hosptial) +"kFd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) "kFf" = ( /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/southwest_complex) "kFg" = ( /obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"kFk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 16; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "kFo" = ( -/obj/structure/platform/stone/soro, -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "kFr" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) "kFt" = ( @@ -13833,11 +22137,29 @@ "kFA" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) +"kFE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 5; + dir = 8; + pixel_x = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"kFN" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 1; + dir = 8; + pixel_x = 4 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "kGe" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -13848,10 +22170,13 @@ pixel_x = -7; pixel_y = 9 }, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) "kGi" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "kGR" = ( /obj/structure/machinery/computer/telecomms/server{ @@ -13868,9 +22193,9 @@ /turf/open/slippery/hull, /area/sky) "kHg" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "kHD" = ( /obj/structure/surface/table/almayer{ @@ -13887,17 +22212,104 @@ /area/sekhmet/int_heavy/research) "kHH" = ( /obj/structure/platform_decoration/metal/kutjevo/west, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "kIC" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"kIK" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/east_jungle) +"kIV" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_glass/south_complex) +"kJu" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kJx" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -17; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kJK" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/fence/slim/upp/door, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "kJY" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/north_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"kKu" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 8; + pixel_y = -24 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 15; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -4; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kKR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 12; + pixel_y = 11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"kLa" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "kLl" = ( /turf/closed/shuttle/elevator{ @@ -13905,25 +22317,70 @@ }, /area/sekhmet/int_reg/military_hangar) "kLq" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"kLw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"kLO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -7; + dir = 8; + pixel_x = 3 + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "kLT" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "kMe" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/air_filters) "kMs" = ( -/turf/open/gm/coast/north, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/outside/swamp) "kMJ" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/air_filters) +"kMM" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"kNe" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/complex_intel) +"kNE" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"kNR" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "kNS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "rsrHangarRepair"; @@ -13939,27 +22396,90 @@ icon_state = "psychbed" }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/sekhmet/int_glass/hosptial) +"kOa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "kOe" = ( /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/telecomm/lz2_northeast) "kOn" = ( -/obj/structure/fence, /obj/structure/blocker/invisible_wall, +/obj/structure/fence/dark/warning, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/yard) +"kOv" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "kOw" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) +"kOz" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1; + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "kOU" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/shuttles/drop3) +"kPu" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "kPE" = ( -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) +"kPK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = -6; + pixel_y = -13 + }, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"kQc" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"kQt" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 2; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kQI" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "kQO" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1; @@ -13970,7 +22490,6 @@ pixel_y = 18 }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/multi_tiles/southwest, @@ -13980,10 +22499,36 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) "kRb" = ( -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"kRc" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) +"kRB" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"kRE" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/temple_outer) +"kRG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/central_road) "kRL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) @@ -13992,9 +22537,16 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"kRT" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) +"kSg" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/outside/temple_outer) "kSu" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -14008,11 +22560,22 @@ pixel_y = 12 }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"kSX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/item/clothing/suit/armor/vest/UPP, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_heavy/research) +"kTc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/caves/temple) "kTF" = ( /obj/item/prop/colony/canister{ pixel_x = 1; @@ -14027,18 +22590,42 @@ /area/sekhmet/int_reg/yard) "kTG" = ( /obj/structure/platform_decoration/metal/shiva, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "kUr" = ( -/obj/structure/prop/almayer/computers/sensor_computer2{ - color = "#8B9490"; - name = "colonial operations terminal" +/obj/structure/machinery/big_computers/computerblack/computer4{ + name = "colonial operations terminal"; + icon_state = "blacksensor_comp2_off" }, /obj/structure/machinery/computer3{ pixel_y = 21 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"kUs" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/sekhmet/int_heavy/research) +"kVQ" = ( +/obj/effect/decal/floor_symbol/upp/northface/north{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "kWa" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -14053,6 +22640,20 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"kWd" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -11; + pixel_y = 8 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"kWr" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 14; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "kWJ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -14066,25 +22667,72 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"kWR" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) "kWZ" = ( -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"kXf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -17; + pixel_y = -22 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "kXg" = ( /obj/structure/platform/metal/strata/east, -/turf/open/gm/coast/beachcorner/north_east, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"kXF" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -18; + pixel_y = 16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, /area/sekhmet/outside/swamp) "kXM" = ( /obj/structure/machinery/vending/walkman, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/hosptial) "kYE" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access, -/turf/open/floor/corsat/marked, -/area/sekhmet/int_heavy/research) +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) +"kZn" = ( +/obj/structure/prop/swamp_plants/algae/full{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "kZx" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) "lap" = ( @@ -14094,12 +22742,38 @@ /obj/item/storage/briefcase/inflatable, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"lat" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -1; + pixel_y = -13 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"law" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/sekhmet/outside/southeast_road) "laF" = ( /obj/structure/machinery/light/double{ dir = 4 }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"laG" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "laP" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -14132,6 +22806,14 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/yard) +"lbl" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -1 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "lbA" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -14161,12 +22843,14 @@ pixel_y = -22; dir = 1 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "ldp" = ( -/obj/structure/stairs{ +/obj/structure/stairs/perspective{ + color = "#838a88"; dir = 8 }, +/obj/structure/platform/metal/almayer, /turf/open/floor/kutjevo/grey, /area/sekhmet/shuttles/drop3) "ldu" = ( @@ -14182,10 +22866,72 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"ldx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/item/clothing/mask/gas/upp_pfb, +/obj/item/clothing/mask/gas/upp_pfb, +/obj/item/clothing/mask/gas/upp_pfb, +/obj/item/clothing/mask/gas/upp_pfb, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/entry_zone) "ldC" = ( -/obj/structure/largecrate, +/obj/structure/largecrate/empty, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"ldP" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) +"led" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"leh" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/military_hangar) +"lez" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.01 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"lfn" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -15; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lfx" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "lfE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -14195,10 +22941,21 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "lfU" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"lgc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "lgD" = ( /obj/structure/bed/chair{ dir = 4 @@ -14207,7 +22964,7 @@ /area/sekhmet/int_heavy/entry_zone) "lhd" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/west, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "lhe" = ( /obj/structure/machinery/power/apc/power/north, @@ -14219,14 +22976,54 @@ /area/sekhmet/int_heavy/research) "lho" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, +/obj/structure/machinery/recharge_station, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"lhy" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lhz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"lhQ" = ( +/obj/structure/largecrate/supply/supplies/mre/upp, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_glass/south_complex) +"lib" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.01 + }, +/turf/open/floor/kutjevo/plate, +/area/sekhmet/outside/swamp) "lid" = ( -/turf/open/gm/coast/west, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = 7; + pixel_y = -14 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"lio" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "ljc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -14234,6 +23031,14 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"ljg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 1; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ljn" = ( /obj/structure/closet/crate/ammo, /obj/item/fuel_cell, @@ -14263,8 +23068,11 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) "lke" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "lko" = ( /obj/structure/bed/chair{ @@ -14289,36 +23097,128 @@ }, /turf/open/floor/interior/plastic/alt, /area/sekhmet/caves/temple) +"lkE" = ( +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lle" = ( -/obj/structure/largecrate, -/turf/open/gm/dirt2, +/obj/structure/largecrate/empty, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) +"lly" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick1{ + dir = 1; + pixel_x = 8; + pixel_y = 17 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 10; + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "llU" = ( /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) +"lmg" = ( +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) +"lmj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 9 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -13; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lmv" = ( /obj/item/device/flashlight/lamp/tripod/grey{ light_power = 0.3; light_range = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"lmA" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lmF" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"lmV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = 19 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"lmX" = ( +/obj/item/holder/rat/brown, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/prop/tyrargo/boards/boards_2{ + dir = 4; + pixel_y = -25; + layer = 2.1; + pixel_x = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/east_jungle) "lnu" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southeast_road) "lnB" = ( -/obj/structure/stairs/perspective/kutjevo, -/turf/open/gm/dirt, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/southroad) +"lnG" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"lnH" = ( +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "lnV" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/obj/structure/flora/jungle/vines/light_1, /obj/structure/machinery/light/small, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/swamp) "lnY" = ( /obj/effect/decal/warning_stripes{ @@ -14329,9 +23229,25 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) +"loH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southeast_road) +"loW" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "loX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -14339,6 +23255,12 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"lpa" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "lpp" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) @@ -14351,6 +23273,22 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) +"lpw" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lpy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/military_hangar) "lpJ" = ( /obj/structure/closet/secure_closet/personal{ pixel_x = -7; @@ -14373,7 +23311,7 @@ }, /obj/item/clothing/head/uppcap/peaked/police, /obj/item/clothing/head/uppcap/peaked/police, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) "lqq" = ( @@ -14384,12 +23322,27 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "lqt" = ( -/turf/open/gm/coast/beachcorner2/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"lrn" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "lrG" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_x = -4 + }, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) +"lrH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -9 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "lss" = ( /turf/open/floor/corsat, /area/sekhmet/int_reg/air_filters) @@ -14397,22 +23350,27 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) "lsz" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/water_filters) +"lsA" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lsG" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/central_road) "lth" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) @@ -14423,6 +23381,19 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/engineering) +"lto" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 1; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -5; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ltz" = ( /obj/structure/machinery/door_control{ pixel_x = 24; @@ -14430,6 +23401,17 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) +"ltG" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 9; + pixel_x = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "ltJ" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/decal/warning_stripes{ @@ -14461,7 +23443,7 @@ pixel_x = 7; pixel_y = 26 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) @@ -14481,8 +23463,7 @@ "luG" = ( /obj/structure/largecrate/random/barrel/true_random, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) @@ -14525,6 +23506,12 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"lvC" = ( +/obj/structure/machinery/door/airlock/multi_tile/upp/sec/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/complex_operation) "lvU" = ( /obj/structure/terminal{ dir = 4 @@ -14551,6 +23538,21 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"lwv" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -2; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"lwO" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lxl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "papgarage"; @@ -14561,6 +23563,14 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/complex_operation) +"lxG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -3; + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "lxK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -14569,8 +23579,47 @@ icon_state = "N"; pixel_y = 2 }, +/obj/structure/machinery/sensortower{ + layer = 6; + pixel_x = 5; + pixel_y = -10; + density = 0 + }, /turf/open/floor/greengrid, /area/sekhmet/outside/central_road) +"lxS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 2; + dir = 8; + pixel_x = -1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"lyi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -5; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"lyG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/space) +"lyJ" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/southwest_complex) "lyM" = ( /obj/structure/barricade/metal{ dir = 8; @@ -14593,8 +23642,11 @@ /obj/structure/toilet{ pixel_y = 8 }, -/obj/structure/curtain{ - pixel_y = 4 +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" }, /turf/open/floor/plating/plating_catwalk, /area/sekhmet/int_glass/complex_generic) @@ -14610,11 +23662,15 @@ /area/sekhmet/int_heavy/research) "lzB" = ( /obj/structure/cargo_container/canc/tan/mid, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) +"lzI" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open_space, +/area/sky) "lzJ" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "lzP" = ( /obj/item/stool{ @@ -14627,6 +23683,14 @@ /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/water_filters) +"lAF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -4; + pixel_x = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "lAV" = ( /obj/structure/machinery/smartfridge/chemistry, /obj/structure/platform/metal/shiva/east, @@ -14643,6 +23707,19 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"lBo" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/southroad) +"lCt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 3; + dir = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "lCC" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -14651,29 +23728,51 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"lCJ" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) +"lDm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) +"lDv" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "lDM" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" }, /obj/item/tool/pen/clicky, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "lDQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp/corner, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"lDS" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 1 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) "lEd" = ( /turf/open/slippery/hull/dir, /area/sky) "lEH" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/gm/coast/west, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "lER" = ( /obj/structure/cargo_container/upp/mk6/left{ @@ -14697,6 +23796,15 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/corsat, /area/sekhmet/int_reg/engineering) +"lFg" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -19; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "lFB" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -14726,8 +23834,17 @@ /obj/structure/window/reinforced/tinted{ layer = 4.01 }, +/obj/item/attachable/bayonet/upp, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) +"lGf" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 1; + pixel_y = -16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lGA" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = 29; @@ -14736,9 +23853,13 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) +"lGJ" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "lGP" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) @@ -14757,8 +23878,8 @@ }, /area/sekhmet/int_reg/ship2) "lHJ" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff"; +/obj/structure/cargo_container/kelland/alt/right{ + pixel_x = -5; pixel_y = 6 }, /turf/open/floor/strata, @@ -14768,12 +23889,50 @@ /obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"lIb" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) +"lIf" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lIg" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lIk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -9; + dir = 8; + pixel_x = 2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"lIt" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "lIB" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) "lID" = ( /obj/structure/surface/table/almayer{ @@ -14786,8 +23945,10 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "lIG" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "lIM" = ( /turf/closed/shuttle/ert{ @@ -14800,7 +23961,7 @@ /area/sekhmet/int_glass/hosptial) "lIU" = ( /obj/item/tool/warning_cone, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "lIV" = ( @@ -14810,25 +23971,46 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"lJh" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lJs" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 8; - pixel_x = -8; +/obj/effect/decal/hybrisa/dirt, +/obj/structure/filingcabinet/wood/chestdrawer{ can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + pixel_x = -10 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"lJt" = ( +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 8; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3/east, +/area/space) "lJM" = ( /obj/item/stool, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"lJP" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/barricade/sandbags{ + dir = 8; + color = "#a98c7c" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "lKb" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -14851,12 +24033,33 @@ }, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) +"lKe" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_y = 7 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "lKq" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/warehouse) +"lLx" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lLB" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"lLU" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/flora/wood/stick1{ + pixel_x = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lLV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "wrehouse2"; @@ -14872,7 +24075,7 @@ dir = 1 }, /obj/effect/alien/weeds/node, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "lMr" = ( /obj/structure/closet/crate/freezer/cooler{ @@ -14898,10 +24101,10 @@ pixel_y = -6; pixel_x = 7 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "lMt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -14909,10 +24112,14 @@ /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) "lMz" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/southroad) +"lMC" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 34 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "lMJ" = ( /obj/structure/machinery/light/small{ light_color = "#C02526"; @@ -14923,12 +24130,18 @@ /area/sekhmet/int_reg/air_filters) "lNs" = ( /obj/structure/platform_decoration/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"lNB" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lNQ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/item/clothing/suit/armor/vest/UPP, /obj/item/prop/magazine/book{ desc = "A copy of La Fumée, a UPP magazine that mostly circulates in its French-influenced territories, though this particular print has been translated to reach a wider audience. On the cover is a stylized depiction of a deadman's head with white antlers growing out the sides."; name = "La Fumée, Vol. 4 No. 15"; @@ -14939,9 +24152,8 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) "lOt" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer1{ + icon_state = "dark_computer_radar_off" }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/engineering) @@ -14955,17 +24167,41 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"lOP" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_glass/complex_generic) +"lPb" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "lPj" = ( /obj/structure/machinery/colony_floodlight, +/obj/effect/abstract/ripple/shadow, /turf/open/floor/strata/floor3, /area/sekhmet/outside/swamp) +"lPm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -8; + pixel_y = 17 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "lPq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) +"lPJ" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/east, +/area/sekhmet/outside/swamp) "lPO" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; @@ -14988,15 +24224,17 @@ /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/comms_lower) "lQA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "lQG" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "lQT" = ( /obj/effect/decal/warning_stripes{ @@ -15004,6 +24242,36 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"lQU" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -16; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lRf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 14; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lRg" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -9; + pixel_y = -14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"lRs" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -19; + pixel_y = -1 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "lRz" = ( /obj/structure/machinery/light/small{ light_color = "#C02526"; @@ -15071,12 +24339,16 @@ /area/sekhmet/int_glass/complex_generic) "lSt" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "lSB" = ( -/obj/structure/platform/stone/soro/west, -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "lSE" = ( /obj/effect/decal/warning_stripes{ @@ -15093,7 +24365,11 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "lTn" = ( -/turf/open/gm/coast/west, +/obj/structure/flora/wood/stick1{ + pixel_x = -10; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/east_jungle) "lTr" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, @@ -15101,8 +24377,39 @@ /area/sekhmet/int_reg/engineering) "lTE" = ( /obj/structure/platform_decoration/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) +"lTI" = ( +/obj/structure/cargo_container/upp_small/container_9/left, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) +"lTT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"lUi" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -14; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 14; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 5; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lUr" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "lUB" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/hosptial) @@ -15110,27 +24417,27 @@ /turf/open/floor/kutjevo/multi_tiles/west, /area/sekhmet/outside/southeast_road) "lVB" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) "lVJ" = ( /obj/effect/decal/siding/wood_siding{ pixel_y = -32 }, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) "lVQ" = ( /obj/structure/machinery/light{ @@ -15143,6 +24450,15 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"lWh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "lWm" = ( /obj/structure/window/framed/strata, /turf/open/floor/plating/kutjevo, @@ -15152,19 +24468,64 @@ pixel_y = 29; layer = 3.51 }, -/obj/structure/surface/table/reinforced/cloth, -/obj/item/attachable/bayonet/upp, +/obj/item/attachable/bayonet/upp{ + pixel_y = 2 + }, +/obj/structure/surface/table/reinforced/cloth{ + color = "#394c6b" + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle/upp{ + pixel_x = -4; + pixel_y = 8 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) +"lXW" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -12; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 9; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lYf" = ( /obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/yard) +"lYn" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "lYR" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"lYX" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"lYY" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "lZd" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/southwest_complex) @@ -15176,35 +24537,54 @@ pixel_x = 8; pixel_y = 1 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/offices) "lZu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 15 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata/multi_tiles/southwest, -/area/sekhmet/int_heavy/research) +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) +"lZT" = ( +/obj/item/clothing/mask/gas/upp_pfb, +/turf/open/floor/interior/plastic/alt, +/area/sekhmet/caves/temple) "mas" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/metal/almayer/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/shuttles/drop3) +"maC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 29 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "maD" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/int_glass/complex_generic) +"mbe" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "mbf" = ( /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "mbv" = ( /obj/structure/bed/chair/comfy/beige, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "mbW" = ( @@ -15218,12 +24598,35 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"mcn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -15; + pixel_y = 11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"mcs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = 17 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "mcA" = ( /obj/vehicle/train/cargo/engine{ dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"mcH" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -14; + pixel_y = 26 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "mcQ" = ( /obj/structure/machinery/optable, /obj/structure/sink{ @@ -15258,23 +24661,37 @@ /turf/open/floor/interior/plastic/alt, /area/sekhmet/caves/temple) "mdC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) "mdS" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "meY" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/fake/handrail/kutjevo, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"mfi" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = -9 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "mfv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -15285,6 +24702,39 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_operation) +"mfz" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"mfR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mfV" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mga" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"mgk" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = 2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "mgu" = ( /obj/structure/machinery/power/apc/power/east, /turf/open/floor/prison/sterile_white, @@ -15306,7 +24756,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "mgP" = ( @@ -15317,7 +24767,7 @@ pixel_y = 31; layer = 2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "mgR" = ( /turf/closed/wall/shiva/prefabricated, @@ -15330,6 +24780,13 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"mhg" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "mhk" = ( /obj/structure/barricade/handrail/wire{ layer = 3.01 @@ -15342,14 +24799,19 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "mhv" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"mih" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "miq" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "miR" = ( /obj/structure/machinery/cryo_cell, @@ -15367,6 +24829,53 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"mji" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"mjk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mjy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -18 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"mjB" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 19 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "mkd" = ( /obj/item/clothing/gloves/yellow, /obj/item/clothing/head/welding{ @@ -15378,14 +24887,51 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) +"mkr" = ( +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/central_road) +"mkC" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "mkN" = ( -/turf/open/gm/coast/beachcorner/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"mkQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"mlo" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mlB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 10; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "mma" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "mmb" = ( /obj/effect/decal/warning_stripes{ @@ -15395,11 +24941,23 @@ /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "mmw" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/airfield) +"mnc" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 14; + pixel_y = 2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mne" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -15410,22 +24968,52 @@ /area/sekhmet/int_heavy/research) "mnf" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"mnp" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mnA" = ( /turf/closed/wall/wood, /area/sekhmet/outside/east_jungle) +"mnZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"moh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 1; + pixel_y = 7 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -28; + pixel_y = 6; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/caves/temple) "mox" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "moY" = ( /obj/structure/machinery/door_control{ @@ -15439,7 +25027,7 @@ /obj/structure/machinery/landinglight{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "mpd" = ( @@ -15448,10 +25036,10 @@ layer = 2.79 }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) "mpj" = ( @@ -15466,6 +25054,23 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/complex_generic) +"mqv" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -4; + pixel_y = 1; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"mqy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 2; + dir = 10 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "mqT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -15475,32 +25080,54 @@ }, /obj/structure/machinery/disposal, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "mqV" = ( /obj/structure/machinery/prop/almayer/computer{ pixel_y = 32; - layer = 2.9; - pixel_x = 9 - }, -/obj/structure/prop/almayer/computers/sensor_computer2{ + pixel_x = 9; color = "#ffffb3"; - pixel_y = 2 + layer = 3.01 }, /obj/structure/machinery/prop/almayer/computer{ pixel_y = 32; - layer = 2.9; - pixel_x = -10 + pixel_x = -10; + color = "#ffffb3"; + layer = 3.01 + }, +/obj/structure/machinery/big_computers/computerbrown/computer4{ + icon_state = "sensor_comp2_off"; + color = "#ffffb3"; + name = "sensor computer"; + pixel_y = 2 }, /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship2) +"mrk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -10; + dir = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) "mro" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating/warnplate/northwest, /area/sekhmet/shuttles/drop3) +"mrB" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/slippery/hull/dir/southwest, +/area/sekhmet/int_reg/catwalk) "mrO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/drinkingglasses{ @@ -15530,20 +25157,57 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"mrW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 13; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"msu" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = -16 + }, +/obj/structure/flora/wood/stick1{ + dir = 1; + pixel_x = -17; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "msA" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "msM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/south_complex) "msN" = ( -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, /area/sekhmet/outside/east_jungle) +"msO" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 9; + pixel_y = -7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "msQ" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) "mtm" = ( @@ -15553,6 +25217,18 @@ "mtu" = ( /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/ship2) +"mtF" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 16; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mtL" = ( /obj/item/prop/tableflag/upp{ pixel_x = -7; @@ -15565,15 +25241,38 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"mub" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mui" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"muu" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"muQ" = ( +/obj/effect/decal/floor_symbol/upp/northface/southwest{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "mvM" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "mvY" = ( /obj/effect/decal/warning_stripes{ @@ -15583,17 +25282,29 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "mwq" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/military_hangar) +"mwr" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "mws" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) "mwV" = ( /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"mxf" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/catwalk) "mxp" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -15602,22 +25313,32 @@ pixel_x = -1; pixel_y = 3 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "mxA" = ( /obj/structure/platform/metal/shiva, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "mxJ" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/sekhmet/int_reg/military_hangar) +"mxK" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "mxU" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"mye" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) "myi" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 @@ -15626,23 +25347,60 @@ /area/sekhmet/int_heavy/research) "myV" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swampalt_dirt/layer1, /area/sekhmet/caves/south_cave) +"mzv" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 18; + pixel_y = 13 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"mzF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -8 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"mAa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -8; + pixel_y = 14 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "mAm" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "mAu" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"mAv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "mAK" = ( /obj/structure/closet{ pixel_x = -8; @@ -15658,16 +25416,43 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "mBh" = ( -/obj/structure/platform_decoration/stone/soro/north, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) "mBr" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "mBF" = ( -/turf/open/gm/coast/south_east, -/area/sekhmet/outside/temple_outer) +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -15; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"mCF" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/case/small, +/obj/item/stack/sheet/plasteel/small_stack, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/complex_intel) +"mCX" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "mCY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -15678,17 +25463,58 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"mDg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "mDI" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "mEt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"mEu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_reg/complex_operation) +"mEv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = -16 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"mEx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"mEP" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mFc" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mFr" = ( /obj/structure/bed/chair/vehicle{ pixel_x = 8; @@ -15722,8 +25548,16 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"mFQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "mGj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/disposal, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) @@ -15734,25 +25568,68 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"mHc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"mHi" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mHn" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "mHP" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/hosptial) +"mID" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mII" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "mIP" = ( /obj/structure/morgue/crematorium, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/hosptial) "mIV" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"mJv" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/south_complex) +"mJy" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "mJJ" = ( /obj/structure/machinery/telecomms/relay/preset/ice_colony{ density = 0; @@ -15768,7 +25645,7 @@ /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "mJY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "mJZ" = ( @@ -15776,13 +25653,50 @@ color = "#6b675e"; layer = 2.79 }, -/obj/effect/spawner/random/bomb_supply, /obj/effect/landmark/objective_landmark/close, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/condensed_milk{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/condensed_milk{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/condensed_milk{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/condensed_milk{ + pixel_x = -5; + pixel_y = 13 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) +"mKm" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) "mKr" = ( /turf/closed/wall/upp_ship, /area/sekhmet/outside/swamp) +"mKI" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 10; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mKL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/enzyme{ @@ -15799,6 +25713,35 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"mKO" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/caves/temple) +"mKU" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 6 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"mKV" = ( +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty"; + layer = 5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/swamp) "mMa" = ( /obj/structure/bed/chair{ dir = 4 @@ -15810,43 +25753,51 @@ /area/sekhmet/int_heavy/research) "mMd" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/gm/coast/beachcorner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/swamp) "mMe" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/sekhmet/int_glass/hosptial) "mMl" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"mMu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -4; + dir = 8; + pixel_x = -3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"mMN" = ( +/obj/structure/shuttle/part/ert/front_right_upp, +/turf/open/floor/corsat, +/area/sekhmet/int_reg/ship1) "mMS" = ( /obj/structure/platform_decoration/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "mNh" = ( /turf/open/floor/corsat/marked, /area/sekhmet/int_glass/hosptial) "mNn" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/double{ dir = 4 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "mNo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 6 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/east_jungle) +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) "mNB" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -15855,7 +25806,7 @@ /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "mND" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door_control/brbutton/alt{ name = "Entry Zone Inner Access"; @@ -15865,20 +25816,25 @@ }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) +"mNF" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/sekhmet/int_heavy/research) "mNH" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 14; - can_block_movement = 0; - opacity = 0 - }, /obj/item/book/manual/surgery{ icon_state = "book_tan"; color = "#8B9490" }, /obj/item/prop/magazine/book/theartofwar, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bookcase/wood{ + pixel_y = 13; + can_block_movement = 0; + icon_state = "woodbook-5" + }, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/paperwork, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "mNJ" = ( @@ -15891,20 +25847,76 @@ /area/sekhmet/int_reg/comms_lower) "mOe" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "mOC" = ( /obj/structure/sign/safety/water{ pixel_x = -18 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"mOW" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -17; + pixel_y = -4; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"mPb" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mPj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mPs" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 3.01 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"mPw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 15; + pixel_y = 15 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 6; + pixel_y = -11 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"mPE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mPL" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -9; + pixel_y = -22 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "mPS" = ( /obj/effect/decal/warning_stripes{ @@ -15913,62 +25925,136 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/filingcabinet/chestdrawer{ + can_block_movement = 0; + pixel_x = 26; + pixel_y = 21; + layer = 3.02 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "mPX" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/beachcorner/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"mQa" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/swamp) "mQj" = ( /obj/structure/platform/metal/shiva/west, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/southwest_complex) +"mQm" = ( +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -11; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mQn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) "mQx" = ( /obj/structure/bed/chair{ buckling_y = 18; dir = 8 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) -"mRl" = ( +"mQz" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"mRe" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; - pixel_x = 3; - pixel_y = -2 + color = "#a39e99"; + dir = 1 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) +"mRj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_x = 6; + pixel_y = 4 }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"mRl" = ( /obj/structure/platform_decoration/metal/strata/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "mRo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 8 +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = -9 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/southeast_road) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "mRp" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"mRq" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "mRF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) "mRJ" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southroad) +"mRQ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 5; + pixel_y = -17 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"mRU" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -18; + pixel_y = -18 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mRV" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -15980,10 +26066,27 @@ /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/medium, +/obj/item/clothing/suit/armor/vest/UPP, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) +"mRY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/cargo_container/canc/tan/mid, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) +"mSg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -16; + pixel_y = -15 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) "mSn" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -16001,7 +26104,9 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/south_complex) "mSt" = ( -/obj/structure/prop/static_tank/water, +/obj/structure/prop/static_tank/water{ + pixel_y = 3 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) "mSV" = ( @@ -16009,26 +26114,95 @@ color = "#8B9490" }, /obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) "mTj" = ( /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"mTn" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 34 + }, +/obj/structure/sign/poster/upp{ + pixel_y = 32; + pixel_x = 10 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/complex_generic) "mTp" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/east_jungle) +"mTz" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -25; + pixel_y = -6; + dir = 1 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"mUh" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mUj" = ( /obj/structure/bed/chair, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"mUA" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"mUN" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 23; + pixel_y = 19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 19 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mUS" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -12 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "mVe" = ( /obj/structure/window/framed/upp_ship, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/complex_generic) +"mVg" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 18; + pixel_y = 18 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"mVk" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "mVK" = ( /obj/structure/machinery/light/small{ light_color = "#C02526"; @@ -16041,12 +26215,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) "mVW" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/east_jungle) "mWE" = ( @@ -16057,8 +26231,20 @@ light_power = 0.5; dir = 1 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/carpet, +/obj/item/prop/magazine/book/spacebeast{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/prop/magazine/book/theartofwar{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 11 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/complex_generic) "mWJ" = ( /obj/structure/machinery/light/small{ @@ -16068,24 +26254,74 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/military_hangar) +"mWM" = ( +/obj/structure/flora/wood/stick1{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"mWW" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -23; + pixel_y = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = -15 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "mWX" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/beachcorner2/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"mWZ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -26; + pixel_y = -20 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, /area/sekhmet/outside/swamp) "mXe" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/east_jungle) "mXl" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"mXE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"mXF" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -7; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 4; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "mXJ" = ( /obj/effect/landmark/lizard_spawn, -/turf/open/gm/coast/west, -/area/sekhmet/outside/airfield) +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "mXK" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) @@ -16098,7 +26334,9 @@ layer = 3.1; dir = 4 }, -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88" + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "mYj" = ( @@ -16121,6 +26359,22 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/int_glass/complex_generic) +"mYS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 15 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"mZj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "mZm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -16128,17 +26382,104 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"mZr" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"mZF" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/meat{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/meat{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/meat{ + pixel_x = -6; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/meat{ + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_glass/south_complex) +"mZL" = ( +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"mZT" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"mZX" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open_space, +/area/sky) +"naa" = ( +/obj/effect/alien/weeds/node, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "nai" = ( -/turf/open/gm/coast/beachcorner2/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"nao" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 22; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "naC" = ( /obj/structure/cargo_container/canc/tan/right, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "naI" = ( /obj/structure/platform_decoration/metal/almayer/west, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) +"naJ" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/turf/open/floor/corsat, +/area/sekhmet/int_reg/garage) +"naO" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -12 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"nbf" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "nbh" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -16156,15 +26497,15 @@ /area/sekhmet/outside/east_jungle) "nbl" = ( /obj/structure/sign/safety/storage, -/turf/closed/wall/upp_ship, -/area/sekhmet/int_reg/catwalk) +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/int_reg/small_power) "nby" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/airfield) "nbA" = ( /obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/south_complex) "nbU" = ( @@ -16172,12 +26513,41 @@ dir = 8 }, /obj/structure/noticeboard{ - pixel_x = 16; + pixel_x = 11; pixel_y = 31 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/noticeboard{ + pixel_y = 32; + icon_state = "notices_5"; + desc = null; + name = "sticky notes"; + pixel_x = -10 + }, +/obj/structure/noticeboard{ + pixel_y = 32; + icon_state = "notices_3"; + desc = null; + name = "sticky notes"; + pixel_x = 10 + }, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"nce" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -12; + pixel_y = 18 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"nci" = ( +/obj/structure/flora/wood/stick3{ + dir = 8; + pixel_x = -1; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "ncm" = ( /obj/structure/machinery/landinglight/delaythree{ dir = 4 @@ -16199,13 +26569,24 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "nda" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/southeast_road) +"ndy" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"ndI" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "ndL" = ( /obj/structure/cargo_container/upp/mid, /obj/effect/decal/warning_stripes{ @@ -16214,16 +26595,26 @@ /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "ndU" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"neg" = ( +/obj/structure/window/framed/upp_ship, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/catwalk) "nel" = ( /obj/structure/machinery/vending/sovietsoda, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) +"net" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/flora/wood/stick3{ + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/east_jungle) "nfb" = ( /obj/structure/safe/floor{ name = "safe"; @@ -16248,26 +26639,54 @@ /obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/machinery/line_nexter{ - icon_state = "turnstile_strata"; - layer = 4.1 +/obj/structure/machinery/line_nexter/med{ + color = "#818886" }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "ngu" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/military_hangar) +"ngv" = ( +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ngR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ngW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "ngZ" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"nhb" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nhe" = ( /obj/structure/platform/metal/shiva, -/obj/structure/stairs{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) @@ -16277,8 +26696,21 @@ /area/sekhmet/int_reg/air_filters) "nhq" = ( /obj/structure/platform_decoration/metal/kutjevo, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8; + pixel_x = 3 + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"nhN" = ( +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_y = 11 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "nhU" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -16289,13 +26721,46 @@ /obj/structure/cargo_container/upp/tan/right, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"nit" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"nix" = ( +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 1; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "niM" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"niY" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -12; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nje" = ( /obj/item/clothing/suit/chef/classic/medical{ pixel_x = -6; @@ -16310,11 +26775,80 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/hosptial) +"njr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 10; + pixel_y = 27 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/outside/swamp) +"njy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = -10 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) +"njA" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/stool{ + pixel_x = 5; + pixel_y = 14 + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_reg/engineering) "njC" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) +"njH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -8; + pixel_x = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) +"njK" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 19; + pixel_y = 13 + }, +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"njW" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -13; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -2; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -4; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nkg" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/engineering) @@ -16330,17 +26864,6 @@ /turf/closed/wall/shiva/prefabricated, /area/sekhmet/int_reg/air_filters) "nlA" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.01 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1; - dir = 4 - }, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 @@ -16348,23 +26871,28 @@ /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) "nlN" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" - }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, +/obj/structure/machinery/big_computers/computerdark/computer1{ + icon_state = "dark_computer_radar_off" + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 5; + pixel_y = 2 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "nmm" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "nmt" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "nmz" = ( /obj/structure/blocker/invisible_wall, @@ -16376,7 +26904,7 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "nmC" = ( @@ -16384,7 +26912,7 @@ dir = 4 }, /obj/effect/alien/weeds/node, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "nmD" = ( /obj/effect/decal/warning_stripes{ @@ -16409,41 +26937,82 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/sign/safety/conference_room{ pixel_x = -18 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/offices) +"nmQ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nmW" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 10; + pixel_y = -14 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "nnm" = ( -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "nnp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Landing Zone Shutter"; + id = "LZ1shutter1"; + color = "#8B9490"; + dir = 2; + pixel_y = -2 + }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/military_hangar) "nns" = ( /obj/structure/sign/safety/elevator, /turf/closed/wall/strata_outpost/reinforced/hull, /area/sekhmet/int_heavy/research) +"nnw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "nnx" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/obj/structure/largecrate, +/obj/structure/largecrate/empty, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "nnI" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - color = "#77b300"; - pixel_x = 5; - pixel_y = 6 - }, /obj/effect/decal/warning_stripes{ icon_state = "cargo"; pixel_x = 1 }, +/obj/structure/cargo_container/horizontal/green/bottom{ + pixel_x = 5; + pixel_y = 6 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"nnM" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "nnT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westright{ @@ -16461,6 +27030,15 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"noS" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "noW" = ( /obj/structure/closet{ pixel_x = 8; @@ -16476,12 +27054,28 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"npc" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/garage) "npB" = ( /obj/structure/machinery/camera{ c_tag = "South Complex - General Hall"; colony_camera_mapload = 0; network = list("Sekhmet") }, +/obj/structure/noticeboard{ + pixel_x = 11; + pixel_y = 31; + color = "#8B7B5B" + }, +/obj/structure/noticeboard{ + pixel_x = -11; + pixel_y = 31; + color = "#8B7B5B" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) "npQ" = ( @@ -16496,15 +27090,13 @@ /obj/item/clothing/suit/storage/marine/faction/UPP/army, /obj/item/clothing/suit/storage/marine/faction/UPP/army, /obj/item/clothing/head/helmet/marine/veteran/UPP/army, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "npR" = ( -/obj/structure/platform{ - dir = 8 - }, +/obj/structure/platform/metal/almayer/west, /obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/shuttles/drop3) "npW" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -16521,24 +27113,60 @@ /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/comms_lower) "nqL" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) -"nsm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/caves/temple) -"nsp" = ( -/obj/structure/flora/jungle/vines/light_1, +"nqT" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"nre" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = 27 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -9; + pixel_y = 16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nrU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"nrW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -5; + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"nsm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"nsp" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/wood, /area/sekhmet/outside/east_jungle) "nsD" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/southwest_complex) @@ -16572,6 +27200,33 @@ /obj/structure/machinery/optable, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"nuP" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 15; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nvc" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = -13; + color = "#865c47"; + icon_state = "flammable_pipe_3"; + pixel_x = -6; + layer = 5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "nvf" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -16584,9 +27239,12 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "nvi" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"nvm" = ( +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/caves/temple) "nvY" = ( /obj/structure/machinery/landinglight/delaythree{ dir = 4 @@ -16604,15 +27262,23 @@ /obj/item/prop/helmetgarb/gunoil{ pixel_x = -12 }, -/obj/item/storage/box/packet/high_explosive/upp{ - pixel_x = 3 - }, /obj/item/storage/box/packet/high_explosive/upp{ pixel_x = 4; pixel_y = 10 }, +/obj/item/storage/box/packet/high_explosive/upp{ + pixel_x = 3 + }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"nwg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "nwH" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -16644,13 +27310,13 @@ pixel_x = -3; pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/engineering) "nxi" = ( /obj/structure/platform/metal/shiva, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "nxm" = ( /obj/structure/surface/rack{ @@ -16674,6 +27340,10 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"nxw" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/east_jungle) "nxB" = ( /obj/structure/prop/static_tank, /turf/open/floor/corsat, @@ -16682,18 +27352,34 @@ /obj/structure/tent/big, /turf/open/floor/interior/plastic/alt, /area/sekhmet/outside/east_jungle) -"nxD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/largecrate/random/barrel/true_random, -/turf/open/gm/river/desert/tyrargo/no_slowdown, -/area/sekhmet/int_reg/water_filters) +"nzm" = ( +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = 10; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nzt" = ( +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -5; + pixel_y = 10; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) "nzu" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "nzz" = ( /obj/effect/decal/warning_stripes{ @@ -16704,8 +27390,23 @@ /area/sekhmet/int_heavy/research) "nzL" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/gm/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = -10 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/central_road) +"nzP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) "nzW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -16713,18 +27414,24 @@ /obj/structure/blocker/invisible_wall/water{ desc = "The heat is too intense to even be near." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"nzZ" = ( +/obj/structure/machinery/door_control{ + id = "powerunitshutter" + }, +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/int_reg/small_power) "nAj" = ( /obj/structure/bed/chair/vehicle{ dir = 1 }, -/turf/open/shuttle/black, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship2) "nAw" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "Administration - Office"; colony_camera_mapload = 0; @@ -16734,8 +27441,7 @@ /area/sekhmet/int_glass/offices) "nAy" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/offices) @@ -16747,6 +27453,12 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"nAV" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "nBp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/marked, @@ -16756,20 +27468,22 @@ /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "nBA" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/obj/structure/terminal{ + dir = 4 }, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/small_power) "nBN" = ( /obj/structure/machinery/seed_extractor, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"nBP" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nCq" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/int_reg/complex_operation) "nCv" = ( /obj/structure/surface/table/almayer{ @@ -16790,6 +27504,51 @@ /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/offices) +"nCC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"nCO" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 11; + pixel_y = 3 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) +"nCP" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 36; + pixel_x = 21 + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_reg/water_filters) +"nCQ" = ( +/obj/effect/decal/floor_symbol/upp/northface/northeast{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) +"nCZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 5; + dir = 10 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "nDx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/knife{ @@ -16799,13 +27558,32 @@ pixel_x = 7; pixel_y = 2 }, +/obj/structure/window/reinforced, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"nEq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/largecrate/random/secure, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/sekhmet/int_heavy/research) +"nEx" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nEF" = ( /obj/structure/machinery/landinglight/delaythree{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "nEG" = ( @@ -16813,19 +27591,55 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/yard) +"nEH" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nEO" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 12; + pixel_y = 23 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "nEV" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, /obj/structure/closet/crate/ammo, +/obj/effect/spawner/random/supply_kit, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "nEY" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt2, +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) +"nFc" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick2, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nFi" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) +"nFO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = -7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "nGt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -16843,18 +27657,39 @@ "nHq" = ( /turf/open/floor/prison/bright_clean/southwest, /area/sekhmet/int_reg/water_filters) +"nHu" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nIe" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "nID" = ( /obj/item/tool/wet_sign, /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/offices) "nIT" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"nIU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "nJe" = ( /obj/effect/alien/weeds/node, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) "nJh" = ( /obj/structure/window/framed/upp_ship, @@ -16877,10 +27712,42 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/southwest_complex) +"nJt" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -16; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nJL" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) +"nJZ" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"nKy" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_reg/military_hangar) "nKD" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -16890,8 +27757,20 @@ layer = 2.79 }, /obj/item/explosive/plastic{ - pixel_x = -2; - pixel_y = -1 + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "mining explosives" }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) @@ -16905,16 +27784,60 @@ }, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) +"nKW" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "nLd" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) +"nLs" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -17; + pixel_y = 19 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"nLt" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nLu" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -12; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nLx" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 8; + pixel_y = -17 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "nLM" = ( /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"nLU" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampdir/south, /area/sekhmet/outside/swamp) "nMq" = ( /obj/structure/machinery/recharge_station, @@ -16924,6 +27847,27 @@ "nMw" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) +"nME" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nNu" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = -11 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -16940,6 +27884,21 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"nOg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/largecrate/supply/supplies/mre/upp, +/turf/open/floor/corsat/squares, +/area/sekhmet/int_heavy/research) +"nOE" = ( +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "nOY" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -16949,8 +27908,38 @@ /area/sekhmet/outside/airfield) "nPc" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"nPp" = ( +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) +"nPs" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nPv" = ( +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 3; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "nPx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -16969,7 +27958,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "nQp" = ( @@ -16997,6 +27986,24 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"nRs" = ( +/obj/structure/prop/wooden_cross{ + pixel_y = 11 + }, +/obj/item/clothing/head/helmet/marine/veteran/UPP{ + pixel_y = 12 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"nRu" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) "nRG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -17008,10 +28015,26 @@ /obj/structure/blocker/invisible_wall/water{ desc = "The heat is too intense to even be near." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"nRP" = ( +/obj/structure/cargo_container/horizontal/red/bottom{ + pixel_x = 5; + pixel_y = 6; + layer = 2.98 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 14; + pixel_y = 8 + }, +/obj/structure/sign/poster/upp{ + pixel_y = 15; + pixel_x = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "nSu" = ( /obj/structure/bed/chair{ dir = 8; @@ -17026,7 +28049,7 @@ /area/sekhmet/int_reg/water_filters) "nSQ" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "nSY" = ( /obj/structure/surface/rack{ @@ -17064,18 +28087,29 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "nUe" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4; + icon_state = "p_stair_full"; + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4; + icon_state = "p_stair_ew_full_cap"; + pixel_x = -1; + pixel_y = -14 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/engineering) "nUi" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" - }, /obj/structure/machinery/light/double{ dir = 4 }, +/obj/structure/cargo_container/kelland/alt/right{ + dir = 8 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "nUk" = ( @@ -17086,11 +28120,11 @@ /obj/effect/decal/siding{ icon_state = "siding2" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/garage) "nUz" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/military_hangar) "nUB" = ( @@ -17103,17 +28137,41 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"nUU" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nVp" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 14; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "nVK" = ( /turf/closed/wall/strata_outpost, /area/sekhmet/int_reg/garage) "nVP" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; dir = 1 }, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"nVQ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 5.11; + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "nVU" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -17122,6 +28180,7 @@ icon_state = "N"; pixel_y = 2 }, +/obj/item/weapon/gun/shotgun/type23, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "nWc" = ( @@ -17134,9 +28193,24 @@ icon_state = "S"; pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/military_hangar) +"nWy" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -13; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nWX" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -17158,13 +28232,104 @@ /area/sekhmet/outside/central_road) "nXi" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) +"nXB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -16 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"nYg" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) +"nYk" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + pixel_y = 13; + layer = 3.02 + }, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/research) "nYt" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"nYy" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -19; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_y = -17 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nYF" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 16; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nYG" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nYY" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -7; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) +"nZa" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 8; + pixel_y = 23 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 10; + pixel_y = -20 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"nZA" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "nZF" = ( /obj/structure/window/framed/upp_ship, /obj/structure/curtain/medical, @@ -17180,11 +28345,26 @@ }, /turf/open/floor/almayer/tcomms, /area/sekhmet/int_reg/complex_comms) -"oaK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - light_power = 0.25 +"oah" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/sky) +"oay" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -11; + pixel_y = -16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 5; + pixel_y = -6 }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"oaK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "oaP" = ( @@ -17216,12 +28396,23 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "obo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 4 +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -18; + pixel_y = -2; + layer = 4.11 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/southeast_road) +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) +"obt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -6; + pixel_y = -12 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "obB" = ( /obj/structure/window/framed/upp_ship, /obj/structure/machinery/door/poddoor/shutters{ @@ -17233,35 +28424,74 @@ /area/sekhmet/int_reg/complex_operation) "obF" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/central_road) "obH" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "obI" = ( /obj/structure/platform_decoration/metal/shiva/east, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/caves/temple) +"obQ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "obS" = ( /obj/structure/machinery/chem_master{ pixel_y = 3 }, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "obT" = ( /turf/open/slippery/hull/dir/east, /area/sky) +"ocs" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 22; + pixel_y = -4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "ocw" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/airfield) +"ocE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ocJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"odi" = ( +/obj/structure/prop/swamp_plants/algae/full{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "odl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "smallgarage"; @@ -17276,17 +28506,25 @@ /obj/structure/closet/firecloset, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"odC" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "odI" = ( /obj/item/tool/warning_cone, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "odL" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "odM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/multi_tiles/west, /area/sekhmet/outside/swamp) "odU" = ( @@ -17302,6 +28540,14 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) +"oeq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -3; + dir = 8 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "oey" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -17312,8 +28558,16 @@ anchored = 1 }, /obj/item/newspaper, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) +"oeI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "ofo" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -17322,44 +28576,59 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/prop/almayer/computers/mapping_computer{ - name = "colonial operations terminal"; - color = "#8B9490"; - pixel_x = -1 - }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/machinery/big_computers/computerdark/computer4{ + icon_state = "dark_computer_mps_off" + }, +/obj/structure/machinery/computer/cameras/colony_camera{ + name = "console"; + pixel_x = -2; + pixel_y = 3; + network = list("Sekhmet"); + colony_camera_mapload = 0; + layer = 3 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "ofA" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -9 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "ofV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/military_hangar) "ofY" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - color = "#8B7B5B" - }, -/obj/structure/bookcase{ - icon_state = "book-5"; - color = "#8B7B5B"; - pixel_y = 12 - }, +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5" + }, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "ogg" = ( @@ -17369,14 +28638,66 @@ pixel_x = 4; pixel_y = 4 }, +/obj/structure/window/reinforced{ + dir = 8 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"ogy" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"ogA" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 14; + pixel_y = -24 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ogW" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"ogX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) +"ogZ" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) +"oho" = ( +/obj/structure/flora/wood/stick4{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "ohs" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) @@ -17399,15 +28720,24 @@ "ohI" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/entry_zone) +"ohJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -15; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "ohO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) -"ohU" = ( -/obj/structure/platform{ +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) +"ohU" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/shuttles/drop3) "oil" = ( /obj/structure/blocker/invisible_wall, @@ -17418,9 +28748,18 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/outside/southroad) +"oiq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -3; + pixel_x = 10 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "oiw" = ( /obj/structure/fence/slim/upp, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "oix" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -17431,6 +28770,10 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) +"oiP" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "oja" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -17438,11 +28781,60 @@ }, /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) +"ojm" = ( +/obj/structure/machinery/door_control{ + pixel_x = 1; + pixel_y = 25; + id = "LZ1shutter1" + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"ojo" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = -10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -21; + pixel_y = -16 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ojJ" = ( /obj/effect/decal/siding, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"okn" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 2; + pixel_y = 20 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -4; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 20; + pixel_y = -7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "okq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -17456,11 +28848,25 @@ /area/sekhmet/int_heavy/research) "okx" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "okB" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) +"okH" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 18; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "okQ" = ( /obj/structure/machinery/light{ light_power = 0.5 @@ -17478,17 +28884,31 @@ pixel_x = 8; pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "olG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/offices) +"omb" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/straight/south, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "omg" = ( /obj/item/stool, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"omr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 1; + dir = 8; + pixel_x = -9 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) "omQ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -17498,19 +28918,32 @@ /area/sekhmet/int_glass/offices) "ona" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) +"onj" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "ons" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_glass/complex_generic) +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "onE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/structure/stairs{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) @@ -17518,23 +28951,42 @@ /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/item/storage/briefcase/inflatable{ - pixel_x = -5 - }, /obj/item/storage/briefcase/inflatable{ pixel_x = 5; pixel_y = 9 }, /obj/effect/landmark/objective_landmark/close, /obj/effect/landmark/objective_landmark/close, +/obj/item/storage/briefcase/inflatable{ + pixel_x = -5 + }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) "onU" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -6 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/east_jungle) +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"onW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 21; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"oob" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -8; + dir = 8; + pixel_x = -11 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "ooc" = ( /obj/structure/machinery/landinglight/delaytwo{ dir = 4 @@ -17542,20 +28994,35 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "oot" = ( -/obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; - pixel_x = 3; - pixel_y = -2 +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/central_road) -"opf" = ( -/obj/structure/surface/table/almayer{ - color = "#8B9490" +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"opc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16; + pixel_y = -19 }, -/turf/open/floor/strata/floor3, -/area/sekhmet/int_reg/military_hangar) +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 4; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"opf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/southwest_complex) "opw" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -17573,8 +29040,15 @@ }, /turf/open/floor/corsat/squares, /area/sekhmet/int_reg/engineering) +"opL" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = -19 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "opM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/door_control{ pixel_x = 9; pixel_y = -29; @@ -17582,6 +29056,13 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/southwest_complex) +"opU" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "oqd" = ( /obj/structure/cargo_container/hd/mid, /obj/effect/decal/warning_stripes{ @@ -17594,33 +29075,76 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/air_filters) -"oqM" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25; - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/sekhmet/outside/central_road) "oqU" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/caves/temple) "oqW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/alien/weeds/node, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"orp" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -8; + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "orD" = ( -/obj/structure/platform/stone/soro/north, -/obj/structure/platform/stone/soro/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"orE" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -2; + pixel_y = -21 + }, +/obj/structure/flora/wood/stick1{ + pixel_x = 12; + pixel_y = 9; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "orF" = ( /obj/structure/barricade/handrail/wire{ dir = 1 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/airfield) +"orH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"orK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) +"orO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "osr" = ( /obj/effect/decal/siding{ icon_state = "siding6" @@ -17661,10 +29185,65 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"otW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/swamp) +"ous" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -3; + dir = 8 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "ouA" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"ouG" = ( +/obj/structure/closet/firecloset/upp_full, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) +"ouL" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -13; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"ove" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 3; + dir = 6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"ovg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -22 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "ovh" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -17689,10 +29268,9 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "ovl" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) @@ -17713,6 +29291,15 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"own" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 22; + pixel_y = 15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "owu" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -17722,6 +29309,16 @@ }, /turf/open/floor/strata/red1, /area/sekhmet/int_reg/complex_operation) +"owB" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -10; + pixel_y = 6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "owO" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/plating/plating_catwalk/strata, @@ -17746,15 +29343,26 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "oxo" = ( -/obj/structure/stairs, -/turf/open/floor/strata/floor3, -/area/sekhmet/int_reg/military_hangar) +/obj/structure/largecrate/random/case, +/obj/effect/decal/hybrisa/dirt, +/obj/item/weapon/gun/shotgun/double/with_stock, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_glass/complex_generic) "oxw" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southroad) "oxx" = ( /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"oxO" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "oyh" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -17763,11 +29371,11 @@ /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/airfield) "oyE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) "oyW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/bed/roller/hospital_empty/bigrollerempty, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) @@ -17779,8 +29387,24 @@ icon_state = "E"; pixel_x = 2 }, +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null; + can_block_movement = 0; + pixel_y = 15; + name = "equipment locker"; + pixel_x = -4 + }, +/obj/item/clothing/suit/storage/marine/faction/UPP/army, +/obj/item/clothing/suit/storage/marine/faction/UPP/army, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) +"ozu" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -15; + pixel_y = -2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "oAb" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -17797,8 +29421,23 @@ /obj/item/device/lightreplacer, /turf/open/floor/corsat/squares, /area/sekhmet/int_reg/engineering) +"oAl" = ( +/obj/structure/stairs/perspective{ + color = "#79573e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) +"oAI" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "oBb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 @@ -17806,15 +29445,21 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) "oBj" = ( -/obj/structure/machinery/power/power_generator/reactor/colony, -/turf/open/floor/plating/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/catwalk) "oBm" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8; + icon_state = "p_stair_ew_full_cap" }, -/turf/open/floor/strata/floor3/east, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"oBu" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "oBv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -17823,22 +29468,59 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) +"oBV" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/comms_lower) "oBW" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = -7 + dir = 6; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/temple_outer) +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) +"oCd" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "oCv" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/far, +/obj/item/reagent_container/food/drinks/cans/food/upp/vegetables{ + pixel_x = 4; + pixel_y = 14 + }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"oCA" = ( +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -9; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 12; + pixel_y = -22 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "oCC" = ( /obj/structure/platform/metal/shiva/east, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "oCD" = ( /obj/structure/closet/crate/trashcart{ @@ -17855,9 +29537,38 @@ /obj/item/clothing/gloves/grey, /obj/item/storage/backpack/satchel/black, /obj/item/storage/backpack/satchel, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/complex_generic) +"oCG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "biggarage"; + name = "Garage Shutters"; + color = "#8B9490"; + dir = 2; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/garage) +"oCM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"oCR" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "oCT" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -17866,7 +29577,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/southwest_complex) "oDh" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) @@ -17885,26 +29596,101 @@ /obj/item/tool/pickaxe{ pixel_y = -3 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "oDz" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 9 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "oDJ" = ( /obj/structure/machinery/chem_master/industry_mixer, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) +"oDQ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = -6; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"oDU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southeast_road) +"oEC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = 9; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"oEO" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) +"oES" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "oGb" = ( /obj/structure/machinery/door/airlock/upp/generic/autoname{ req_access = null }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"oGN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/catwalk) +"oGX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 36 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = -10 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"oHb" = ( +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4; + icon_state = "p_stair_ew_half_cap"; + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/engineering) +"oHw" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_y = 13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "oHC" = ( /obj/structure/blocker/invisible_wall, /obj/effect/decal/warning_stripes{ @@ -17915,18 +29701,20 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "oIk" = ( -/obj/structure/stairs{ - dir = 8 - }, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 }, -/obj/structure/platform/metal/shiva/north, +/obj/structure/platform/metal/stair_cut/shiva_right, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full"; + color = "#e1d9ce" + }, /turf/open/floor/kutjevo/tan/multi_tiles/east, /area/sekhmet/int_glass/hosptial) "oIn" = ( @@ -17948,19 +29736,57 @@ /obj/item/folder/red{ pixel_x = -3 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) +"oIu" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"oIx" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) +"oIO" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -12; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "oIQ" = ( -/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"oIY" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"oJi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -3; + pixel_y = -15 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "oJC" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"oJL" = ( +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) "oJY" = ( /obj/structure/bed/chair{ dir = 4 @@ -17978,13 +29804,18 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/yard) "oKv" = ( /obj/structure/janitorialcart, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"oLa" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/obj/structure/blocker/invisible_wall, +/turf/open/slippery/hull/dir/west, +/area/sekhmet/int_reg/catwalk) "oLj" = ( /obj/structure/safe/floor{ name = "safe"; @@ -18004,18 +29835,42 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/offices) "oLw" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, +/obj/structure/shuttle/part/ert/transparent/left_engine, +/turf/open/floor/corsat, /area/sekhmet/int_reg/ship1) +"oLL" = ( +/obj/item/stool{ + pixel_x = 3; + pixel_y = 15 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "oMv" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) +"oMG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 11; + pixel_x = 7 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"oMQ" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/west, +/area/sekhmet/outside/airfield) +"oNh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/complex_generic) "oNs" = ( /obj/structure/reagent_dispensers/beerkeg/alt{ pixel_x = 9; @@ -18031,15 +29886,42 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) +"oNv" = ( +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"oNA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"oNJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 2; + pixel_y = 12 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "oNQ" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "oNV" = ( /obj/structure/bed/chair{ @@ -18048,8 +29930,21 @@ pixel_x = 5; pixel_y = -5 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"oNZ" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) +"oOm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 2; + dir = 8; + pixel_x = -3 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "oOu" = ( /turf/closed/shuttle/ert{ icon_state = "upp5" @@ -18062,6 +29957,46 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"oPi" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"oPk" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_reg/garage) +"oPv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -5 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) +"oPz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 14; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 20; + pixel_y = 13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "oPA" = ( /obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata/multi_tiles/west, @@ -18070,17 +30005,50 @@ /obj/structure/largecrate/supply/medicine/iv, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"oPD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 12; + pixel_y = 9; + dir = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"oPP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/east_jungle) "oQe" = ( /obj/structure/cargo_container/canc/mid, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) -"oQE" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/elevatorshaft, -/area/sekhmet/int_heavy/low_level_gen) +"oQs" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -2; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/east_jungle) "oQH" = ( -/turf/open/gm/coast/beachcorner2/south_west, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 28; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "oQL" = ( /obj/structure/machinery/camera{ c_tag = "UPP - Communication Lobby"; @@ -18090,14 +30058,36 @@ /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) "oQQ" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "oRx" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/south_cave) +"oSo" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 17; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 8; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "oSx" = ( /obj/structure/prop/structure_lattice{ dir = 4; @@ -18109,7 +30099,7 @@ "oTl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device, /obj/structure/platform/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "oTC" = ( /obj/structure/flora/pottedplant{ @@ -18118,19 +30108,43 @@ pixel_y = 5; pixel_x = 7 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "oTJ" = ( /obj/effect/decal/siding/wood_siding, -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) +"oTK" = ( +/obj/structure/flora/wood/stick4{ + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "oTM" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/temple_outer) +"oTO" = ( +/obj/structure/prop/swamp_plants/algae/full{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"oTV" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -13; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "oUb" = ( /obj/effect/decal/cleanable/generic{ color = "#5d524b"; @@ -18155,10 +30169,25 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/sekhmet/int_heavy/research) +"oUZ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "oVe" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/sekhmet/int_reg/ship1) +"oVK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "oVP" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" @@ -18173,17 +30202,16 @@ colony_camera_mapload = 0; network = list("Sekhmet") }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "oVW" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) "oWb" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "oWm" = ( /obj/effect/decal/warning_stripes{ @@ -18192,6 +30220,20 @@ /obj/structure/device/broken_piano, /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/southroad) +"oWD" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) +"oWO" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/light_3{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) "oWY" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -18199,15 +30241,69 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"oXa" = ( +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) +"oXp" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/garage) "oXF" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/southroad) +"oXJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 20; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -25; + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"oXN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 17; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"oYJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "oYP" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, /obj/effect/landmark/objective_landmark/far, +/obj/item/clothing/suit/armor/vest/UPP/alt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) "oZC" = ( @@ -18215,7 +30311,7 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "oZN" = ( @@ -18224,8 +30320,15 @@ layer = 2.79 }, /obj/item/clothing/mask/gas/upp_pfb, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) +"pae" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "par" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -18234,6 +30337,7 @@ color = "#8B9490" }, /obj/item/map/current_map, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) "pat" = ( @@ -18241,7 +30345,7 @@ icon_state = "road_edge_decal8"; pixel_x = -14 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/alien/weeds/node, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) @@ -18252,6 +30356,15 @@ /obj/structure/largecrate/supply/floodlights, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) +"paL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8; + pixel_x = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "paN" = ( /obj/structure/cargo_container/upp/right, /obj/effect/decal/warning_stripes{ @@ -18260,25 +30373,95 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"paW" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 15; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"paY" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 11; + pixel_y = -13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"paZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 2; + dir = 8; + pixel_x = 5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) "pbj" = ( /obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"pce" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"pdd" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"pde" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8; + dir = 1 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_reg/ship2) "pdj" = ( /turf/open/floor/strata/floor3/east, /area/sekhmet/shuttles/drop3) "pdy" = ( -/turf/open/gm/river/no_slowdown, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"pdF" = ( +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/outside/airfield) +"pdV" = ( +/obj/effect/alien/weeds/node, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) "pdY" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/warehouse) +"pee" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "pem" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "pew" = ( /obj/structure/machinery/deployable/barrier, @@ -18292,23 +30475,42 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/north, /area/sekhmet/int_reg/air_filters) +"pfh" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "pfm" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "pfs" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/southroad) +"pfW" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/closed/wall/strata_ice/swamp, +/area/sky) "pfX" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"pgc" = ( +/obj/structure/flora/wood/stick2, +/obj/structure/flora/wood/stick3{ + dir = 8; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "pgF" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/swamp) "phh" = ( @@ -18326,6 +30528,19 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"phq" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"phC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "pik" = ( /obj/structure/bed/chair{ dir = 1 @@ -18340,12 +30555,47 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) -"pjw" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +"piK" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"piR" = ( +/obj/structure/flora/wood/stick3{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/east_jungle) +"pjo" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 7; + pixel_y = 5 }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"pju" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/southwest_complex) +"pjw" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"pjC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/plate, +/area/sekhmet/int_reg/military_hangar) "pjE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -18358,8 +30608,10 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/yard) "pjF" = ( -/obj/structure/platform/stone/soro/west, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "pjK" = ( /obj/effect/decal/warning_stripes{ @@ -18376,12 +30628,19 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "pjW" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) +"pka" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "pki" = ( /turf/closed/shuttle/elevator{ dir = 1 @@ -18396,10 +30655,48 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) +"pkw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"pkz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "pkD" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/complex_generic) +"pkF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 10; + pixel_y = -12; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"pln" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -17; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "plt" = ( /obj/vehicle/powerloader/jd{ name = "\improper CosmosStal 12 Bogatyr Power Loader"; @@ -18409,8 +30706,11 @@ /turf/open/floor/mech_bay_recharge_floor, /area/sekhmet/int_reg/military_hangar) "plU" = ( -/obj/structure/platform/stone/soro, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/straight, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "pmn" = ( /obj/item/tool/warning_cone{ @@ -18418,7 +30718,7 @@ pixel_y = 16 }, /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "pmI" = ( @@ -18433,10 +30733,24 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"pmJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -13 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "pmM" = ( /obj/structure/largecrate/random/barrel/true_random, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"pmQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "pnA" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 @@ -18447,19 +30761,39 @@ }, /turf/open/floor/filtrationside/northwest, /area/sekhmet/int_reg/air_filters) +"pnZ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#ffcc33" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"pou" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "poH" = ( /turf/closed/shuttle/elevator{ dir = 8 }, /area/sekhmet/int_reg/military_hangar) +"ppg" = ( +/obj/structure/flora/wood/stick4, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "ppm" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) "ppA" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "ppC" = ( /obj/structure/machinery/light/double{ @@ -18476,53 +30810,108 @@ light_power = 0.5; dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) -"ppG" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/airfield) +"ppL" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -10; + pixel_y = 6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"ppW" = ( +/obj/structure/flora/wood/stick3{ + dir = 4; + pixel_x = 10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"ppX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"pqH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -1; + pixel_y = -17 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 9; + pixel_y = 36 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "pqK" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) +"pqL" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "pqO" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/kutjevo/multi_tiles/west, -/area/sekhmet/int_glass/complex_generic) +/area/sekhmet/outside/central_road) "pqZ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "pre" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/prop/fake/handrail/kutjevo, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "prf" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/southroad) "prj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/decal/cleanable/generic{ color = "#5d524b"; alpha = 155 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"prm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 5; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -4; + pixel_y = -17 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"prs" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "prx" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 @@ -18531,12 +30920,18 @@ /area/sekhmet/int_reg/southwest_complex) "prE" = ( /obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "prF" = ( /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) +"prJ" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/flora/wood/stick2, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "prO" = ( /obj/structure/fence/slim/upp, /turf/open/floor/strata/floor2, @@ -18547,21 +30942,53 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"psz" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "psA" = ( /obj/structure/largecrate/random/case/double, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"psO" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "psY" = ( /turf/closed/wall/upp_ship/reinforced/outer, /area/sekhmet/int_reg/military_hangar) +"ptc" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "pth" = ( /turf/open/floor/strata/orange_edge, /area/sekhmet/int_reg/comms_lower) +"ptP" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -2; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ptW" = ( +/obj/structure/fence/slim/upp, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "pux" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) @@ -18576,12 +31003,25 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) +"pvr" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -8 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/east_jungle) "pvv" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/shiva, /area/sekhmet/caves/temple) +"pvH" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"pwt" = ( +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_reg/military_hangar) "pwN" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -18593,26 +31033,27 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "pwO" = ( -/obj/structure/platform_decoration/stone/soro/north, +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/outside/temple_outer) "pwS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/effect/decal/hybrisa/dirt, /obj/structure/filingcabinet/chestdrawer{ - pixel_y = 6; - pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + pixel_x = 8; + pixel_y = 6; + layer = 3.02 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "pxl" = ( @@ -18634,16 +31075,101 @@ /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "pxB" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/shuttles/drop3) "pxL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 1; + pixel_y = -16 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"pyb" = ( +/obj/effect/alien/weeds/node, +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + pixel_y = 13; + layer = 3.02 + }, +/turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"pyx" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -7; + dir = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"pyD" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) +"pyV" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"pzn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -7 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"pzw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -17; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 13; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"pzX" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 7; + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "pAn" = ( -/obj/structure/platform/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "pAH" = ( /obj/item/prop/tableflag/upp{ @@ -18660,17 +31186,25 @@ pixel_x = 19; pixel_y = 21 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "pAN" = ( /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"pAP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -7 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "pAS" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/engineering) "pAX" = ( /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "pBh" = ( /obj/effect/decal/warning_stripes{ @@ -18684,46 +31218,158 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"pBo" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 13; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"pBu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"pBx" = ( +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5"; + pixel_y = 44; + layer = 3.01; + density = 0 + }, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) "pBz" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"pBC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"pCa" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "pCu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "pCS" = ( /obj/item/device/flashlight/lamp/tripod/grey{ light_power = 0.3; light_range = 4 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"pDa" = ( +/obj/structure/prop/hybrisa/misc/elevator_button{ + pixel_x = -6; + pixel_y = 36 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) +"pDc" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"pDo" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "pDI" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/central_road) "pEa" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/device/broadcasting{ + pixel_y = 5 + }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_intel) +"pEb" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "pEy" = ( -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest/UPP, +/obj/item/clothing/suit/armor/vest/UPP, /obj/effect/decal/warning_stripes{ icon_state = "cargo"; pixel_x = 1 }, /obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, +/obj/effect/decal/hybrisa/dirt, +/obj/item/clothing/suit/armor/vest/UPP, +/obj/item/clothing/suit/armor/vest/UPP, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"pEA" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = -1; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -9; + pixel_y = -16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -13; + pixel_y = -1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "pED" = ( /obj/structure/platform_decoration/metal/strata/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 14; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 13; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "pEI" = ( /turf/open/floor/almayer/tcomms, @@ -18750,26 +31396,65 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) "pFr" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) +"pFs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 13; + dir = 8; + pixel_x = -8 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "pFW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"pFZ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"pGl" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 13; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -2; + pixel_y = 27 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 10; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "pGJ" = ( /obj/structure/platform/metal/strata/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "pGS" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/central_road) "pHa" = ( /obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "pHf" = ( @@ -18794,9 +31479,19 @@ /obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/east_jungle) +"pHK" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -10 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "pHO" = ( -/turf/open/gm/coast/west, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "pIz" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "paparmory"; @@ -18805,12 +31500,16 @@ dir = 4; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/upp/generic/solid/autoname{ - req_access = null; - dir = 8 +/obj/structure/machinery/door/airlock/upp/sec/autoname{ + req_one_access = null }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) +"pIZ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "pJc" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -18822,13 +31521,28 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"pJr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -2; + dir = 8 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/airfield) +"pJE" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "pKm" = ( /obj/structure/closet/crate/ammo, -/turf/open/shuttle/black, +/obj/item/storage/belt/marine/upp/scarce, +/obj/item/weapon/gun/rifle/type71, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) "pKy" = ( /obj/structure/cargo_container/canc/tan/left, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "pKC" = ( /turf/open/floor/strata/fake_wood, @@ -18836,21 +31550,39 @@ "pKE" = ( /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/swamp) -"pLW" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8; - dir = 1 +"pKX" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8; - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/research) +"pLw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -6 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"pLW" = ( +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship2) "pMQ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/engineering) +"pMY" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "pMZ" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) @@ -18860,10 +31592,42 @@ }, /area/sekhmet/int_reg/ship2) "pNj" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/turf/closed/wall/strata_ice/swamp, +/area/sekhmet/outside/southeast_road) +"pNn" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -5; + pixel_y = 14 }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"pNp" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 14; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"pNA" = ( +/obj/structure/platform/metal/shiva/west, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/southwest_complex) +"pNC" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"pNF" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "pNL" = ( /turf/open_space, /area/sky) @@ -18902,21 +31666,62 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) -"pOP" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +"pOn" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"pOz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 8 }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"pOP" = ( +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/east, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"pPm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -19; + pixel_y = -24 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 17; + pixel_y = -23 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "pPn" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"pPC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -6; + pixel_y = -21 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "pPN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -18936,11 +31741,20 @@ /obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"pQE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) "pQL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) @@ -18953,6 +31767,27 @@ }, /turf/open/floor/filtrationside/east, /area/sekhmet/int_reg/air_filters) +"pQZ" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = -6 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/east_jungle) +"pRg" = ( +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -1; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 20; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "pRu" = ( /obj/structure/reagent_dispensers/tank/fuel, /turf/open/floor/strata/floor2, @@ -18965,15 +31800,78 @@ /obj/structure/machinery/prop/almayer/CICmap/upp, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"pSi" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "pSm" = ( /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/southwest_complex) +"pSr" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "pSz" = ( /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/east_jungle) +"pTt" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 7; + pixel_y = 11; + layer = 2.9 + }, +/obj/structure/sign/banners/upp_flag{ + pixel_x = 33; + pixel_y = 6 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) +"pTz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -28; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -2; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"pTI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"pTN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"pUh" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "pUz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -18988,7 +31886,7 @@ dir = 8; pixel_x = -2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/yard) "pUI" = ( @@ -19002,43 +31900,84 @@ /obj/structure/bed/chair/wheelchair{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"pVh" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "pVj" = ( /obj/item/paper/research_notes/grant/high, /obj/structure/safe, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"pVo" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "pVC" = ( /obj/structure/cargo_container/upp/mk6/right{ pixel_x = 1; - pixel_y = 11; + pixel_y = 18; layer = 3.01 }, -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" +/obj/structure/cargo_container/kelland/alt/right{ + dir = 4; + pixel_x = -3; + pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "pVD" = ( -/obj/structure/machinery/door/airlock/multi_tile/upp/eng/autoname{ - dir = 1; - req_one_access = null +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/power/power_generator/reactor/colony, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/small_power) +"pVE" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -16; + pixel_y = 11 }, -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_reg/catwalk) +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 12; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"pVY" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 17; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "pWQ" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "pWT" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) @@ -19047,14 +31986,12 @@ icon_state = "cargo" }, /obj/structure/machinery/vending/cigarette/wy, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/southroad) "pXE" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp/corner, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "pYl" = ( /obj/item/weapon/gun/shotgun/type23, @@ -19076,15 +32013,33 @@ }, /obj/item/weapon/gun/smg/bizon/upp, /obj/item/ammo_magazine/smg/bizon, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, -/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/vest/UPP, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"pYN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -14; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = -19 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -14; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "pYX" = ( /obj/effect/decal/siding, /turf/open/floor/corsat/squares, @@ -19094,27 +32049,56 @@ color = "#6b675e"; layer = 2.79 }, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light/small{ - light_power = 0.25 +/obj/structure/machinery/light/small, +/obj/item/reagent_container/food/drinks/cans/food/upp/stew{ + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/stew{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/stew{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/stew{ + pixel_x = -5; + pixel_y = 13 }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) +"pZj" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "pZo" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/airfield) +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "pZy" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow" }, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"pZG" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/closed/wall/strata_ice/swamp, +/area/sky) "pZW" = ( -/turf/open/gm/coast/north, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) +"qai" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "qak" = ( /turf/closed/shuttle/ert{ icon_state = "upp27"; @@ -19125,10 +32109,16 @@ /obj/structure/reagent_dispensers/tank/water, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) +"qao" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "qbp" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/multi_tiles/west, @@ -19144,6 +32134,17 @@ /obj/item/weapon/gun/rifle/ak4047, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"qbK" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -20; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qbT" = ( /obj/item/reagent_container/food/drinks/cans/boda{ pixel_y = 11; @@ -19152,6 +32153,14 @@ /obj/structure/machinery/prop/almayer/CICmap/upp, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"qci" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 8; + pixel_x = 9 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "qcm" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -19179,8 +32188,30 @@ /area/sekhmet/outside/temple_outer) "qcH" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) +"qdb" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"qdc" = ( +/obj/structure/noticeboard{ + pixel_x = 11; + pixel_y = 31; + color = "#8B7B5B" + }, +/obj/structure/noticeboard{ + pixel_x = -11; + pixel_y = 31; + color = "#8B7B5B" + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/south_complex) "qdz" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19192,12 +32223,20 @@ /obj/structure/cargo_container/canc/right, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"qeV" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qfM" = ( /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "qfU" = ( /obj/structure/barricade/handrail/medical, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "qgm" = ( @@ -19239,21 +32278,59 @@ /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "qgz" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirt, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"qgQ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 9; + pixel_y = -28 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 17; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qid" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "qif" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, +/obj/structure/shuttle/part/ert/transparent/left_engine, +/turf/open/floor/corsat, /area/sekhmet/int_reg/ship2) +"qih" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/telecomm/lz1_southeast) +"qip" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qit" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19262,17 +32339,17 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "qiC" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "qiJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) "qjk" = ( /obj/structure/platform_decoration/metal/strata/west, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) "qjE" = ( /obj/effect/decal/warning_stripes{ @@ -19283,7 +32360,12 @@ dir = 4; pixel_y = 10 }, -/obj/structure/curtain, +/obj/structure/curtain/colorable_transparent{ + color = "#5d7362"; + alpha = 225; + layer = 3.2; + name = "plastic flaps" + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "qjK" = ( @@ -19298,21 +32380,51 @@ /area/sekhmet/int_reg/warehouse) "qkg" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/temple_outer) +"qkH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/swamp) "qkY" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "qlm" = ( -/obj/structure/bed{ - icon_state = "psychbed" +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/hybrisa/dingy, +/obj/structure/prop/tyrargo/boards/boards_2{ + layer = 2.1; + pixel_y = 3; + pixel_x = -6 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"qln" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_y = -5 + }, +/obj/structure/flora/wood/stick1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qlo" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) "qlF" = ( @@ -19320,8 +32432,32 @@ icon_state = "pottedplant_21"; layer = 2.9 }, +/obj/effect/decal/siding{ + icon_state = "siding10" + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) +"qlJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -18; + pixel_y = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"qlT" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/southroad) +"qlZ" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "qmf" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata/orange_cover, @@ -19333,6 +32469,21 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"qmu" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 22; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qmL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -19341,9 +32492,34 @@ /obj/structure/largecrate/random, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"qnM" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -12; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qnR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -4; + pixel_y = -24 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qoh" = ( -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qow" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -19365,10 +32541,63 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) +"qoC" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 10; + pixel_y = -3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -20; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qoG" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"qoH" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = 1; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 17; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qoI" = ( +/obj/structure/flora/wood/stick2, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) +"qpb" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -10; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -18; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"qpf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) "qpi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19378,8 +32607,13 @@ /area/sekhmet/int_reg/military_hangar) "qpj" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"qpw" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qpD" = ( /obj/structure/sink{ pixel_y = 21 @@ -19392,7 +32626,7 @@ /area/sekhmet/int_glass/complex_generic) "qqg" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "qqr" = ( /obj/structure/machinery/door_control{ @@ -19402,32 +32636,46 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"qqx" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qqy" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) "qqG" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "qqZ" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" - }, +/obj/structure/cargo_container/kelland/alt/left, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "qrg" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) +"qrJ" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "qrR" = ( /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "qrT" = ( -/turf/open/gm/coast/beachcorner, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, /area/sekhmet/outside/east_jungle) "qsI" = ( /obj/structure/surface/table/almayer{ @@ -19461,7 +32709,6 @@ pixel_y = -2 }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /obj/item/storage/pill_bottle/happy{ @@ -19473,9 +32720,10 @@ /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "qty" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25; - dir = 1 +/obj/structure/sign/banners/upp_flag{ + pixel_y = 30; + can_block_movement = 0; + layer = 2.9 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) @@ -19487,14 +32735,16 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) -"quo" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat, -/area/sekhmet/int_heavy/low_level_gen) +"qul" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "quz" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/machinery/door_control{ pixel_x = 9; @@ -19503,6 +32753,30 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/garage) +"quN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 12; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -13; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"quO" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "quT" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/sekhmet/int_reg/telecomm/lz2_northeast) @@ -19519,13 +32793,28 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "qvl" = ( -/obj/structure/platform_decoration/stone/soro, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "qvF" = ( /obj/structure/platform/metal/shiva, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) +"qvH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qvT" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -19537,29 +32826,68 @@ /obj/item/storage/belt/marine/upp, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"qvX" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qwb" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_glass/complex_generic) "qwH" = ( /obj/structure/cargo_container/upp/mk6/mid{ pixel_x = 1; - pixel_y = 11; + pixel_y = 18; layer = 3.01 }, -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" +/obj/structure/cargo_container/kelland/alt/left{ + pixel_x = -3; + pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "qwM" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "qxi" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/south_east, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"qxo" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_x = 5 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "qxI" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"qxK" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"qxO" = ( +/obj/item/device/flashlight/lamp/tripod/grey{ + light_power = 0.3; + light_range = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "qyt" = ( /obj/item/stool{ pixel_x = -2; @@ -19567,6 +32895,14 @@ }, /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) +"qyv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/central_road) "qyM" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/floor3/east, @@ -19575,43 +32911,62 @@ /obj/structure/bed/chair/comfy/blue{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "qzh" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"qzI" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qzM" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 8 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "qzO" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "qAf" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/shiva/north, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_operation) +"qAt" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 14; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = -16 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "qBE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) +"qBH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -10; + pixel_x = -5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "qCx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/reagent_analyzer{ @@ -19642,6 +32997,13 @@ /obj/item/tool/crowbar/red, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) +"qCO" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "qCP" = ( /obj/structure/closet/crate/trashcart{ name = "clothing bin"; @@ -19674,22 +33036,32 @@ pixel_x = -8; pixel_y = 15 }, +/obj/structure/window/reinforced{ + dir = 8 + }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) "qCT" = ( /obj/structure/inflatable, /turf/open/floor/interior/plastic/alt, /area/sekhmet/caves/temple) +"qCV" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 1; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "qDB" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) -"qDF" = ( -/turf/open/gm/coast/east, -/area/sekhmet/outside/airfield) "qDK" = ( /obj/effect/decal/siding{ icon_state = "siding5" @@ -19697,16 +33069,21 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "qDM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/offices) "qDT" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "qEe" = ( /turf/closed/wall/upp_ship, /area/sekhmet/outside/airfield) +"qEE" = ( +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "qER" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -19719,31 +33096,68 @@ /obj/item/weapon/telebaton, /obj/item/storage/backpack/general_belt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"qFi" = ( +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) "qFw" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "qFO" = ( -/turf/open/gm/dirt2, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -7; + pixel_x = -3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/caves/west_cave) "qFP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"qFW" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "qFX" = ( /obj/structure/machinery/landinglight/delayone, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"qGs" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "qGy" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_x = -9; @@ -19753,31 +33167,68 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "qGY" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"qHg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "qHq" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"qHr" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "qHH" = ( /obj/structure/prop/almayer/cannon_cables{ name = "cables" }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/yard) +"qHP" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1{ + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qHR" = ( +/obj/structure/flora/wood/stick1{ + dir = 1; + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "qHY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/engineering) "qIk" = ( @@ -19786,6 +33237,13 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"qIu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/clothing/mask/gas/upp_pfb, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_heavy/entry_zone) "qIJ" = ( /obj/structure/bed/chair{ dir = 4 @@ -19801,30 +33259,91 @@ pixel_x = 2; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"qIY" = ( +/obj/structure/flora/wood/stick1{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "qJd" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"qJg" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -3; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qJv" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/water_filters) "qJx" = ( /obj/structure/prop/static_tank/fuel, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"qJD" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"qJH" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "qJQ" = ( /turf/open/floor/corsat, /area/sekhmet/int_reg/garage) +"qKE" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qKG" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_x = 5 + }, +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qKR" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_ice/swamp, +/area/sekhmet/outside/swamp) +"qLi" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/east_jungle) "qLO" = ( /obj/structure/surface/table/holotable{ color = "#424a50" }, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "qLS" = ( /obj/structure/window_frame/wood, @@ -19843,9 +33362,19 @@ pixel_y = 4; anchored = 1 }, -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"qMd" = ( +/obj/structure/flora/wood/stick1, +/obj/structure/flora/wood/stick4{ + pixel_x = 9; + pixel_y = 15 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "qMQ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -19861,8 +33390,22 @@ pixel_y = 12 }, /obj/item/key/cargo_train, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"qMR" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = -10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "qMZ" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -19889,7 +33432,7 @@ /area/sekhmet/int_heavy/research) "qNb" = ( /obj/structure/bed/chair/comfy/beige, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "qNc" = ( @@ -19900,12 +33443,34 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"qOk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"qOI" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 18; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "qPd" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "qPy" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -19917,21 +33482,21 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) "qPW" = ( -/obj/item/prop/colony/canister{ - pixel_x = 7; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) "qQp" = ( /obj/structure/prop/dam/crane{ pixel_x = -11 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "qQw" = ( -/turf/open/gm/coast/beachcorner/south_east, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -13; + pixel_y = 17 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, /area/sekhmet/outside/east_jungle) "qQB" = ( /obj/structure/machinery/light{ @@ -19953,13 +33518,16 @@ pixel_x = -5; pixel_y = 4 }, +/obj/structure/window/reinforced, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) "qQY" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -16 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/upp/right, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "qRh" = ( @@ -19969,11 +33537,10 @@ /turf/open/shuttle/dropship/light_grey_top, /area/sekhmet/int_reg/ship1) "qRi" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "qRy" = ( /obj/structure/sign/safety/bathunisex{ @@ -19986,54 +33553,174 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/offices) +"qRZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/prison/sterile_white, +/area/sekhmet/int_glass/hosptial) +"qSa" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 14; + pixel_y = -19 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qSd" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/complex_comms) +"qSh" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/fake/handrail/kutjevo, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) +"qSl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -14; + pixel_y = 11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"qSw" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"qSx" = ( +/obj/structure/inflatable/popped/door, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "qSD" = ( /obj/structure/largecrate/random, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"qSF" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qSP" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/central_road) "qTc" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) +"qTd" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"qTh" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"qTn" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "qTH" = ( -/turf/open/gm/coast/beachcorner/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"qUv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"qVt" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/complex_operation) "qVQ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/caves/temple) "qVS" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "qWg" = ( /obj/structure/platform_decoration/metal/shiva, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) +"qWs" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -31; + pixel_y = 40 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -16; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qWz" = ( -/turf/open/gm/river/no_slowdown, -/area/sekhmet/outside/airfield) -"qWP" = ( -/obj/structure/platform{ - dir = 4; - layer = 3.01 +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"qWE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = 8; + dir = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"qWP" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "qWV" = ( /obj/effect/decal/warning_stripes{ @@ -20046,14 +33733,24 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) +"qWW" = ( +/obj/structure/largecrate/empty, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "qXe" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /obj/structure/platform/metal/shiva/north, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) +"qXy" = ( +/obj/structure/bed/stool{ + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/carpet, +/area/sekhmet/int_reg/complex_operation) "qXz" = ( /turf/open/floor/plating/warnplate/southeast, /area/sekhmet/shuttles/drop3) @@ -20062,13 +33759,7 @@ icon_state = "E"; pixel_x = 2 }, -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "qYr" = ( @@ -20081,23 +33772,45 @@ /area/sekhmet/int_heavy/research) "qYY" = ( /obj/structure/platform_decoration/metal/shiva, -/turf/open/gm/dirt, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) +"qZe" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/swamp) "qZx" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/double{ - dir = 8 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, +/obj/structure/largecrate/empty, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"qZy" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "qZz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/spawner/random/toy, +/obj/structure/closet/firecloset/upp_full, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) +"qZK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/defenses/handheld/planted_flag/upp, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/ship2) +"qZP" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "qZQ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/sterile_white, @@ -20106,9 +33819,40 @@ /turf/closed/wall/strata_outpost, /area/sekhmet/int_heavy/entry_zone) "rau" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"raA" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -12; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rbI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"rbQ" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rbV" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -20133,25 +33877,41 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/offices) +"rcj" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"rcy" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "rcE" = ( -/obj/structure/machinery/power/power_generator/reactor/colony, -/turf/open/floor/corsat/marked, -/area/sekhmet/int_reg/telecomm/lz2_northeast) -"rcV" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat, -/area/sekhmet/int_heavy/low_level_gen) +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/sky) +"rdn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -8; + dir = 8; + pixel_x = -1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "rdS" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/west_cave) "rdV" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) @@ -20163,43 +33923,112 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) +"reC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "reT" = ( /obj/docking_port/stationary/marine_dropship/lz2{ name = "LZ2 Field Clearing" }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/shuttles/drop2) "rfz" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) +"rfB" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -1; + pixel_y = 27 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 4; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/east_jungle) "rfD" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/floor/interior/tatami, /area/sekhmet/int_reg/complex_intel) +"rfU" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -20; + pixel_y = -19 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"rfX" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "rgr" = ( /obj/structure/platform_decoration/metal/kutjevo, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) +"rgs" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/sekhmet/outside/swamp) "rgP" = ( /obj/structure/machinery/landinglight/delaythree, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "rgS" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"rhg" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/strata/floor2, +/area/sekhmet/outside/east_jungle) "rhC" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) "rit" = ( /obj/structure/largecrate/random/secure, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"riQ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/complex_operation) +"riR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 23; + pixel_y = 4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"rjI" = ( +/obj/structure/cargo_container/upp_small/container_5/right, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) "rjN" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -20217,6 +34046,23 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"rjX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/catwalk) +"rkg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/fake/handrail/kutjevo, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "rkw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -20225,6 +34071,19 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"rkD" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"rlj" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rlk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -20234,13 +34093,19 @@ can_block_movement = 0; pixel_y = 15; name = "equipment locker"; - pixel_x = 1 + pixel_x = 4 }, /obj/item/clothing/suit/storage/marine/faction/UPP/army, /obj/item/clothing/suit/storage/marine/faction/UPP/army, -/obj/item/clothing/suit/storage/marine/faction/UPP/army, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) +"rly" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "rlC" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -20263,17 +34128,61 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"rlN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 8 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"rlP" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.01 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_reg/military_hangar) "rlU" = ( /obj/structure/bed/chair/vehicle{ dir = 1 }, -/turf/open/shuttle/black, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) "rlY" = ( /obj/structure/closet/radiation, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/corsat, /area/sekhmet/int_reg/engineering) +"rlZ" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_right, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) +"rme" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = -27; + pixel_x = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"rmw" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rnj" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -20282,13 +34191,19 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "rnq" = ( -/obj/structure/flora/bush/ausbushes/palebush, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "rnD" = ( /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -11; + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampdir/east, /area/sekhmet/outside/swamp) "rnH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -20303,7 +34218,6 @@ /obj/structure/machinery/light{ light_power = 0.5 }, -/obj/structure/platform_decoration/metal/shiva/north, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) "rof" = ( @@ -20315,9 +34229,59 @@ pixel_y = 13; layer = 3.02 }, +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/platform/metal/kutjevo_smooth/east, /turf/open/floor/strata/floor3, /area/sekhmet/outside/central_road) +"ros" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"roO" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -15; + pixel_y = 13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"rpb" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_x = 10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rpK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -3; + pixel_y = -13 + }, +/obj/structure/flora/wood/stick4{ + dir = 1; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/east_jungle) +"rpL" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rqa" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -20326,16 +34290,25 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) "rqb" = ( -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) "rqd" = ( /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/southeast_road) "rqz" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/temple_outer) +"rqL" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -8; + pixel_y = -18 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "rqM" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -20349,6 +34322,39 @@ icon_state = "upp3" }, /area/sekhmet/int_reg/ship1) +"rrg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 5; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"rrm" = ( +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -7; + pixel_y = 15; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"rrK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "biggarage"; + name = "Garage Shutters"; + color = "#8B9490"; + dir = 2; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/garage) "rrZ" = ( /obj/structure/cargo_container/hd/right, /obj/effect/decal/warning_stripes{ @@ -20374,6 +34380,7 @@ pixel_x = 5; pixel_y = 7 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "rsv" = ( @@ -20381,13 +34388,15 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "rsY" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/south_cave) "rtc" = ( @@ -20403,9 +34412,25 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"rtf" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) "rtl" = ( /turf/open/space/basic, /area/sky) +"rtw" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 7; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 15; + pixel_y = 12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rtz" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -20414,9 +34439,25 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) "rtH" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) +"rtY" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) +"ruj" = ( +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rur" = ( /obj/structure/machinery/bioprinter{ name = "\improper MinZdrav synthetic limb printer 2000" @@ -20424,7 +34465,7 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/hosptial) "rut" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/water_filters) "ruy" = ( @@ -20445,6 +34486,10 @@ /obj/structure/machinery/light, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"ruL" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "rvz" = ( /obj/structure/reagent_dispensers/tank/fuel, /turf/open/floor/plating/kutjevo, @@ -20453,6 +34498,21 @@ /obj/effect/alien/weeds/node, /turf/open/floor/plating/warnplate/east, /area/sekhmet/shuttles/drop3) +"rvL" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 21 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -9; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rvU" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -20470,25 +34530,55 @@ /obj/item/device/black_market_scanner, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"rwd" = ( +/obj/structure/platform/metal/shiva/east, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/garage) +"rwf" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rwl" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 14; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -10; + pixel_y = 22 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "rwC" = ( -/obj/structure/filingcabinet/security{ +/obj/structure/filingcabinet/dark/security{ pixel_y = 16; pixel_x = 8; - can_block_movement = 0; - color = "#8B7B5B" + can_block_movement = 0 }, -/obj/structure/filingcabinet{ +/obj/structure/filingcabinet/dark{ density = 0; pixel_x = -8; - pixel_y = 16; - color = "#8B7B5B" + pixel_y = 16 }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "rwE" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"rwH" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 17; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "rwT" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light{ @@ -20498,13 +34588,23 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) "rxa" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -11; + pixel_y = 19 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, /area/sekhmet/outside/swamp) "rxh" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ +/obj/structure/sign/banners/upp_flag{ + pixel_y = 32; + can_block_movement = 0; + pixel_x = -10; + layer = 2.9 + }, +/obj/structure/machinery/big_computers/computerdark/computer4{ pixel_x = -7; - name = "colonial operations terminal"; - color = "#8B9490" + icon_state = "dark_computer_mps_off" }, /obj/structure/prop/ice_colony/hula_girl{ pixel_x = -3; @@ -20529,48 +34629,111 @@ /area/sekhmet/int_heavy/research) "rxE" = ( /obj/structure/largecrate/random/barrel/true_random, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/garage) +"rxH" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -4; + pixel_y = -16 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "rxK" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/platform/metal/shiva, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"rxS" = ( +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) +"rxX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"rxZ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_y = -17 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ryc" = ( /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/central_road) "ryd" = ( /obj/structure/prop/almayer/cannon_cables, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/east_jungle) +"ryk" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ryr" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 19; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ryx" = ( /obj/structure/barricade/handrail/wire{ dir = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer2{ + pixel_x = 1 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "ryy" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/caves/temple) +"ryD" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -17; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "ryJ" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"rzy" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "rzz" = ( /obj/structure/bed/sofa/south/grey/right{ pixel_y = 7 @@ -20581,15 +34744,35 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"rAq" = ( +/obj/structure/flora/wood/stick2, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"rAL" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_glass/hosptial) "rAZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/yard) "rBi" = ( /turf/open/floor/corsat/arrow_east, /area/sekhmet/int_heavy/research) +"rBE" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -1; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "rBS" = ( -/turf/open/shuttle/black, +/turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) "rCi" = ( /obj/structure/largecrate/random/case, @@ -20603,15 +34786,20 @@ light_power = 0.5; dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "rCE" = ( /obj/structure/platform/metal/shiva, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "rCO" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirt, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "rCP" = ( /obj/structure/machinery/light{ @@ -20622,12 +34810,37 @@ /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/comms_lower) "rDo" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) +"rDv" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"rDw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -4; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southroad) "rDx" = ( /obj/structure/bed/chair/comfy/black, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "rDM" = ( @@ -20658,40 +34871,65 @@ /area/sekhmet/int_glass/complex_generic) "rEe" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "rEu" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/temple) "rEC" = ( /turf/closed/shuttle/elevator, /area/sekhmet/int_reg/comms_lower) "rED" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/temple_outer) +"rEF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "rEN" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/central_road) "rEU" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, +/obj/structure/shuttle/part/ert/transparent/right_engine, +/turf/open/floor/corsat, /area/sekhmet/int_reg/ship2) "rFa" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"rFi" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rFj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/garage) "rFl" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/garage) @@ -20699,29 +34937,46 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/engineering) +"rGk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "rGJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) "rGW" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" - }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, +/obj/structure/machinery/big_computers/computerdark/computer3{ + icon_state = "dark_computer_radar1_off" + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"rHo" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -9; + pixel_y = 24 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "rHq" = ( /obj/structure/bed/chair{ dir = 1 @@ -20729,14 +34984,31 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "rHs" = ( -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/southroad) "rHX" = ( /obj/structure/platform_decoration/metal/strata/north, -/turf/open/gm/dirt, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_1, /area/sekhmet/outside/swamp) "rIb" = ( -/turf/open/gm/coast/beachcorner/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"rIl" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rIC" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "rIN" = ( /obj/structure/surface/table/reinforced/prison, @@ -20758,26 +35030,51 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) +"rIO" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rJz" = ( /obj/structure/machinery/landinglight/delaytwo{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"rJS" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rJV" = ( +/obj/structure/platform/metal/stair_cut/kutjevo_smooth_left, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/outside/swamp) "rJZ" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/central_road) "rKh" = ( -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "rKk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -20785,8 +35082,7 @@ /area/sekhmet/int_reg/engineering) "rKG" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) @@ -20798,21 +35094,85 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) "rKX" = ( /obj/structure/platform/metal/shiva/east, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) +"rLe" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"rLf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 12; + pixel_y = -18 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rLy" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"rLD" = ( +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rLF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/temple) "rLM" = ( /turf/open/floor/prison/bright_clean, /area/sekhmet/int_heavy/entry_zone) +"rLR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rMv" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/temple_outer) +"rMN" = ( +/obj/structure/fence/slim/upp/door, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/central_road) "rMP" = ( /obj/structure/cargo_container/upp/mk6/right, /obj/effect/decal/warning_stripes{ @@ -20849,13 +35209,28 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"rMZ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "rNg" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"rNk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 14; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rNu" = ( /obj/structure/filtration/machine_96x96/filtration{ name = "Air Filtration System" @@ -20863,6 +35238,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/southwest, /area/sekhmet/int_reg/air_filters) +"rNI" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_1"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/outside/swamp) +"rNP" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/fake/handrail/kutjevo, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "rNQ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -20877,13 +35264,89 @@ /obj/structure/machinery/power/apc/power/west, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/yard) +"rOp" = ( +/obj/structure/platform/metal/shiva/east, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"rOq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"rOr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"rOA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"rOK" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -15; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 4; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"rOL" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"rOM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"rOT" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 2; + pixel_y = -13; + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "rPi" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/outside/southeast_road) +"rPk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -4; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rPt" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/plating/plating_catwalk/strata, @@ -20895,9 +35358,20 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"rQt" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/prop/swamp_plants/algae/small/algae_4, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"rQI" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rQO" = ( /obj/structure/platform/metal/shiva, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "rQV" = ( /obj/structure/surface/rack{ @@ -20905,7 +35379,7 @@ layer = 2.79 }, /obj/item/device/black_market_hacking_device, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/spawner/random/bomb_supply, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) @@ -20927,7 +35401,7 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) @@ -20961,10 +35435,10 @@ "rRW" = ( /obj/structure/cargo_container/upp/mk6/left{ pixel_x = 1; - pixel_y = 11; + pixel_y = 18; layer = 3.01 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "rSb" = ( /obj/effect/decal/warning_stripes{ @@ -20976,20 +35450,62 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"rSl" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/east_jungle) "rSm" = ( /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) +"rSu" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/corsat/squares, +/area/sekhmet/int_reg/engineering) "rSL" = ( /obj/structure/platform/metal/strata, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"rST" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "rSZ" = ( /obj/item/stool, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) +"rTn" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -7; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -13; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 11; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rTB" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "rTR" = ( /obj/structure/machinery/light{ @@ -21009,32 +35525,82 @@ "rUK" = ( /turf/open/floor/strata/orange_edge/west, /area/sekhmet/int_reg/complex_comms) +"rUO" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"rUU" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -23; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -11; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rVF" = ( -/turf/open/floor/strata/floor3/east, +/turf/open/floor/corsat/marked, /area/sekhmet/int_reg/telecomm/lz1_southeast) "rWr" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/corsat, /area/sekhmet/int_reg/air_filters) +"rWA" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -19; + pixel_y = -25 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "rWJ" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/offices) "rWW" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 4 + dir = 4; + icon_state = "p_stair_full" }, /turf/open/floor/corsat/marked, /area/sekhmet/outside/southeast_road) +"rXf" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/outside/swamp) "rXs" = ( /obj/structure/coatrack{ pixel_x = -4; pixel_y = 21 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "rXH" = ( @@ -21060,7 +35626,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "rYe" = ( @@ -21085,6 +35651,28 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) +"rZz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"saH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sbj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/glass/canister/oxygen{ @@ -21110,11 +35698,14 @@ }, /obj/item/circuitboard/apc, /obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) "sbD" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/hosptial) "sbG" = ( @@ -21129,53 +35720,135 @@ /obj/structure/displaycase, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"scH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sdc" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 4; + pixel_y = -9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "sdm" = ( -/obj/structure/window/framed/shiva, +/obj/structure/window/framed/shiva/grey, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/complex_intel) "sdn" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "sdD" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"sdR" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"sdX" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -15; + pixel_y = -23 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "seg" = ( /obj/structure/machinery/power/smes/buildable{ name = "backup power SMES" }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/corsat/squares, /area/sekhmet/int_reg/engineering) "sel" = ( /obj/structure/mineral_door/wood, -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"seF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "biggarage2"; + name = "Garage Shutters"; + color = "#8B9490"; + dir = 2; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/garage) +"sfb" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -11; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) +"sfG" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "sfR" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"sgc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -7; + dir = 8; + pixel_x = 3 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"sge" = ( +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) +"sgn" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/small_power) "sgF" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/outside/southeast_road) +"sgP" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sha" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -12 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "shb" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -21183,6 +35856,15 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/outside/central_road) +"sho" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "shJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -21209,6 +35891,20 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) +"sih" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 7; + pixel_y = 21 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -20; + pixel_y = -1 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sip" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/complex_generic) @@ -21227,6 +35923,14 @@ /obj/structure/prop/broken_arcade, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"siL" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sjv" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -21252,22 +35956,40 @@ /obj/item/weapon/gun/flare, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"sjw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -9; + pixel_y = -19 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "sjx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; - pixel_y = -7 + pixel_y = 7; + color = "#865c47"; + pixel_x = -9 }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) "sjB" = ( /obj/effect/decal/siding{ icon_state = "siding4" }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) +"sjC" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -1; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "sjE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -21277,8 +35999,41 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) +"sjH" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -12; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -11; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sjU" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 2; + pixel_y = 22 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"skb" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "skk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/southwest_complex) "skA" = ( @@ -21299,10 +36054,9 @@ /turf/open/floor/corsat/marked, /area/sekhmet/int_glass/complex_generic) "skI" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) @@ -21312,15 +36066,47 @@ layer = 2.79 }, /obj/item/maintenance_jack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) +"slf" = ( +/obj/structure/flora/wood/stick4{ + pixel_x = 11; + pixel_y = 19 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"slS" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"slX" = ( +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/ship2) "smk" = ( /obj/structure/machinery/disposal, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) +"smA" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -17; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) +"smS" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "smZ" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/warnplate/north, @@ -21335,12 +36121,24 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/temple_outer) "snv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) +"snx" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 20; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 2; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "snH" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -21348,13 +36146,20 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) "snJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"snS" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_1"; + item_state = "lifesaver" + }, +/turf/closed/wall/shiva/prefabricated, +/area/sekhmet/int_reg/air_filters) "sod" = ( /obj/structure/bed/chair, /obj/structure/pipes/vents/pump{ @@ -21367,37 +36172,80 @@ /area/sekhmet/int_glass/offices) "soo" = ( /obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/south_complex) "soL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/entry_zone) +"soO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "soZ" = ( /obj/item/toy/plush/bee{ pixel_y = 28 }, +/obj/structure/noticeboard{ + pixel_x = 1; + pixel_y = 31; + color = "#8B7B5B" + }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/south_complex) +"spL" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"spM" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "spW" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/queen_spawn, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) -"sqI" = ( -/obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/gm/dirt, -/area/sekhmet/outside/temple_outer) +"sqc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = 6; + dir = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"sqR" = ( +/obj/structure/flora/wood/stick4{ + pixel_x = 14; + pixel_y = 19 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "sqS" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/air_filters) +"sra" = ( +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_glass/complex_generic) "srh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/emails{ @@ -21413,25 +36261,59 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) +"sry" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -11 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"srR" = ( +/obj/structure/platform/metal/shiva, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 9 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "ssa" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; layer = 3.1; pixel_y = 1; - pixel_x = -10 + pixel_x = -7 }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"ssJ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 18; + pixel_y = 16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "stj" = ( +/obj/effect/decal/cleanable/dirt/alt_dirt, /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, -/area/sky) +/area/space) "stn" = ( /obj/structure/machinery/landinglight, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"str" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "stu" = ( /obj/item/clothing/accessory/poncho/green{ desc = "The standard poncho has variations for every climate. Custom fitted to be attached to chest rigs it is comfortable, warming or cooling as needed, and well-fit."; @@ -21460,24 +36342,24 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "suW" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/item/clothing/head/uppcap{ pixel_x = 11; pixel_y = 15 }, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) "svT" = ( @@ -21495,32 +36377,95 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"swI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -13; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "swM" = ( /obj/structure/largecrate/supply/generator{ pixel_x = -11; pixel_y = 8 }, -/turf/open/gm/dirt, -/area/sekhmet/outside/airfield) -"syY" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/south, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) +"sxy" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 24; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 22; + pixel_y = -11 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"sxX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"syN" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sze" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) "szk" = ( /obj/structure/platform/metal/shiva, -/turf/open/gm/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -5; + dir = 8; + pixel_x = 2 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"szo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -10; + pixel_y = 7; + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/temple) "szq" = ( -/obj/structure/platform_decoration/stone/soro/north, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"szu" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -2; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "szK" = ( /obj/structure/platform_decoration/metal/strata/east, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "sAk" = ( /obj/structure/surface/rack{ @@ -21539,7 +36484,7 @@ /area/sekhmet/int_heavy/research) "sAl" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) "sAo" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/vehicle{ @@ -21549,8 +36494,7 @@ }, /obj/structure/machinery/iv_drip, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/hosptial) @@ -21559,7 +36503,7 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "sBG" = ( /obj/structure/surface/rack{ @@ -21580,12 +36524,32 @@ /obj/item/tool/wet_sign, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/complex_generic) +"sCU" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sDf" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 12; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sDO" = ( +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "sEa" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, /obj/item/device/flash, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ light_color = "#C02526"; color = "#C02526" @@ -21594,7 +36558,7 @@ /area/sekhmet/int_reg/military_hangar) "sEd" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/beachcorner2/north_east, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, /area/sekhmet/outside/swamp) "sEB" = ( /obj/structure/machinery/light{ @@ -21606,45 +36570,123 @@ "sES" = ( /turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) +"sEZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -14; + dir = 8; + pixel_x = 1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "sFK" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bed/chair{ + pixel_y = 10; + buckling_y = 10 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) +"sFN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5"; + pixel_y = 44; + layer = 3.01; + density = 0 + }, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) "sFQ" = ( -/obj/structure/machinery/cm_vending/sorted/walkman, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) -"sGh" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 +"sFT" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"sFU" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10; + pixel_y = 3 }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sGh" = ( +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) +"sGp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 14; + pixel_y = 10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) "sGI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "colonial operations terminal"; +/obj/structure/machinery/big_computers/computerdark/computer3{ + icon_state = "dark_computer_radar1_off"; pixel_y = 4 }, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = -11; + pixel_y = 20 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 7; + pixel_y = 21; + anchored = 1 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/offices) "sGY" = ( /obj/structure/surface/table/woodentable{ color = "#8B7B5B" }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/obj/item/clipboard, /obj/item/clothing/accessory/device/whistle{ pixel_x = -8; pixel_y = 8 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) +"sHb" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sHi" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/objective{ @@ -21655,12 +36697,16 @@ /turf/open/floor/prison/bright_clean/southwest, /area/sekhmet/int_reg/water_filters) "sHm" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"sHn" = ( +/obj/effect/decal/siding, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/sekhmet/int_reg/ship2) "sHo" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -21674,11 +36720,11 @@ icon_state = "cargo"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "sHW" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator, +/obj/structure/machinery/door/airlock/multi_tile/elevator/brown, /obj/structure/blocker/invisible_wall, /turf/open/floor/corsat, /area/sekhmet/int_reg/military_hangar) @@ -21700,18 +36746,97 @@ /obj/structure/blocker/invisible_wall/water{ desc = "The heat is too intense to even be near." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/blocker/invisible_wall, /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/southroad) +"sIs" = ( +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -11; + pixel_y = -6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "sIP" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"sIR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -14; + pixel_y = -23 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 14; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -13; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sIW" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"sJs" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west{ + pixel_x = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"sJw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 15; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"sJR" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"sJY" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/item/book/manual/upphistory{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/complex_generic) "sKc" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/floor3/east, @@ -21720,26 +36845,59 @@ /obj/structure/barricade/handrail/wire{ dir = 1 }, -/obj/structure/prop/almayer/computers/mission_planning_system{ +/obj/structure/machinery/big_computers/computerdark/computer4{ pixel_x = -7; - name = "colonial operations terminal"; - color = "#8B9490" + icon_state = "dark_computer_mps_off" }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"sKt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"sKx" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"sKK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"sKZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -7; + dir = 8; + pixel_x = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "sLm" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 8 +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/east_jungle) +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "sLq" = ( /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/offices) "sMl" = ( /obj/structure/reagent_dispensers/tank/fuel, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 @@ -21753,13 +36911,38 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_operation) +"sMX" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "sNc" = ( /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/sekhmet/int_reg/ship1) +"sNH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_reg/military_hangar) "sOb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) +"sOd" = ( +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"sOt" = ( +/obj/structure/platform/metal/strata, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "sOL" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -21774,6 +36957,14 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"sOM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 5; + pixel_x = 9 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "sOU" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -21793,15 +36984,37 @@ /obj/item/map, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"sPa" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_y = 16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"sPs" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "sPy" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "sPW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -21812,6 +37025,7 @@ color = "#8B9490" }, /obj/item/tool/crowbar/tactical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "sQh" = ( @@ -21819,8 +37033,18 @@ /area/sekhmet/outside/swamp) "sQk" = ( /obj/structure/platform_decoration/metal/strata, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"sQl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -16; + pixel_x = -1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "sQz" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/airfield) @@ -21844,6 +37068,10 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"sQG" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) "sQK" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -21851,13 +37079,41 @@ /obj/structure/machinery/prop/almayer/computer/PC, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"sQL" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -9; + dir = 8; + pixel_x = -10 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"sQP" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "sQX" = ( /obj/structure/platform_decoration/metal/shiva/west, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "sQZ" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) +"sSJ" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 3; + pixel_y = -6 + }, +/obj/structure/flora/wood/stick1{ + pixel_x = -20; + pixel_y = 8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sSN" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/orange_cover, @@ -21865,6 +37121,14 @@ "sTl" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/int_heavy/research) +"sTS" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -3; + pixel_y = 2; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) "sTU" = ( /obj/structure/surface/table/holotable{ color = "#424a50" @@ -21879,15 +37143,26 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) "sTX" = ( -/turf/closed/wall/upp_ship/reinforced/outer, +/turf/closed/wall/upp_ship/reinforced, /area/sekhmet/int_reg/telecomm/lz1_southeast) "sUb" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "sUs" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"sUw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "sUE" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -21898,31 +37173,73 @@ layer = 2.5; pixel_x = 6 }, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "sUM" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff"; +/obj/structure/cargo_container/kelland/alt/left{ + dir = 1; + pixel_x = -5; pixel_y = 6 }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"sVi" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = -13; + color = "#865c47"; + icon_state = "flammable_pipe_3"; + pixel_x = -6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/outside/swamp) "sVp" = ( /obj/structure/machinery/light/double{ dir = 4 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"sVr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"sVv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sVz" = ( /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship1) +"sVC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -7; + dir = 10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "sVJ" = ( /obj/structure/platform_decoration/metal/shiva/east, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "sVP" = ( /obj/item/stool, @@ -21933,7 +37250,7 @@ /area/sekhmet/int_heavy/research) "sVQ" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "sVW" = ( /obj/structure/largecrate/random, @@ -21944,12 +37261,26 @@ dir = 4 }, /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"sWn" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -10; + pixel_y = -21; + dir = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"sWF" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/outside/swamp) "sWJ" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) @@ -21958,7 +37289,7 @@ icon_state = "S" }, /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/engineering) "sWV" = ( @@ -21970,7 +37301,7 @@ pixel_y = 35; pixel_x = -1 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 19 }, /obj/effect/decal/strata_decals/grime/grime1{ @@ -22004,8 +37335,10 @@ /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/military_hangar) "sYm" = ( -/obj/structure/platform/stone/soro/east, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "sYn" = ( /obj/effect/decal/siding{ @@ -22021,6 +37354,25 @@ }, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_reg/complex_intel) +"sYM" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 14; + pixel_y = 14 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"sYW" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -13; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "sZi" = ( /obj/structure/reagent_dispensers/tank/water, /obj/structure/machinery/light/double{ @@ -22028,20 +37380,45 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"sZk" = ( +/obj/structure/stairs/perspective{ + color = "#79573e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/gm/dirt/swamp_dirt/variant_5, +/area/sekhmet/outside/swamp) "sZn" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"sZu" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"sZZ" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "tae" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/air_filters) "tbg" = ( /obj/structure/platform_decoration/metal/strata/east, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) "tbu" = ( /obj/structure/machinery/door/airlock/upp/generic/autoname{ @@ -22050,10 +37427,45 @@ }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/southwest_complex) +"tbK" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 10; + pixel_y = -22 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 18; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tbU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"tco" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 21; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tcO" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata, @@ -22062,6 +37474,14 @@ /obj/effect/alien/weeds/node, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"tdb" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tdi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -22072,6 +37492,34 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/engineering) +"tdj" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) +"tdX" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 11; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -1; + pixel_y = -12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tef" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "tek" = ( /obj/structure/window/framed/upp_ship, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -22082,6 +37530,34 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/complex_generic) +"teo" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -22 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -7; + pixel_y = -10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -16; + pixel_y = -13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"teA" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "teC" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -22093,34 +37569,83 @@ /obj/item/prop/almayer/box, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"teJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_y = -16 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"teT" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) "teX" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff"; - pixel_x = -4; +/obj/structure/cargo_container/kelland/alt/right{ + dir = 4; + pixel_x = -2; pixel_y = 5 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"tfd" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) "tfE" = ( /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) "tfG" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "tgW" = ( -/turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"thc" = ( +/obj/structure/flora/wood/stick3, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"thm" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/sky) "thC" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/north_west, -/area/sekhmet/outside/airfield) +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -15 + }, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -10 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 11; + pixel_y = 16 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "thE" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -3; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 10; + pixel_y = -15 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "thJ" = ( /obj/structure/machinery/camera{ c_tag = "Central Complex - Intelligence"; @@ -22131,29 +37656,63 @@ /area/sekhmet/int_reg/complex_intel) "thT" = ( /obj/structure/platform/metal/shiva, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "thZ" = ( -/obj/structure/platform{ - dir = 4; - layer = 3.01 - }, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/platform/metal/almayer/east, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"tij" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tis" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -12; + pixel_y = -9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tiw" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_intel) +"tiC" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"tiI" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/kutjevo/plate, +/area/sekhmet/outside/swamp) +"tjI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -37 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "tkj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "tkC" = ( /obj/structure/window/framed/upp_ship, -/obj/structure/curtain, +/obj/structure/curtain/colorable{ + color = "#5d7362" + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/hosptial) "tkF" = ( @@ -22164,6 +37723,33 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/southroad) +"tkI" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 12; + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -17; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tkJ" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -17; + pixel_y = -4; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "tlx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -22175,6 +37761,15 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"tlM" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"tlP" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "tmf" = ( /obj/structure/machinery/light/double{ dir = 8 @@ -22208,12 +37803,16 @@ /area/sekhmet/int_glass/complex_generic) "tnn" = ( /obj/structure/platform/metal/shiva, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "tnp" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/beachcorner2/south_west, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/swamp) "tns" = ( /obj/structure/surface/table/almayer{ @@ -22233,30 +37832,88 @@ /obj/structure/cargo_container/upp/tan/mid, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"tnE" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) +"tnX" = ( +/obj/structure/platform_decoration/stone/soro_colorable/east{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "tog" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = 31 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) -"tpq" = ( -/obj/structure/prop/colorable_rock/colorable{ - color = "#9d7766"; - dir = 5; - pixel_y = -1 +"tow" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 }, -/turf/open/gm/coast/beachcorner/north_east, -/area/sekhmet/outside/temple_outer) +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) +"tpp" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 2; + pixel_y = 4; + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) +"tpr" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "tpx" = ( /obj/structure/platform/metal/shiva/north, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/central_road) +"tpA" = ( +/obj/structure/flora/wood/stick4{ + dir = 1; + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"tqj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -6; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "tql" = ( -/turf/open/gm/coast/beachcorner2/north_east, -/area/sekhmet/outside/airfield) +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -3; + pixel_y = -6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"tqr" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) "tqt" = ( -/obj/structure/largecrate, +/obj/structure/largecrate/empty, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "tqB" = ( @@ -22268,17 +37925,36 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"tqW" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/invisible_wall, +/turf/open/slippery/hull/dir/northwest, +/area/sekhmet/int_reg/catwalk) +"tra" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tri" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 2.5 }, -/turf/open/floor/plating/plating_catwalk/strata, +/turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "trz" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) +"trA" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "trB" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -22303,12 +37979,67 @@ pixel_x = 8; pixel_y = -5 }, +/obj/item/device/camera/oldcamera{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/evidencebag{ + pixel_x = -5; + pixel_y = -7 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_intel) +"tsl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -14; + pixel_y = 6 + }, +/obj/structure/flora/wood/stick4{ + dir = 1; + pixel_x = 6; + pixel_y = -19 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"tso" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -14; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tsp" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/gm/coast/east, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"tsA" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -18; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 2; + pixel_y = 30 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"tsC" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "tsN" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -22324,14 +38055,87 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/entry_zone) +"tsU" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 11; + pixel_y = 11 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -14; + pixel_y = 26; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"tsZ" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/catwalk) "tta" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "ttl" = ( /obj/effect/alien/weeds/node, /turf/open/floor/strata/floor2, /area/sekhmet/outside/southeast_road) +"ttp" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"ttN" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) +"ttT" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/sekhmet/int_heavy/research) +"tuf" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"tuu" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 3; + pixel_y = -26 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tuA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -21; + pixel_y = -5; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) "tuZ" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -22343,16 +38147,13 @@ /turf/closed/wall/upp_ship, /area/sekhmet/int_reg/water_filters) "tvB" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, -/area/sekhmet/outside/airfield) -"tvL" = ( -/turf/open/gm/coast/beachcorner/south_east, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/airfield) "twf" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -22368,15 +38169,52 @@ }, /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) -"txk" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" +"twY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) +"twZ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = -8 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"txk" = ( +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "txv" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"txT" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -17; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"tym" = ( +/obj/structure/platform/metal/shiva/north, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/garage) +"tyq" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 3; + pixel_y = 3; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, /area/sekhmet/outside/swamp) "tyx" = ( /obj/structure/barricade/handrail/wire{ @@ -22390,6 +38228,26 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"tyX" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5"; + pixel_y = 43; + layer = 3.01; + density = 0 + }, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/obj/item/book/manual/chemistry, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/hosptial) "tze" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -22429,7 +38287,7 @@ /area/sekhmet/int_glass/hosptial) "tAg" = ( /obj/structure/platform/metal/shiva/north, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "tAv" = ( /obj/effect/decal/warning_stripes{ @@ -22437,6 +38295,16 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"tAy" = ( +/obj/structure/platform_decoration/stone/soro_colorable/west{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) "tAB" = ( /turf/closed/wall/upp_ship/reinforced/outer, /area/sky) @@ -22447,10 +38315,41 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"tBg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/flora/wood/stick2{ + pixel_x = -12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "tBj" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/beachcorner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, /area/sekhmet/outside/swamp) +"tBp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 3; + dir = 8; + pixel_x = -1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"tBE" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/complex_comms) +"tBS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "tCd" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -22471,21 +38370,29 @@ /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/engineering) "tCs" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - color = "#77b300"; - pixel_x = 5; - pixel_y = 6 - }, /obj/structure/bed/bedroll{ pixel_x = 10; pixel_y = 8 }, +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 5; + pixel_y = 6; + layer = 2.98 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "tCz" = ( /obj/structure/reagent_dispensers/tank/water, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"tCN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tDp" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -22508,16 +38415,62 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/engineering) "tDr" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"tDA" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = 8; + pixel_x = 5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) +"tDG" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"tEb" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz1_southeast) +"tEg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -9; + pixel_y = -8 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"tEp" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 16 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -6; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tEw" = ( -/obj/structure/platform/stone/soro, -/turf/open/gm/coast/west, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "tEM" = ( /obj/effect/decal/cleanable/dirt/alt_dirt, @@ -22534,25 +38487,86 @@ }, /obj/item/device/motiondetector/hacked, /obj/item/device/motiondetector/hacked, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) "tES" = ( -/obj/structure/sign/safety/elevator, -/turf/closed/wall/upp_ship/reinforced/outer, -/area/sekhmet/int_heavy/low_level_gen) +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tFc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -5; + dir = 8; + pixel_x = 18 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"tFq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"tFy" = ( +/obj/structure/flora/wood/stick3{ + pixel_x = 10; + pixel_y = -8 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"tFD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"tFG" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tFL" = ( +/obj/structure/flora/grass/tallgrass/swamp/corner{ + dir = 1 + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "tGX" = ( /obj/structure/largecrate/supply/weapons{ pixel_x = -13; pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"tHd" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "tHg" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) @@ -22565,8 +38579,7 @@ pixel_y = 5 }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) @@ -22585,6 +38598,56 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) +"tHy" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"tHH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -5; + pixel_y = -9 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"tHL" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/swamp) +"tHT" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"tHW" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -14; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 7; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tIc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -22601,6 +38664,30 @@ /obj/item/ammo_magazine/pistol/t73, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) +"tIe" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"tIq" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"tIr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "tIt" = ( /obj/item/tool/wet_sign, /turf/open/floor/strata/multi_tiles/west, @@ -22611,44 +38698,81 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) +"tJt" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "tJA" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) +"tJD" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_1"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_reg/water_filters) +"tJH" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 23; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 6 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"tJJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "tJO" = ( /obj/structure/window/reinforced{ layer = 3 }, -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/shiva/north, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "tJP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata/multi_tiles/southwest, -/area/sekhmet/int_heavy/research) +/obj/structure/blocker/invisible_wall, +/obj/structure/stairs/multiz/down{ + icon = 'icons/obj/structures/stairs/perspective_stairs.dmi'; + icon_state = "p_stair_sn_full_cap"; + color = "#838a88"; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/space) "tKd" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/alien/weeds/node, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) @@ -22659,10 +38783,28 @@ }, /turf/open/floor/kutjevo/multi_tiles/west, /area/sekhmet/outside/southroad) +"tKj" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tKk" = ( /obj/structure/surface/table/woodentable/poor, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 1; + pixel_y = 7 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) +"tKv" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 6; + pixel_y = 17; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "tKy" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -22671,6 +38813,26 @@ /obj/item/clothing/accessory/health/scrap, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) +"tKG" = ( +/obj/structure/platform/metal/shiva, +/obj/structure/prop/swamp_plants/algae/corner, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tKK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"tLe" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) "tLi" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -22683,19 +38845,52 @@ /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "tLq" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/military_hangar) +"tLB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo" + }, +/obj/item/hardpoint/locomotion/hovercraft_propellers, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/int_heavy/research) +"tLD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) "tLS" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"tLT" = ( +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 18; + pixel_y = -25 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 7; + pixel_y = -16 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tMl" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -22712,11 +38907,23 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"tMZ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) "tNi" = ( -/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, /obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"tNt" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tNF" = ( /obj/structure/largecrate/random/case/small{ pixel_x = 2; @@ -22730,7 +38937,7 @@ /area/sekhmet/int_reg/military_hangar) "tNX" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/southroad) "tOy" = ( /obj/structure/surface/table/reinforced/prison, @@ -22746,8 +38953,10 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "tOI" = ( -/obj/structure/stairs, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/stairs/perspective{ + color = "#838a88" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "tOU" = ( /obj/structure/surface/table/almayer{ @@ -22780,21 +38989,35 @@ /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/complex_operation) "tPf" = ( -/obj/structure/largecrate/random/barrel/true_random, -/obj/structure/machinery/light/double{ - dir = 1 +/obj/structure/lz_sign/sekhmet_sign{ + pixel_y = 7 }, -/turf/open/floor/strata/floor3, -/area/sekhmet/int_reg/military_hangar) +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/airfield) "tPJ" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/sekhmet/int_reg/ship1) +"tPS" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 20; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tQA" = ( /obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -22809,7 +39032,7 @@ /area/sekhmet/int_reg/complex_comms) "tQU" = ( /obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/entry_zone) "tRs" = ( @@ -22823,20 +39046,52 @@ "tRB" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/southwest_complex) +"tSw" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "tSD" = ( /obj/structure/reagent_dispensers/tank/water, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"tSK" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "tSU" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) +"tSY" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; + color = "#a39e99"; pixel_x = 3; - pixel_y = -2 + pixel_y = -2; + dir = 8 }, -/obj/structure/platform_decoration/metal/strata, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/southroad) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"tTg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -2; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -13; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -4; + pixel_y = 15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tTE" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -22844,21 +39099,55 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ dir = 8 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) -"tUv" = ( -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_heavy/entry_zone) -"tUL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles/west, +"tTF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -6 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"tUk" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -11; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"tUv" = ( +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_heavy/entry_zone) +"tUH" = ( +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"tUL" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/air_filters) +"tUP" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "tUV" = ( /obj/item/stool, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "tUX" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "tVj" = ( @@ -22866,8 +39155,24 @@ /obj/structure/machinery/computer3/server/rack, /turf/open/floor/almayer/tcomms, /area/sekhmet/int_reg/complex_comms) +"tVm" = ( +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"tVC" = ( +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "tVD" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 @@ -22875,9 +39180,18 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) "tVE" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/kutjevo, +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, /area/sekhmet/int_reg/catwalk) +"tVR" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "tVS" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat, @@ -22886,14 +39200,33 @@ /turf/open/floor/corsat/arrow_west, /area/sekhmet/int_heavy/research) "tVZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"tWE" = ( +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"tWF" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "tWS" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/southroad) "tWZ" = ( /obj/structure/prop/structure_lattice{ @@ -22906,6 +39239,14 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/outside/east_jungle) +"tXh" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = 15; + pixel_y = 13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tXS" = ( /obj/structure/machinery/faxmachine{ wrenchable = 1; @@ -22923,9 +39264,29 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"tYA" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) +"tZe" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 11; + pixel_y = 3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "tZm" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/sekhmet/int_reg/yard) +"tZO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "tZR" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -22935,6 +39296,21 @@ /obj/item/stack/folding_barricade/three, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/complex_operation) +"uag" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/sign/flag/upp{ + pixel_x = -1; + pixel_y = 23 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_glass/south_complex) +"uaY" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "ubf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -22951,10 +39327,19 @@ /obj/item/storage/briefcase/stowaway, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) +"uca" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "ucq" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) "ucx" = ( @@ -22967,6 +39352,27 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_comms) +"ucU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5; + dir = 10 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 15 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"ucY" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/swamp) "udh" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -22974,9 +39380,24 @@ /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"udj" = ( +/turf/closed/wall/rock{ + color = "#797571" + }, +/area/sekhmet/int_reg/military_hangar) +"udz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "udA" = ( -/obj/structure/stairs{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) @@ -22986,25 +39407,33 @@ /area/sekhmet/int_glass/south_complex) "uey" = ( /obj/structure/machinery/prop/almayer/computer{ - pixel_y = 32; - layer = 2.9 + pixel_y = 29; + color = "#ffffb3"; + pixel_x = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer2{ +/obj/structure/machinery/big_computers/computerbrown/computer4{ + icon_state = "sensor_comp2_off"; color = "#ffffb3"; + name = "sensor computer"; + pixel_x = 1; pixel_y = 2 }, /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship1) +"ueJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "ufa" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/north, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -9; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "ufl" = ( /obj/structure/surface/table/reinforced/prison, @@ -23025,23 +39454,35 @@ "ufF" = ( /obj/structure/machinery/computer/drone_control, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean/southwest, /area/sekhmet/int_reg/water_filters) +"ufN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"uga" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ugd" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) "ugj" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "ugr" = ( /obj/structure/surface/table{ @@ -23057,6 +39498,21 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) +"ugW" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = 4; + pixel_y = -7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 16; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "uhd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23064,17 +39520,47 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"uhf" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -10; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uhn" = ( -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/swamp) +"uhO" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "uhP" = ( /obj/structure/cargo_container/upp/tan/right, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"uio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + light_power = 0.5; + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/elevator_button{ + pixel_x = -6; + pixel_y = 36 + }, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/research) "uir" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, +/obj/item/hardpoint/locomotion/hovercraft_propellers, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "uis" = ( @@ -23095,7 +39581,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) "uiR" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/bed/roller/hospital_empty/bigrollerempty3, /obj/structure/machinery/light{ light_power = 0.5 @@ -23113,26 +39599,60 @@ /obj/structure/machinery/computer3/server/rack, /turf/open/floor/almayer/tcomms, /area/sekhmet/int_reg/complex_comms) +"ujp" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "uju" = ( -/obj/structure/prop/dam/truck/cargo{ - dir = 4 +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Blue_Cargo{ + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "ujy" = ( -/obj/structure/platform_decoration/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "ujS" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1 - }, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, -/turf/open/floor/strata/floor3, +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) +"ukk" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ukm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"ukt" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/flora/wood/stick2{ + pixel_x = -25; + pixel_y = -6; + dir = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ukE" = ( /obj/structure/machinery/landinglight/delayone{ dir = 4 @@ -23140,10 +39660,41 @@ /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"ukH" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -4; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "ukQ" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) +"ukR" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"ukS" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = 3; + pixel_y = 11 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = -13; + pixel_x = -2 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"ulk" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/sky) "ulS" = ( /obj/structure/cargo_container/upp/left, /obj/effect/decal/warning_stripes{ @@ -23151,22 +39702,49 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"umb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "umt" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/entry_zone) +"umv" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "umx" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 1 + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) "umy" = ( /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) +"umD" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/straight/west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uni" = ( /obj/structure/machinery/door_control{ pixel_x = 24; @@ -23183,7 +39761,7 @@ icon_state = "E"; pixel_x = -4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "uoP" = ( @@ -23196,7 +39774,7 @@ /area/sekhmet/outside/southroad) "uoZ" = ( /obj/structure/platform_decoration/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "upa" = ( /obj/structure/surface/table/almayer{ @@ -23210,7 +39788,7 @@ pixel_x = -8; pixel_y = 5 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "UPP - Cargo Storage"; colony_camera_mapload = 0; @@ -23219,9 +39797,26 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"upo" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"upr" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/catwalk) "upE" = ( /obj/structure/window/framed/upp_ship, -/obj/structure/curtain, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + layer = 2.9; + alpha = 220 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/offices) "upN" = ( @@ -23229,15 +39824,36 @@ icon_state = "pottedplant_21"; layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/offices) +"upV" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) +"uqg" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + pixel_y = 13; + layer = 3.02 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/central_road) "uqk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/telecomm/lz2_northeast) "uqA" = ( @@ -23246,7 +39862,7 @@ }, /area/sekhmet/int_reg/comms_lower) "uqB" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 @@ -23255,14 +39871,18 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) "uqM" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "ura" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, /obj/item/storage/box/packet/high_explosive/upp, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/item/ammo_box/magazine/ak4047{ pixel_x = 5; pixel_y = 8 @@ -23274,10 +39894,22 @@ /turf/open/floor/filtrationside/northeast, /area/sekhmet/int_reg/air_filters) "urk" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) +"urt" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "urz" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -23299,14 +39931,22 @@ }, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"urW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 2; + dir = 10 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "usc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/strata/multi_tiles/southwest, @@ -23315,13 +39955,64 @@ /obj/effect/alien/weeds/node, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/outside/southeast_road) +"usi" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick1{ + pixel_x = 17; + pixel_y = 18 + }, +/obj/structure/flora/wood/stick2{ + pixel_y = 25 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uss" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) +"ust" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) +"usu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = -1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"usy" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = -22; + pixel_y = 14 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "usZ" = ( /obj/structure/platform/metal/strata/west, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uto" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -11; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -6; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 13; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "utx" = ( /obj/structure/window/reinforced{ @@ -23334,10 +40025,70 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"utE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"utG" = ( +/obj/structure/surface/table/almayer{ + color = "#8B9490" + }, +/obj/effect/landmark/objective_landmark/science, +/obj/item/prop/magazine/book/spacebeast{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/book/manual/upphistory{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/bookcase/wood{ + icon_state = "woodbook-5"; + pixel_y = 44; + layer = 3.01; + density = 0 + }, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/upphistory, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/obj/item/book/manual/paperwork, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_glass/complex_generic) "utR" = ( /obj/effect/landmark/lizard_spawn, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"uuu" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/catwalk) +"uuR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 5; + dir = 10 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"uvg" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2"; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "uvk" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -23349,7 +40100,7 @@ }, /obj/structure/machinery/colony_floodlight, /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "uvA" = ( /obj/structure/bed/chair/wood/normal{ @@ -23358,26 +40109,92 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "uvF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles/southeast, -/area/sekhmet/int_reg/southwest_complex) +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/southroad) +"uwk" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "uwn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) +"uwr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "uws" = ( -/obj/structure/largecrate/random, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 }, +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"uwu" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "uwB" = ( -/obj/structure/platform/stone/soro/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"uwE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -10; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uwJ" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 25; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 2; + pixel_y = -15 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uxg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "uxj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/knife/butcher{ @@ -23392,21 +40209,40 @@ }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) +"uxt" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uxy" = ( +/obj/effect/abstract/ripple/shadow, +/turf/closed/wall/strata_ice/swamp, +/area/sekhmet/outside/swamp) "uxA" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_x = 15; + pixel_y = -11 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/int_heavy/research) +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) "uxH" = ( /turf/open/floor/strata/orange_edge/east, /area/sekhmet/int_reg/complex_comms) +"uxO" = ( +/obj/structure/prop/swamp_plants/algae/straight/east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uxS" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +/obj/structure/machinery/light/small, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" }, -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "uxX" = ( /obj/structure/closet{ @@ -23423,17 +40259,50 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"uye" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -10 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "uyh" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/stairs/perspective/kutjevo{ - dir = 1 + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) +"uyu" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/hosptial) +"uyC" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -2; + pixel_y = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "uyL" = ( /obj/structure/prop/almayer/cannon_cable_connector, /turf/open/floor/prison/floor_marked, /area/sekhmet/outside/east_jungle) +"uzb" = ( +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/southroad) "uze" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/corsat/marked, @@ -23443,7 +40312,9 @@ /turf/open/floor/interior/plastic/alt, /area/sekhmet/caves/temple) "uzk" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/open/auto_turf/sand_white/layer0, /area/sekhmet/caves/south_cave) "uzq" = ( @@ -23458,20 +40329,21 @@ pixel_x = -9; pixel_y = 7 }, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/complex_comms) "uzv" = ( -/obj/structure/terminal{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 +/obj/structure/machinery/light/small, +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/plating/kutjevo, -/area/sekhmet/int_reg/catwalk) +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/small_power) "uzA" = ( -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/temple_outer) "uzB" = ( /obj/structure/machinery/light{ @@ -23482,17 +40354,43 @@ "uzD" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/central_road) +"uzG" = ( +/obj/structure/flora/wood/stick4{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"uAi" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 9; + pixel_y = -18 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) "uAm" = ( /obj/structure/machinery/disposal, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) "uAv" = ( /obj/structure/noticeboard{ - pixel_x = 16; - pixel_y = 31 + pixel_x = 14; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 41; + pixel_x = -10 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_3"; + desc = null; + name = "sticky notes"; + pixel_x = 9 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "uAR" = ( @@ -23501,19 +40399,43 @@ "uAS" = ( /obj/structure/cargo_container/upp/tan/left, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"uBp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -4; + pixel_y = 9 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "uBB" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/west, /area/sekhmet/int_reg/air_filters) -"uCe" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +"uBC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Complex Security Shutter"; + id = "powerunitshutter"; + color = "#8B9490"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/small_power) +"uBN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 14 }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uCe" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/orange_edge/southwest, /area/sekhmet/int_reg/comms_lower) "uCn" = ( @@ -23522,13 +40444,21 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"uCs" = ( +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/caves/temple) "uCw" = ( /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) "uCG" = ( /obj/structure/largecrate/random/secure, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"uCI" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uCR" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/outside/southeast_road) @@ -23537,13 +40467,22 @@ color = "#6b675e"; layer = 2.79 }, -/obj/item/hardpoint/locomotion/van_wheels, /obj/structure/machinery/light{ light_power = 0.5; dir = 1 }, +/obj/item/hardpoint/locomotion/hovercraft_propellers, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) +"uCX" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "uDj" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/effect/landmark/objective_landmark/far, @@ -23553,9 +40492,29 @@ /obj/structure/machinery/pipedispenser, /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) +"uDQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -10; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uEk" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) +"uEQ" = ( +/obj/structure/barricade/handrail/kutjevo, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "uEY" = ( /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) @@ -23571,85 +40530,134 @@ pixel_y = 8 }, /obj/item/clothing/accessory/storage/webbing, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"uFp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/east_jungle) "uFt" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 4 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) "uFw" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) +"uFF" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) "uFI" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/sekhmet/int_heavy/research) +"uFJ" = ( +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) +"uFZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 1; + pixel_y = -10 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "uGe" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "uGr" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) "uGx" = ( /obj/structure/closet/coffin/woodencrate, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/obj/item/stack/sheet/metal/small_stack, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"uGB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "uGQ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/item/prop/magazine/book{ - desc = "A copy of La Fumée, a UPP magazine that mostly circulates in its French-influenced territories, though this particular print has been translated to reach a wider audience. On the cover is a stylized depiction of a deadman's head with white antlers growing out the sides."; - name = "La Fumée, Vol. 4 No. 15"; - pixel_y = 10; - icon_state = "tome"; - pixel_x = 10 - }, /obj/item/clothing/head/uppcap/civi{ pixel_x = -3; pixel_y = 8 }, +/obj/item/clothing/accessory/patch/upp/alt, /obj/item/clothing/head/uppcap/beret{ pixel_x = -10; pixel_y = 2 }, +/obj/item/prop/magazine/book{ + desc = "A copy of La Fumée, a UPP magazine that mostly circulates in its French-influenced territories, though this particular print has been translated to reach a wider audience. On the cover is a stylized depiction of a deadman's head with white antlers growing out the sides."; + name = "La Fumée, Vol. 4 No. 15"; + pixel_y = 10; + icon_state = "tome"; + pixel_x = 10 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "uGY" = ( -/obj/structure/cargo_container/canc/tan/mid, /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/cargo_container/upp_small/container_17/left, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) "uHf" = ( -/obj/structure/stairs, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "uHm" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" }, +/obj/item/clothing/suit/armor/vest/UPP, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) +"uHp" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -15; + pixel_y = 4 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "uHt" = ( /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) @@ -23660,11 +40668,20 @@ network = list("Sekhmet"); dir = 8 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/research) +"uIy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) +"uIH" = ( +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sky) "uIO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/southroad) "uIY" = ( /obj/structure/sign/safety/commline_connection{ @@ -23700,7 +40717,7 @@ /obj/structure/prop/ice_colony/surveying_device{ dir = 1 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) "uJG" = ( /obj/item/storage/box/gloves{ @@ -23719,7 +40736,7 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "uJJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) @@ -23742,6 +40759,41 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"uKV" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 1; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"uKY" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = -6; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 5; + pixel_y = -13; + color = "#865c47"; + icon_state = "flammable_pipe_3"; + pixel_x = -6; + layer = 5 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/outside/swamp) "uLa" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/machinery/light{ @@ -23751,13 +40803,47 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/south_complex) +"uLr" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/prison/bright_clean, +/area/sekhmet/int_heavy/entry_zone) "uLs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata/multi_tiles/west, -/area/sekhmet/int_heavy/research) +/obj/structure/flora/jungle/vines/light_2{ + color = "#fceab2" + }, +/turf/closed/wall/strata_ice/swamp, +/area/sekhmet/outside/airfield) +"uLC" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = -21 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"uLP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/plate, +/area/sekhmet/int_reg/military_hangar) "uLQ" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) +"uLR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 13; + dir = 8; + pixel_x = -8 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"uMW" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uMX" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -23769,24 +40855,23 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "uNg" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" +/obj/structure/flora/grass/tallgrass/swamp, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) "uNA" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - pixel_x = -7; - name = "colonial operations terminal"; - color = "#8B9490" - }, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; layer = 2.9; pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/big_computers/computerdark/computer4{ + pixel_x = -7; + icon_state = "dark_computer_mps_off" + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "uNQ" = ( @@ -23813,9 +40898,28 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_heavy/research) "uOd" = ( -/obj/structure/platform/stone/soro/west, -/obj/structure/platform/stone/soro/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uOr" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 1; + pixel_x = -9; + pixel_y = -2 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"uOQ" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/outside/swamp) "uPa" = ( /obj/effect/landmark/objective_landmark/science, @@ -23842,17 +40946,59 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/engineering) +"uPS" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"uQc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"uQv" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = -7 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"uQB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 24; + pixel_y = 9 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uQP" = ( /obj/structure/platform/metal/kutjevo_smooth/east, /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) +"uRa" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 16; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uSe" = ( /obj/structure/sign/safety/storage{ pixel_x = 7; pixel_y = -24 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southroad) "uSu" = ( /obj/structure/machinery/photocopier{ @@ -23870,16 +41016,15 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "uTi" = ( -/obj/structure/barricade/handrail/kutjevo{ - density = 0; - name = "supports"; - desc = "a series of metal shafts in a pattern meant for holding stuff up including you, fatty."; - pixel_y = 12; - layer = 2.5 - }, +/obj/structure/prop/fake/handrail/kutjevo, /obj/structure/platform/metal/kutjevo_smooth/north, /obj/structure/platform/metal/kutjevo_smooth/west, -/turf/open/gm/dirt, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 7; + pixel_y = -13 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/outside/swamp) "uTm" = ( /obj/effect/decal/warning_stripes{ @@ -23887,32 +41032,68 @@ pixel_y = 2 }, /obj/item/stool, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"uTo" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -10; + pixel_y = -4 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "uTr" = ( +/obj/structure/platform/metal/kutjevo_smooth, /obj/structure/stairs/perspective/kutjevo{ - dir = 8 + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) +"uTv" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"uTC" = ( +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/caves/temple) +"uUe" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "uUq" = ( /obj/structure/barricade/handrail/wire{ dir = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer1{ + icon_state = "dark_computer_radar_off" }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "uUF" = ( /turf/closed/wall/upp_ship/reinforced, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"uUW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) +"uVf" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "uVi" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23927,13 +41108,37 @@ color = "#6b675e"; layer = 2.79 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"uVO" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) +"uVT" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/straight/south{ + pixel_x = -15; + pixel_y = 7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "uWm" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_comms) +"uWC" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "uWM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -23945,12 +41150,16 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"uWN" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "uWU" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, /obj/structure/prop/server_equipment/laptop/on, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -23966,8 +41175,21 @@ "uXZ" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/machinery/power/apc/no_power/west, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/telecomm/lz2_northeast) +"uYf" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 4; + dir = 8; + pixel_x = 3 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "uYl" = ( /obj/structure/surface/table/almayer{ color = "#aeaeae" @@ -23975,10 +41197,55 @@ /obj/item/device/flashlight, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) +"uYt" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -9 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"uYB" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = 2; + pixel_x = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) +"uZx" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"uZE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"uZT" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) "vas" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/military_hangar) +"vaz" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -20; + pixel_y = -6 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "vaE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23988,18 +41255,24 @@ icon_state = "E"; pixel_x = 2 }, -/obj/structure/filingcabinet{ +/obj/structure/filingcabinet/dark{ pixel_x = -8; - pixel_y = 1; - color = "#8B7B5B" + pixel_y = 1 }, -/obj/structure/filingcabinet{ +/obj/structure/filingcabinet/dark{ pixel_x = 8; - pixel_y = 1; - color = "#8B7B5B" + pixel_y = 1 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"vaW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "vaX" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "UPPmilCloset"; @@ -24013,9 +41286,35 @@ /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/warnplate/southwest, /area/sekhmet/shuttles/drop3) +"vbC" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 17; + pixel_y = -20; + dir = 1 + }, +/obj/structure/flora/wood/stick1{ + pixel_x = -1; + pixel_y = -15; + dir = 1 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "vbU" = ( -/turf/open/gm/coast/beachcorner/north_east, +/obj/structure/flora/wood/stick4{ + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, /area/sekhmet/outside/east_jungle) +"vdq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) "vdt" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -24031,6 +41330,17 @@ /obj/item/storage/pouch/autoinjector, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) +"vdv" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 5; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -8; + pixel_y = -13 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "vdH" = ( /turf/open/floor/corsat/marked, /area/sekhmet/outside/central_road) @@ -24051,7 +41361,7 @@ pixel_x = 6; pixel_y = 4 }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/airfield) "veu" = ( /turf/open/floor/plating/plating_catwalk/strata, @@ -24059,44 +41369,87 @@ "veG" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"veJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12" + }, +/obj/structure/barricade/handrail/wire{ + layer = 5.11; + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/sekhmet/int_reg/catwalk) +"veP" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -16; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -19; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"vfC" = ( +/obj/structure/platform/metal/shiva/north, +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vgq" = ( /obj/structure/cargo_container/upp/mk6/mid{ pixel_x = 1; pixel_y = 11; layer = 3.01 }, -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" - }, -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff"; - pixel_y = 21 +/obj/structure/cargo_container/kelland/alt/left{ + dir = 8 }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"vgz" = ( +/obj/structure/window/framed/upp_ship, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Complex Security Shutter"; + id = "powerunitshutter"; + color = "#8B9490"; + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/small_power) "vgB" = ( /obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) +"vgF" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/flora/wood/stick1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vgG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/upp{ id = "aft_door" }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/ship2) -"vgH" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/sekhmet/outside/temple_outer) "vgM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24105,13 +41458,44 @@ /area/sekhmet/int_reg/engineering) "vhg" = ( /obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) -"vhq" = ( -/turf/open/gm/coast/south, -/area/sekhmet/outside/temple_outer) +"vhr" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 13; + pixel_y = -2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"vhv" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -8 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"vhJ" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) +"vid" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -12; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -10; + pixel_y = -2 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vih" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -24134,13 +41518,13 @@ pixel_y = 13; anchored = 1 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "vjh" = ( /turf/open/slippery/hull/dir/southwest, /area/sky) "vjG" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/temple_outer) "vjJ" = ( /turf/closed/wall/strata_outpost, @@ -24150,7 +41534,7 @@ /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "vkw" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) "vkO" = ( @@ -24161,7 +41545,7 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/engineering) "vlo" = ( @@ -24174,12 +41558,22 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) +"vma" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/central_road) "vmq" = ( /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /obj/structure/pipes/vents/pump, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) "vmZ" = ( @@ -24188,58 +41582,196 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"vnc" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -19; + pixel_y = -33 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -23; + pixel_y = -10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 8; + pixel_y = -11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"vnh" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"vnt" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 17; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"vnu" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vnP" = ( -/turf/open/gm/dirt2, -/area/sekhmet/caves/south_cave) +/turf/closed/wall/rock{ + color = "#797571" + }, +/area/space) "vnY" = ( -/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, /area/sekhmet/outside/central_road) +"voa" = ( +/obj/structure/flora/bush/ausbushes/palebush{ + color = "#fceab2"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) "voj" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_x = 9 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"voD" = ( +/obj/structure/prop/swamp_plants/algae/straight/south, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "voM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"voQ" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -7; + pixel_y = -16 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "voV" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth/west, -/turf/open/gm/coast/beachcorner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, /area/sekhmet/outside/swamp) "voZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/power/apc/power/south, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship1) +"vpO" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "vqf" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"vqp" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 14; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_y = -5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) +"vqy" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"vqA" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "vqZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) +"vrh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 12; + pixel_y = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "vrz" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/south, +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"vsK" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship/reinforced/outer, +/area/sekhmet/int_reg/telecomm/lz2_northeast) +"vtp" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -3 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "vtL" = ( -/obj/structure/machinery/power/apc/power/west, -/turf/open/floor/strata/floor3, +/obj/structure/flora/wood/stick1{ + dir = 1 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 27; + pixel_y = 15 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, /area/sekhmet/outside/swamp) "vtY" = ( /obj/structure/blocker/invisible_wall, @@ -24279,26 +41811,42 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/offices) "vuu" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) -"vuy" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" +"vuw" = ( +/obj/structure/largecrate/random, +/obj/item/clothing/mask/gas/upp_pfb{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_glass/complex_generic) +"vuy" = ( +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"vvm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "vvv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_y = 24; pixel_x = 16 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "vvx" = ( @@ -24324,14 +41872,23 @@ light_power = 0.3; light_range = 4 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) "vwg" = ( /turf/open/floor/kutjevo/multi_tiles/west, /area/sekhmet/int_reg/military_hangar) "vwh" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/east, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + color = "#fceab2" + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) +"vwn" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = -1; + pixel_y = -14 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "vwu" = ( /obj/structure/bed/roller/hospital_empty/bigrollerempty, @@ -24350,6 +41907,28 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"vxb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = 3; + pixel_y = 6 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -2; + pixel_y = -15 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"vxD" = ( +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) "vxM" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.01 @@ -24370,19 +41949,34 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"vxW" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/flora/wood/stick2{ + dir = 1; + pixel_x = -9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "vxZ" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Turquoise_Cargo, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) +"vyp" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "vys" = ( -/obj/structure/largecrate, +/obj/structure/largecrate/empty, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "vzh" = ( /obj/structure/cargo_container/upp/left, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) @@ -24401,16 +41995,50 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/research) +"vzv" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.01 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/sekhmet/outside/swamp) +"vzw" = ( +/obj/structure/machinery/power/power_generator/port_gen/pacman, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/air_filters) "vAw" = ( -/obj/structure/closet/crate, +/obj/item/ammo_magazine/shotgun/heavy/buckshot, +/obj/item/weapon/gun/shotgun/type23, +/obj/item/weapon/gun/shotgun/type23, +/obj/structure/closet/crate/ammo, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"vAA" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "vAD" = ( /obj/structure/machinery/landinglight/delaytwo{ dir = 1 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"vAQ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 10; + pixel_y = -17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vAR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door_control/brbutton/alt{ @@ -24420,33 +42048,97 @@ }, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) -"vBD" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/gm/dirt2, -/area/sekhmet/outside/airfield) -"vCp" = ( -/obj/structure/machinery/light{ +"vBo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) +"vBD" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) +"vBJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = 11 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) +"vBS" = ( +/obj/structure/surface/rack{ + color = "#98a3ab" + }, +/obj/item/clothing/shoes/marine/upp/black/knife, +/obj/item/clothing/mask/gas/upp_pfb, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/caves/temple) +"vCp" = ( +/obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/can_opener{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/meat{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_container/food/drinks/cans/food/upp/meat{ + pixel_x = -13; + pixel_y = 14 + }, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) "vCA" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/yard) +"vCJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) +"vDa" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "vDd" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/garage) -"vDl" = ( -/obj/structure/cargo_container/kelland/right{ - color = "#cc66ff" +"vDk" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/stack/sheet/plasteel/med_large_stack, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/garage) +"vDl" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/kelland/alt/right{ + dir = 8 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "vDQ" = ( @@ -24459,11 +42151,11 @@ /area/sekhmet/int_reg/warehouse) "vDY" = ( /obj/effect/alien/weeds/node, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/temple_outer) "vEu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) "vEC" = ( /obj/structure/fence/slim/upp, @@ -24477,12 +42169,47 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/carpet, /area/sekhmet/int_glass/complex_generic) +"vEJ" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -26; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -11; + pixel_y = -6 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vFk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/upp{ id = "aft_door" }, /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/sekhmet/int_reg/ship1) +"vFF" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 16; + pixel_y = -7 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"vFG" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/caves/temple) +"vFX" = ( +/obj/structure/surface/table/holotable{ + color = "#424a50" + }, +/obj/effect/landmark/objective_landmark/science, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/caves/temple) "vGM" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -24502,13 +42229,60 @@ /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"vHH" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -10; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -3; + pixel_y = -11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vHI" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/northeast, /area/sekhmet/int_reg/water_filters) +"vHL" = ( +/obj/structure/flora/wood/stick3{ + dir = 4; + pixel_x = 2; + pixel_y = -18 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"vHR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -9; + dir = 8; + pixel_x = 2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) "vHW" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/complex_generic) +"vHZ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -4; + dir = 8; + pixel_x = -3 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"vIw" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/sekhmet/int_reg/catwalk) "vIP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -24527,24 +42301,44 @@ /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "vJh" = ( -/obj/structure/noticeboard{ - pixel_y = 33; - pixel_x = 1 - }, /obj/structure/machinery/photocopier, +/obj/structure/sign/calendar/upp{ + pixel_y = 28 + }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "vJs" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"vJu" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 34; + pixel_x = -1 + }, +/obj/structure/sign/poster/upp{ + pixel_y = 31; + pixel_x = 7 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "vJA" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" +/obj/structure/flora/grass/tallgrass/swamp/corner, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"vJB" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vJJ" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -24592,6 +42386,10 @@ opacity = 0 }, /area/sekhmet/int_reg/ship2) +"vKj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "vKn" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -24605,6 +42403,15 @@ /obj/structure/bed/chair/comfy/blue, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) +"vKw" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "vKy" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -24617,6 +42424,13 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"vKI" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/catwalk) "vKL" = ( /obj/structure/closet{ pixel_x = -8 @@ -24653,8 +42467,8 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) "vLj" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/closet/firecloset/upp_full, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "vLs" = ( @@ -24662,21 +42476,45 @@ /area/sekhmet/int_reg/comms_lower) "vLw" = ( /obj/effect/decal/siding, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/offices) "vLH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"vLM" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"vLQ" = ( +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -2; + pixel_y = 9 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/east_jungle) "vMg" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) +"vNc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "vNf" = ( /obj/structure/barricade/handrail/wire, /obj/structure/barricade/handrail/wire{ @@ -24686,8 +42524,11 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) "vNg" = ( -/obj/structure/stairs, -/obj/structure/largecrate/random/barrel/true_random, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) "vNz" = ( @@ -24695,12 +42536,20 @@ /turf/open/floor/mech_bay_recharge_floor, /area/sekhmet/int_reg/military_hangar) "vNC" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff" - }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/upp/left, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"vNK" = ( +/obj/structure/platform/metal/strata, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick2{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vNN" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -24709,25 +42558,9 @@ /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) "vOl" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" - }, +/obj/structure/machinery/recharge_station, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/military_hangar) -"vOo" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = -7 - }, -/obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/sekhmet/outside/temple_outer) "vOz" = ( /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) @@ -24735,8 +42568,12 @@ /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"vOM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "vOQ" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "vPe" = ( /turf/closed/shuttle/ert{ @@ -24744,34 +42581,134 @@ }, /area/sekhmet/int_reg/ship1) "vPj" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/water_filters) +"vPv" = ( +/obj/structure/platform/metal/shiva/west, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/garage) "vPJ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/pipes/vents/pump, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) +"vQl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -13; + pixel_y = 19 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -5; + pixel_y = -12 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"vQw" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "vRk" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_intel) +"vRo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "vRr" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"vRA" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"vRB" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) +"vRC" = ( +/obj/structure/flora/wood/stick2{ + pixel_y = -1; + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"vRY" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) +"vSr" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southeast_road) "vSu" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/upp_ship, /area/sekhmet/outside/airfield) +"vSE" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) +"vTg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = 5; + dir = 10 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) +"vTh" = ( +/obj/effect/decal/floor_symbol/upp/northface/east{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "vTv" = ( /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "vTw" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /obj/structure/platform_decoration/metal/kutjevo_smooth/north, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "vTz" = ( /obj/structure/window/framed/upp_ship, @@ -24783,22 +42720,69 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/complex_operation) +"vTS" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vUj" = ( /obj/structure/closet/secure_closet/engineering_welding, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/yard) +"vUF" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_x = 5 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "vUN" = ( /obj/structure/fence/slim/upp, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"vUQ" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -17; + pixel_y = -4; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/caves/temple) +"vUR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass{ + pixel_y = 4 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"vUV" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -17; + pixel_y = -4; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "vUX" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 6 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/central_road) "vVj" = ( /obj/structure/surface/table/holotable{ @@ -24807,19 +42791,33 @@ /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/caves/temple) +"vVI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "vVZ" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; - dir = 1; + color = "#a39e99"; + dir = 8; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "vWm" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison/kitchen, +/turf/open/floor/hybrisa/tile/tilewhite, /area/sekhmet/int_glass/south_complex) +"vWv" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -14; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "vWD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -24832,16 +42830,32 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"vWE" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -7; + pixel_y = -15 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vWJ" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"vWR" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer0_mud_alt, +/area/sekhmet/outside/swamp) "vWX" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -24856,11 +42870,22 @@ "vXf" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) +"vXH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vXP" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) @@ -24875,6 +42900,14 @@ }, /turf/open/floor/strata/red1, /area/sekhmet/int_reg/complex_operation) +"vYH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 11; + pixel_y = 12 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "vYO" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -24892,20 +42925,43 @@ "vYR" = ( /turf/open/floor/interior/plastic/alt, /area/sekhmet/outside/east_jungle) +"vYW" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -17; + pixel_y = -4 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "vZd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 1 }, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) -"vZO" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/sekhmet/outside/temple_outer) +"vZm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "vZY" = ( /obj/structure/platform/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) +"wai" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = 21 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -14; + pixel_y = 7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wax" = ( /obj/structure/barricade/handrail/wire{ dir = 1 @@ -24913,7 +42969,11 @@ /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.01 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "waz" = ( @@ -24925,13 +42985,26 @@ pixel_x = -3; pixel_y = 16 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/obj/item/reagent_container/food/drinks/cans/food/upp/buckwheat{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) +"waC" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "waG" = ( /obj/structure/stairs/perspective/kutjevo{ - dir = 4 + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "waO" = ( /obj/structure/surface/table/almayer{ @@ -24944,20 +43017,36 @@ /area/sekhmet/int_reg/military_hangar) "wbb" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/caves/temple) "wbr" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/carpet, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/science, +/obj/item/book/manual/upphistory{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/gold_clock{ + pixel_x = 1; + pixel_y = 41 + }, +/obj/item/book/manual/upphistory{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/prop/magazine/book/borntokill{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/complex_generic) "wbE" = ( /obj/effect/decal/warning_stripes{ @@ -24971,23 +43060,81 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "wbP" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/swamp) +"wbT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -5; + pixel_y = -12; + dir = 6 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/east_jungle) "wcb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/south_complex) +"wcm" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -14; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "wcn" = ( -/obj/structure/platform/stone/soro/north, -/turf/open/gm/dirt, -/area/sekhmet/outside/east_jungle) +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = -6 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"wcF" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 5; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 18; + pixel_y = -6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wcJ" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "wda" = ( -/turf/open/shuttle/black, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8; + dir = 1 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/ship2) "wdz" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -24995,30 +43142,68 @@ pixel_y = 24; pixel_x = 16 }, -/obj/structure/machinery/vending/cola, +/obj/structure/machinery/vending/cola/alt, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"wdY" = ( +/obj/structure/machinery/light/small, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "wed" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = -4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "wer" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/interior/plastic/alt, /area/sekhmet/caves/temple) +"wey" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -19; + pixel_y = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"weB" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"weJ" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 16; + pixel_y = 14 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wfa" = ( -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, /area/sekhmet/int_glass/offices) "wfb" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) +"wfI" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz2_northeast) "wfV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "biggarage2"; @@ -25039,21 +43224,43 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/garage) +"wgG" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_y = 30 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/complex_comms) +"wgK" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -2; + pixel_y = -16 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "whb" = ( -/obj/structure/cargo_container/kelland/left{ - color = "#cc66ff"; - pixel_x = -4; +/obj/structure/cargo_container/kelland/alt/left{ + dir = 4; + pixel_x = -2; pixel_y = 5 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "whd" = ( /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/military_hangar) +"whl" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 13; + dir = 8; + pixel_x = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "whm" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -25077,16 +43284,33 @@ /obj/structure/platform/metal/shiva/east, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"whD" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wim" = ( +/obj/structure/blocker/invisible_wall, /obj/structure/stairs/perspective{ + color = "#838a88"; icon_state = "p_stair_full" }, -/obj/structure/blocker/invisible_wall, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"wiw" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) "wiy" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) "wje" = ( /obj/structure/machinery/light{ @@ -25104,14 +43328,32 @@ icon_state = "W" }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) +"wks" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "wku" = ( /obj/structure/platform/metal/shiva/east, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/central_road) +"wkR" = ( +/obj/structure/flora/wood/stick1, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/south_west, +/area/sekhmet/outside/swamp) "wlg" = ( /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"wln" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5; + pixel_y = -1 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) "wlD" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -25132,7 +43374,7 @@ pixel_x = 20; pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "wlK" = ( @@ -25140,7 +43382,7 @@ /area/sekhmet/int_glass/hosptial) "wme" = ( /obj/effect/landmark/lizard_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/east_jungle) "wmh" = ( /obj/structure/window/reinforced, @@ -25148,7 +43390,7 @@ icon_state = "E"; pixel_x = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "wml" = ( @@ -25157,13 +43399,24 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/hosptial) +"wms" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 41 + }, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/int_reg/engineering) "wmL" = ( -/obj/structure/platform/stone/soro, -/obj/structure/platform/stone/soro/west, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner/north_east, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "wnn" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) "wnu" = ( @@ -25171,6 +43424,10 @@ /obj/effect/spawner/random/bomb_supply, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"wnS" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/outside/swamp) "wnU" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -25178,6 +43435,24 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/complex_generic) +"wob" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wof" = ( +/obj/structure/machinery/door/airlock/multi_tile/upp/eng/autoname{ + dir = 1; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + name = "Complex Security Shutter"; + id = "powerunitshutter"; + color = "#8B9490"; + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/strata, +/area/sekhmet/int_reg/small_power) "woj" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -25192,36 +43467,69 @@ /obj/structure/platform/metal/shiva, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/complex_operation) +"won" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/reagent_dispensers/tank/fuel, +/turf/open/floor/strata/multi_tiles/southwest, +/area/sekhmet/int_heavy/research) "wos" = ( -/obj/structure/filingcabinet/medical{ +/obj/structure/filingcabinet/dark/medical{ pixel_x = 7; pixel_y = 17; - can_block_movement = 0; - color = "#8B7B5B" + can_block_movement = 0 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) -"wps" = ( -/obj/structure/stairs{ - dir = 1 +"woE" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -5; + dir = 8; + pixel_x = -31 }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) +"wps" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_solo_cap" + }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/sekhmet/int_reg/ship1) "wpH" = ( /obj/structure/janitorialcart, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) +"wpI" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 19; + pixel_y = 1 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"wqa" = ( +/obj/structure/surface/rack{ + color = "#98a3ab" + }, +/obj/item/clothing/shoes/marine/upp/black/knife, +/obj/item/clothing/mask/gas/upp_pfb, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/airfield) "wqg" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -25233,12 +43541,12 @@ /area/sekhmet/int_reg/telecomm/lz2_northeast) "wqi" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/central_road) "wqz" = ( /obj/effect/decal/warning_stripes{ @@ -25247,10 +43555,40 @@ /obj/structure/machinery/power/apc/power/south, /turf/open/floor/strata/floor3/east, /area/sekhmet/caves/temple) +"wqN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -2; + dir = 8; + pixel_x = 3 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"wqT" = ( +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/military_hangar) +"wqU" = ( +/obj/structure/prop/swamp_plants/algae/full, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wqY" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/strata/orange_cover, /area/sekhmet/int_reg/comms_lower) +"wqZ" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 31 + }, +/turf/open/floor/prison/sterile_white, +/area/sekhmet/int_glass/complex_generic) "wrn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -25267,15 +43605,49 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"wrE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_reg/southwest_complex) "wrH" = ( -/obj/structure/platform/stone/soro/west, -/obj/structure/platform/stone/soro/north, -/turf/open/gm/coast/west, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/north{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/straight/west, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"wrI" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"wrW" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/flora/wood/stick1{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "wrY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3/east, /area/sekhmet/int_heavy/entry_zone) +"wsb" = ( +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/sekhmet/int_heavy/research) "wso" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/kutjevo, @@ -25306,23 +43678,44 @@ /turf/open/floor/strata/floor3/east, /area/sekhmet/int_reg/warehouse) "wsL" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2{ + pixel_x = 3; + pixel_y = -13 + }, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - pixel_y = -7 + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 }, -/turf/open/gm/coast/beachcorner2/north_west, -/area/sekhmet/outside/temple_outer) +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) +"wsY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) "wts" = ( /obj/structure/cargo_container/upp/left, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) "wuj" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator, -/turf/open/floor/corsat, -/area/sekhmet/int_heavy/research) +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -1; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -10; + pixel_y = -10 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wuu" = ( /obj/structure/prop/ice_colony/ground_wire, -/turf/open/gm/dirt/desert_dug, +/turf/open/gm/dirt/swamp_dirt/variant_6, /area/sekhmet/outside/temple_outer) "wuy" = ( /obj/item/weapon/dart{ @@ -25350,21 +43743,40 @@ pixel_y = -3 }, /obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/cloth, +/obj/structure/surface/table/reinforced/cloth{ + color = "#394c6b" + }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) +"wuK" = ( +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8 + }, +/turf/open/floor/kutjevo/grey, +/area/sekhmet/shuttles/drop3) "wvl" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/south_complex) "wvB" = ( /obj/structure/closet/coffin/woodencrate, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/item/stack/sheet/cardboard/small_stack, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"wvH" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wwh" = ( /obj/structure/platform_decoration/metal/strata/west, -/turf/open/gm/coast/beachcorner2/north_east, +/obj/structure/flora/wood/stick2{ + dir = 1 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, /area/sekhmet/outside/swamp) "wwl" = ( /obj/structure/machinery/door_control{ @@ -25373,8 +43785,15 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"wwn" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -8; + pixel_y = -21 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "wwM" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5 }, @@ -25383,6 +43802,26 @@ "wwR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/sekhmet/outside/southeast_road) +"wxg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/west_cave) +"wxD" = ( +/obj/structure/cargo_container/kelland/alt/left{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) +"wxE" = ( +/obj/structure/flora/wood/stick1, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "wya" = ( /obj/structure/machinery/door/airlock/multi_tile/upp/medical/autoname{ req_one_access = null @@ -25405,11 +43844,23 @@ /area/sekhmet/int_heavy/research) "wyL" = ( /obj/structure/platform_decoration/metal/strata/west, -/turf/open/gm/river/no_slowdown, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "wzb" = ( /obj/structure/platform/metal/kutjevo_smooth/north, -/turf/open/gm/coast/west, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "wAc" = ( /obj/item/storage/pouch/pistol, @@ -25430,16 +43881,33 @@ "wAg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/complex_operation) +"wAh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/kelland/alt/right{ + dir = 8; + pixel_y = -2; + opacity = 0 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/military_hangar) "wAB" = ( /obj/structure/platform/metal/shiva/east, /obj/effect/alien/weeds/node, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"wAP" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wBn" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/kutjevo/plate, @@ -25455,6 +43923,10 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"wBK" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "wBR" = ( /obj/structure/machinery/reagentgrinder/industrial{ pixel_x = -4; @@ -25464,25 +43936,63 @@ color = "#8B9490" }, /obj/structure/machinery/light/small{ - light_power = 0.25; dir = 1 }, +/obj/item/tool/kitchen/can_opener/compact{ + pixel_x = 4; + pixel_y = -5 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/south_complex) "wCe" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 1; + pixel_x = -2; + pixel_y = 6; + buckling_x = -2; + buckling_y = 6 }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"wCh" = ( +/obj/effect/decal/floor_symbol/upp/northface/southeast{ + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "wCG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) -"wCW" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +"wCJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = 16; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -5; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wCU" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -13; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -1; + pixel_y = -13 }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wCW" = ( +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/int_reg/comms_lower) "wDm" = ( /obj/structure/machinery/light/double{ @@ -25490,12 +44000,33 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"wDy" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_west, +/area/sekhmet/outside/swamp) "wDD" = ( /obj/structure/barricade/handrail/wire{ dir = 1 }, /turf/open/floor/strata/floor2, /area/sekhmet/outside/east_jungle) +"wDE" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 12; + pixel_y = -19 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wDG" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 3; + dir = 8; + pixel_x = -1 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/temple_outer) "wDM" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -25504,14 +44035,33 @@ /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "wDW" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_outpost, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/small_power) +"wEd" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/interior/plastic/alt, +/area/sekhmet/caves/temple) +"wEE" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 16; + pixel_y = 13 + }, +/turf/open/gm/coast/dirt/swampdir/west, /area/sekhmet/outside/swamp) "wEF" = ( /turf/open/slippery/hull/dir/west, /area/sky) +"wEG" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "wEH" = ( /obj/structure/bed/chair, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) "wEQ" = ( @@ -25519,8 +44069,12 @@ density = 0 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/no_slowdown, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"wEV" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/outside/airfield) "wEX" = ( /obj/item/tool/wirecutters/tactical{ pixel_x = -2; @@ -25535,6 +44089,24 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) +"wFc" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -15; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southeast_road) +"wFe" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/central_road) "wFi" = ( /obj/item/paper_bin{ pixel_x = 7; @@ -25553,13 +44125,57 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"wFv" = ( +/obj/structure/prop/swamp_plants/algae/straight/east{ + pixel_x = -15 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "wFy" = ( -/obj/structure/platform_decoration/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/temple_outer) +"wFz" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 17; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -4; + pixel_y = -23 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wFX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 9; + pixel_x = -12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "wGb" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/sekhmet/outside/temple_outer) +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"wGe" = ( +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -6; + pixel_y = -6; + dir = 10 + }, +/turf/open/gm/dirt/swamp_dirt/variant_1, +/area/sekhmet/caves/temple) "wGy" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -25567,8 +44183,13 @@ /obj/structure/window/reinforced/tinted{ dir = 4 }, +/obj/item/clothing/suit/armor/vest/UPP/alt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"wGF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "wGR" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.01 @@ -25576,24 +44197,67 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/southeast, /area/sekhmet/int_reg/water_filters) +"wHb" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -14; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wHd" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/temple_outer) +"wHg" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"wHh" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/southroad) "wHy" = ( /obj/structure/platform/metal/shiva/west, -/obj/structure/stairs{ - dir = 1 +/obj/structure/stairs/perspective{ + color = "#838a88" }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/garage) +"wIh" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"wIF" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_y = 3 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "wJm" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "wJF" = ( @@ -25607,10 +44271,33 @@ /obj/item/storage/surgical_case/regular, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) +"wJK" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -16; + pixel_y = 23 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/airfield) +"wJN" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wJT" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/warehouse) +"wKE" = ( +/obj/structure/flora/wood/stick2{ + pixel_x = -5; + pixel_y = 14 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/east_jungle) "wKH" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -25621,7 +44308,7 @@ pixel_y = 2; desc = "Terminal for programming worker ID card access." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) "wKS" = ( @@ -25629,13 +44316,23 @@ /turf/open/floor/strata/floor3, /area/sekhmet/outside/central_road) "wKY" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) "wLb" = ( /obj/structure/cargo_container/upp/mid, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"wLw" = ( +/obj/item/clothing/shoes/marine/upp/black/knife, +/obj/item/clothing/mask/gas/upp_pfb, +/obj/structure/surface/rack{ + color = "#98a3ab" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/airfield) "wLI" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" @@ -25673,12 +44370,52 @@ }, /turf/open/floor/filtrationside/north, /area/sekhmet/int_heavy/research) +"wMs" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = 18; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wMD" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900" +/obj/structure/flora/grass/tallgrass/swamp/corner, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/east_jungle) +"wNc" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 42 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"wNg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/south_cave) +"wNI" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/east_jungle) "wNR" = ( /obj/effect/decal/warning_stripes{ @@ -25697,14 +44434,14 @@ /area/sekhmet/int_heavy/research) "wNU" = ( /obj/structure/cargo_container/horizontal/blue/top{ - color = "#77b300"; pixel_x = 5; - pixel_y = 6 + pixel_y = 6; + layer = 2.98 }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) "wNY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_glass/hosptial) "wOc" = ( @@ -25716,20 +44453,18 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/water_filters) "wOk" = ( -/obj/structure/sign/poster/art{ - pixel_x = -28; - pixel_y = 5 +/obj/structure/sign/poster/upp{ + pixel_y = 33 }, -/turf/open/floor/plating/plating_catwalk/strata, -/area/sekhmet/int_reg/military_hangar) +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_glass/complex_generic) "wOo" = ( -/obj/structure/platform_decoration/stone/soro/north, +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/gm/dirt, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/caves/temple) -"wOs" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/sekhmet/outside/airfield) "wOE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -25738,19 +44473,32 @@ /obj/structure/blocker/invisible_wall/water{ desc = "The heat is too intense to even be near." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"wOH" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = 16; + pixel_y = -1 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wOU" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) "wOV" = ( -/obj/structure/window/framed/strata, /obj/structure/blocker/invisible_wall, +/obj/structure/window/framed/shiva/grey, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/yard) "wPb" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/east_jungle) "wPp" = ( @@ -25758,10 +44506,22 @@ /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/hosptial) "wPt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/sekhmet/int_heavy/research) +/obj/structure/flora/jungle/vines/light_3{ + color = "#fceab2" + }, +/turf/closed/wall/rock{ + color = "#797571" + }, +/area/sekhmet/outside/airfield) +"wPy" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) "wPI" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -25782,13 +44542,14 @@ light_power = 0.5; dir = 1 }, +/obj/structure/closet/firecloset/upp_full, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/water_filters) "wPV" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" }, +/turf/closed/wall/strata_ice/swamp, /area/sekhmet/outside/southeast_road) "wQb" = ( /obj/effect/decal/warning_stripes{ @@ -25797,20 +44558,57 @@ }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/military_hangar) +"wQc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -14; + pixel_y = -2 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "wQY" = ( -/obj/structure/platform/stone/soro/west, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/east_jungle) +"wRa" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = 10 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "wRd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -7; dir = 10 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/central_road) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) +"wRv" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_2"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship, +/area/sekhmet/int_reg/military_hangar) "wRx" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/military_hangar) +"wRQ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wSz" = ( /obj/structure/machinery/light{ light_power = 0.5; @@ -25818,11 +44616,22 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"wSG" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) "wSH" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 + }, +/obj/structure/bed/chair{ + pixel_y = 10; + buckling_y = 10 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/entry_zone) @@ -25830,11 +44639,17 @@ /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) +"wTw" = ( +/obj/structure/platform/stone/soro_colorable_immune/west{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) "wTy" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_glass/south_complex) "wTO" = ( @@ -25844,7 +44659,7 @@ /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_heavy/research) "wTY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_heavy/research) "wUa" = ( @@ -25861,21 +44676,29 @@ /turf/open/floor/kutjevo/tan/plate, /area/sekhmet/int_glass/hosptial) "wUN" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/garage) "wUO" = ( -/obj/structure/largecrate/random, /obj/structure/machinery/light{ light_power = 0.5; dir = 4 }, +/obj/structure/largecrate/supply/supplies/mre/upp, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/south_complex) +"wUR" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "wUW" = ( /turf/closed/wall/shiva/prefabricated, /area/sekhmet/caves/temple) @@ -25893,6 +44716,13 @@ pixel_x = 11; layer = 3 }, +/obj/item/roller/bedroll/comfy/red{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/clothing/mask/gas/upp_pfb{ + pixel_x = -2 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) "wVS" = ( @@ -25905,8 +44735,12 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/southwest_complex) "wVW" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/cargo_container/kelland/alt/left{ + dir = 8; + pixel_y = -2; + opacity = 0 + }, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) "wVX" = ( @@ -25934,7 +44768,7 @@ /obj/item/storage/backpack/marine/engineerpack/ert, /obj/item/storage/backpack/industrial, /obj/item/storage/backpack/industrial, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) "wXc" = ( @@ -25946,8 +44780,10 @@ /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "wXj" = ( -/obj/structure/platform/stone/soro, -/turf/open/gm/dirt, +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "wXv" = ( /obj/structure/barricade/handrail/wire, @@ -25963,17 +44799,63 @@ }, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) +"wXF" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) +"wYm" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata, +/area/sekhmet/int_reg/comms_lower) +"wYx" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/machinery/light/small{ + light_color = "#C02526"; + color = "#C02526" + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/swamp) +"wYW" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/southroad) "wZh" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 5 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "wZA" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) +"wZL" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + pixel_x = 4 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"wZP" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -18; + pixel_y = -1 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "wZZ" = ( /obj/item/prop/helmetgarb/gunoil{ pixel_x = -11; @@ -25982,25 +44864,39 @@ /obj/item/tool/weldingtool/simple, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_comms) +"xab" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/central_road) +"xaf" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/stairs/perspective{ + color = "#838a88" + }, +/turf/open/floor/prison/bright_clean2, +/area/sekhmet/int_reg/complex_operation) "xai" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/yard) +"xan" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_reg/southwest_complex) "xas" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/disposal, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "xay" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; - dir = 4 +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/east_jungle) +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "xaB" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1; @@ -26021,14 +44917,25 @@ /obj/structure/cargo_container/canc/tan/left, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"xaX" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xbs" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/gm/coast/beachcorner/south_east, -/area/sekhmet/outside/swamp) -"xbF" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/south_east, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, /area/sekhmet/outside/swamp) +"xbC" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/east_jungle) "xbX" = ( /obj/structure/closet/secure_closet/freezer/fridge/groceries, /obj/structure/machinery/light{ @@ -26048,13 +44955,22 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) "xco" = ( /obj/structure/platform_decoration/metal/kutjevo_smooth, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) +"xct" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -11; + pixel_y = -12 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "xcw" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -26070,7 +44986,7 @@ /obj/item/tool/screwdriver{ pixel_x = -8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 @@ -26083,10 +44999,12 @@ }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"xdN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "xeE" = ( -/turf/closed/wall/strata_ice/jungle{ - color = "#ffcc33" - }, +/turf/closed/wall/strata_ice/swamp, /area/sky) "xeK" = ( /obj/structure/surface/rack{ @@ -26105,7 +45023,7 @@ pixel_x = 3; pixel_y = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "UPP - West Hangar"; colony_camera_mapload = 0; @@ -26115,27 +45033,14 @@ /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/military_hangar) "xeY" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "xfa" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/sekhmet/int_reg/ship1) +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) "xfb" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 16; - pixel_x = -8; - can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 16; - pixel_x = 8; - can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" - }, /obj/item/prop/flower_vase/bluewhiteflowers{ pixel_x = -10; pixel_y = 21 @@ -26154,8 +45059,29 @@ pixel_x = 11; anchored = 1 }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/filingcabinet/wood/chestdrawer{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/structure/filingcabinet/wood/chestdrawer{ + pixel_x = 8; + pixel_y = 15 + }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/offices) +"xft" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_y = 12 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xgb" = ( /obj/effect/alien/weeds/node, /turf/open/floor/kutjevo/grey, @@ -26187,6 +45113,11 @@ "xgG" = ( /turf/open/floor/kutjevo/grey, /area/sekhmet/int_reg/yard) +"xgI" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "xgQ" = ( /obj/structure/sink{ pixel_y = 24; @@ -26196,7 +45127,7 @@ pixel_y = 35; pixel_x = -1 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 19 }, /obj/effect/decal/strata_decals/grime/grime1{ @@ -26212,8 +45143,11 @@ /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/engineering) "xhb" = ( -/obj/structure/stairs/perspective/kutjevo, -/turf/open/gm/dirt2, +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "xhD" = ( /obj/structure/bed/chair/wood/normal{ @@ -26222,18 +45156,24 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "xhF" = ( -/obj/structure/flora/grass/tallgrass/jungle{ - color = "#999900" - }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/grass/tallgrass/swamp, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southroad) "xhV" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "colonial operations terminal"; - color = "#8B9490" +/obj/structure/machinery/big_computers/computerdark/computer1{ + icon_state = "dark_computer_radar_off" }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/yard) +"xif" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = -5; + dir = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) "xiF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1; @@ -26241,8 +45181,22 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_heavy/research) -"xiN" = ( -/obj/structure/pipes/vents/pump, +"xiJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = 3 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) +"xiN" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) "xiT" = ( @@ -26252,16 +45206,43 @@ "xjb" = ( /turf/open/floor/kutjevo/plate, /area/sekhmet/outside/southroad) +"xjt" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "xjA" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/telecomm/lz2_northeast) "xka" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, +/obj/structure/sign/poster/pinup{ + pixel_x = 23; + pixel_y = 32 + }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/military_hangar) +"xkg" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 6; + pixel_y = -11 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/airfield) +"xkh" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/obj/structure/platform_decoration/metal/kutjevo_smooth/west, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "xkB" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/camera{ @@ -26274,28 +45255,39 @@ /area/sekhmet/int_glass/complex_generic) "xkG" = ( /obj/effect/landmark/xeno_spawn, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "xkJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = -1 }, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "xkK" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"xkL" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + pixel_x = 12; + pixel_y = 19 + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/airfield) "xlm" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/sky) +"xmb" = ( +/obj/structure/lz_sign/sekhmet_sign/interior, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/military_hangar) "xmf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26307,6 +45299,13 @@ }, /turf/open/floor/corsat/squares, /area/sekhmet/int_heavy/research) +"xmt" = ( +/obj/item/lifesaver{ + icon_state = "lifesaver_1"; + item_state = "lifesaver" + }, +/turf/closed/wall/upp_ship/reinforced, +/area/sekhmet/int_reg/comms_lower) "xmw" = ( /obj/effect/alien/weeds/node, /turf/open/floor/corsat, @@ -26319,7 +45318,7 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/hosptial) "xmX" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/camera{ c_tag = "Central Complex - Stair Access"; colony_camera_mapload = 0; @@ -26328,9 +45327,15 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"xmZ" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "xnt" = ( /obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/cloth, +/obj/structure/surface/table/reinforced/cloth{ + color = "#394c6b" + }, /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_glass/south_complex) "xnx" = ( @@ -26338,14 +45343,14 @@ color = "#8B9490" }, /obj/structure/barricade/handrail/wire, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "xny" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/outside/southroad) "xnE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/warehouse) @@ -26353,24 +45358,68 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/filtrationside/southeast, /area/sekhmet/int_reg/air_filters) +"xnZ" = ( +/obj/structure/prop/fake/handrail/kutjevo, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/prop/swamp_plants/algae/corner/south_east, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "xoA" = ( /turf/open/floor/strata/floor2, /area/sekhmet/outside/central_road) +"xoB" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xoD" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"xoY" = ( +/obj/structure/bed/sofa/south{ + desc = "An old rusty ladder"; + icon = 'icons/obj/structures/ladders.dmi'; + icon_state = "ladder11"; + name = "Old Ladder"; + pixel_y = 19 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "xpg" = ( /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/water_filters) +"xpk" = ( +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -13; + pixel_y = -14 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/swamp) "xpu" = ( -/obj/structure/stairs/perspective/kutjevo, -/turf/open/floor/strata/floor3, +/obj/structure/stairs/perspective/kutjevo{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "xpx" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/military_hangar) "xpE" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 8; - light_power = 0.25 + dir = 8 }, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_glass/hosptial) @@ -26378,9 +45427,86 @@ /obj/structure/machinery/disposal, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"xqT" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush3"; + pixel_x = -7; + pixel_y = -6; + layer = 4.11 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/temple_outer) +"xrr" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xrw" = ( +/obj/structure/platform/stone/soro_colorable_immune{ + color = "#a39e99" + }, +/obj/structure/platform/stone/soro_colorable_immune/east{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"xrF" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/algae/straight/south, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -12; + pixel_y = -9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xrH" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6{ + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "xsl" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/int_glass/complex_generic) +"xsM" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 9; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) +"xsY" = ( +/obj/structure/surface/rack{ + color = "#98a3ab" + }, +/obj/item/clothing/shoes/marine/upp/black/knife, +/obj/item/clothing/mask/gas/upp_pfb, +/turf/open/auto_turf/swamp_grass/layer0, +/area/sekhmet/outside/east_jungle) +"xtc" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = -1; + pixel_y = -4 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -7; + pixel_y = -13 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/east_jungle) "xtw" = ( /obj/structure/machinery/medical_pod/sleeper, /turf/open/floor/kutjevo/tan/plate, @@ -26390,7 +45516,7 @@ pixel_y = 30 }, /obj/structure/bed/chair/comfy/beige, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "xtA" = ( @@ -26398,24 +45524,49 @@ /area/sekhmet/int_reg/southwest_complex) "xtB" = ( /obj/structure/platform/metal/kutjevo_smooth/east, -/turf/open/auto_turf/strata_grass/layer0, +/turf/open/auto_turf/swamp_grass/layer0, /area/sekhmet/outside/airfield) +"xtH" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/temple_outer) "xtI" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"xtN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xtW" = ( /obj/effect/decal/cleanable/flour, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_glass/complex_generic) "xtY" = ( /obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/geiger_counter, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/ship2) "xul" = ( /obj/structure/cargo_container/canc/tan/right, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_heavy/research) +"xuw" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 9; + pixel_y = -24 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "xuM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -26425,9 +45576,14 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) +"xuO" = ( +/obj/structure/platform/metal/shiva, +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xuS" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -26467,7 +45623,7 @@ /obj/item/storage/fancy/cigar/matchbook/brown{ pixel_x = 6 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/hybrisa/carpet/carpetorangered, /area/sekhmet/int_glass/offices) "xvx" = ( /turf/open/floor/almayer/silverfull, @@ -26481,7 +45637,7 @@ pixel_x = 12; pixel_y = 9 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/offices) "xvS" = ( @@ -26496,7 +45652,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) @@ -26507,38 +45663,100 @@ }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/complex_generic) +"xwi" = ( +/obj/structure/window/framed/upp_ship, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/telecomm/lz1_southeast) "xwu" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/plating/warnplate/northeast, /area/sekhmet/shuttles/drop3) "xwC" = ( /obj/structure/noticeboard{ - pixel_x = 16; + pixel_x = 25; pixel_y = 31 }, /obj/structure/pipes/vents/pump, +/obj/structure/noticeboard{ + pixel_y = 32; + icon_state = "notices_4"; + desc = null; + name = "sticky notes"; + pixel_x = 24 + }, +/obj/structure/noticeboard{ + pixel_x = 3; + pixel_y = 31 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_2"; + desc = null; + name = "sticky notes" + }, /turf/open/floor/strata/floor2, /area/sekhmet/int_glass/hosptial) "xwZ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/almayer/silverfull, /area/sekhmet/int_glass/hosptial) +"xxa" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 13; + pixel_y = 20 + }, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"xxe" = ( +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -10; + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -12; + pixel_y = -14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xxk" = ( /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/outside/airfield) "xxS" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor2, /area/sekhmet/int_reg/southwest_complex) +"xyh" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/temple_outer) +"xyA" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = -20 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_east, +/area/sekhmet/outside/swamp) "xyK" = ( /turf/open/floor/carpet, /area/sekhmet/int_reg/complex_operation) "xyO" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/garage) "xyP" = ( @@ -26549,25 +45767,86 @@ pixel_x = 7; pixel_y = 5 }, -/turf/open/floor/strata/grey_multi_tiles/southwest, +/turf/open/floor/hybrisa/tile/tileblack, /area/sekhmet/int_glass/south_complex) "xzi" = ( -/obj/structure/stairs, -/turf/open/floor/strata/floor2, +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_glass/hosptial) +"xzv" = ( +/obj/structure/prop/swamp_plants/algae/full{ + pixel_y = -5 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xAf" = ( +/obj/structure/prop/swamp_plants/algae/straight/west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_1{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xAA" = ( /obj/structure/prop/colorable_rock/colorable/alt{ - color = "#9d796a"; + color = "#a39e99"; dir = 1; pixel_x = 3; pixel_y = -2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/southeast_road) "xAK" = ( /obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"xAT" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 8; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"xAU" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 3; + pixel_y = -9 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/south_cave) +"xBc" = ( +/obj/structure/cargo_container/upp_small/container_17/right, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_heavy/research) +"xBm" = ( +/obj/structure/closet/crate/ammo, +/obj/item/prop{ + desc = "A gas-operated rotary machine gun used by UPP heavies. Its enormous volume of fire and ammunition capacity allows the suppression of large concentrations of enemy forces. Heavy weapons training is required control its recoil, is non-functional."; + icon_state = "painless"; + item_state = "m41amk1"; + name = "\improper GSh-7.62 rotary machine gun"; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/event.dmi' + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/int_reg/ship1) +"xBr" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_y = 21 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xBu" = ( /obj/structure/machinery/camera{ c_tag = "UPP - East Hangar"; @@ -26582,6 +45861,15 @@ dir = 6 }, /area/sekhmet/int_reg/military_hangar) +"xBT" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) "xBU" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1; @@ -26612,33 +45900,45 @@ pixel_x = 11; pixel_y = 11 }, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/airfield) "xCb" = ( -/obj/structure/filingcabinet/medical{ +/obj/structure/filingcabinet/dark/medical{ pixel_x = 7; pixel_y = 17; - can_block_movement = 0; - color = "#8B7B5B" + can_block_movement = 0 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/prison/bright_clean/southwest, /area/sekhmet/int_reg/water_filters) +"xCc" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -6; + pixel_y = 5; + dir = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "xCP" = ( /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_intel) "xCR" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, /obj/structure/stairs/perspective/kutjevo{ - dir = 1 + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/central_road) "xDg" = ( /obj/structure/prop/structure_lattice{ @@ -26651,6 +45951,28 @@ }, /turf/open/floor/strata, /area/sekhmet/int_reg/comms_lower) +"xDj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/swamp) +"xDC" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 5; + pixel_y = 18 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "xDS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26659,12 +45981,34 @@ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/complex_operation) +"xEd" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/temple) +"xEo" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/outside/swamp) "xEG" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/sekhmet/int_reg/air_filters) +"xEM" = ( +/obj/structure/stairs/perspective{ + color = "#79573e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/hybrisa/carpet/carpetorangereddeco, +/area/sekhmet/int_glass/complex_generic) "xEO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -26673,17 +46017,53 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"xEQ" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/gm/dirt/swamp_dirt/variant_5/east, +/area/sekhmet/outside/swamp) +"xFf" = ( +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) +"xFj" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_x = 5 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = -7; + pixel_y = -12 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) "xFv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, /obj/structure/closet/crate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/UPP, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/complex_generic) +"xFB" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = -15; + pixel_y = 13 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 20; + pixel_y = 4 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xFI" = ( /obj/structure/cargo_container/upp/mk6/left, /obj/effect/decal/warning_stripes{ @@ -26692,6 +46072,22 @@ }, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/warehouse) +"xFQ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) +"xGh" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 5 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) "xGv" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -26703,9 +46099,18 @@ }, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_glass/complex_generic) +"xGw" = ( +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/corsat, +/area/sekhmet/int_heavy/research) "xGF" = ( -/obj/structure/platform_decoration/stone/soro/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/straight/west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_6, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "xGS" = ( /obj/structure/largecrate/random/barrel/true_random, @@ -26713,17 +46118,25 @@ /area/sekhmet/outside/central_road) "xGV" = ( /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/strata/fake_wood, /area/sekhmet/outside/swamp) "xGW" = ( -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southroad) +"xHj" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_3, +/obj/structure/prop/swamp_plants/algae/small/algae_4{ + pixel_x = 7; + pixel_y = -15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xIf" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/temple_outer) "xIn" = ( /obj/effect/decal/warning_stripes{ @@ -26735,27 +46148,113 @@ }, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/garage) +"xIp" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_west, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xIS" = ( +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 13; + pixel_y = -17 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) +"xJe" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/outside/southeast_road) +"xJz" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = 17; + dir = 8; + pixel_x = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"xKo" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/outside/swamp) +"xKw" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 7; + color = "#865c47"; + icon_state = "flammable_pipe_2"; + pixel_x = 4 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "xKQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - color = "#999900"; +/obj/structure/flora/grass/tallgrass/swamp/corner{ dir = 10 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/swamp) +"xKU" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -14; + pixel_y = 14 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1{ + pixel_x = -8; + pixel_y = 1 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xKY" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_y = -14; + dir = 8; + pixel_x = -17 + }, +/turf/open/gm/dirt/swamp_dirt, /area/sekhmet/outside/swamp) "xLd" = ( /turf/closed/wall/upp_ship, /area/sekhmet/caves/south_cave) +"xLp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/largecrate/random{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/toy/bikehorn/rubberducky{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/lifesaver{ + pixel_x = -2; + pixel_y = -6 + }, +/turf/open/floor/plating/kutjevo, +/area/sekhmet/outside/swamp) "xLx" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/warnplate/northeast, /area/sekhmet/shuttles/drop3) +"xLz" = ( +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/outside/airfield) "xLP" = ( -/obj/structure/grille/fence, +/obj/structure/grille, /turf/open/floor/strata/floor3, /area/sekhmet/int_glass/south_complex) "xMb" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/dirt2, +/turf/open/auto_turf/swamp_dirt/layer0, /area/sekhmet/outside/southeast_road) "xMc" = ( /obj/structure/largecrate/random/barrel/true_random, @@ -26765,6 +46264,31 @@ }, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"xMj" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/sekhmet/caves/temple) +"xMp" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 4; + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/airfield) +"xME" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -13; + pixel_y = -2 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_east, +/area/sekhmet/outside/swamp) "xMK" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" @@ -26782,20 +46306,47 @@ /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) "xNq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - light_power = 0.5; - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/elevator/access, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + name = "Emergency Lockdown"; + needs_power = 0; + unacidable = 1 }, -/turf/closed/wall/strata_outpost/reinforced/hull, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, /area/sekhmet/int_heavy/research) "xNu" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/west, /area/sekhmet/int_reg/yard) +"xOg" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = 8 + }, +/turf/open/gm/coast/dirt/swampdir/south, +/area/sekhmet/outside/swamp) "xOl" = ( /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/southeast_road) +"xOt" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west{ + pixel_x = -5 + }, +/turf/open/gm/coast/dirt/swampdir/east, +/area/sekhmet/outside/east_jungle) +"xOG" = ( +/obj/structure/prop/swamp_plants/algae/straight, +/obj/structure/prop/swamp_plants/algae/small/algae_2{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_7{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xOP" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -26833,9 +46384,11 @@ /turf/open/floor/plating/kutjevo, /area/sekhmet/outside/southroad) "xPx" = ( -/obj/structure/flora/bush/ausbushes/grassybush, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, /obj/effect/alien/weeds/node, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/caves/temple) "xPF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -26847,25 +46400,72 @@ }, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/warehouse) +"xPJ" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east{ + pixel_y = -5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = 1; + pixel_y = -7 + }, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xQa" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/prison/kitchen, +/obj/item/reagent_container/hypospray/autoinjector/emergency, +/turf/open/floor/hybrisa/tile/tilewhite, /area/sekhmet/int_glass/south_complex) "xQd" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) +"xRm" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 8; + pixel_y = 8; + pixel_x = -2 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "xRn" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) +"xRx" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xRK" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/north_west, +/area/sekhmet/outside/swamp) +"xRN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5{ + pixel_x = -10; + pixel_y = -14 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/north_west, +/area/sekhmet/outside/swamp) "xRZ" = ( /obj/structure/window/framed/strata, /turf/open/floor/plating/kutjevo, /area/sekhmet/int_reg/garage) +"xSa" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "xSw" = ( /turf/open/slippery/hull/dir/southeast, /area/sky) @@ -26878,9 +46478,16 @@ /area/sekhmet/int_reg/military_hangar) "xTk" = ( /obj/structure/machinery/power/apc/power/west, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/complex_operation) +"xTp" = ( +/obj/structure/prop/swamp_plants/algae/corner/south_east{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xTI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -26891,7 +46498,7 @@ pixel_y = 2 }, /turf/open/floor/plating/kutjevo, -/area/sekhmet/outside/temple_outer) +/area/sekhmet/outside/swamp) "xTJ" = ( /turf/closed/wall/strata_outpost, /area/sekhmet/outside/east_jungle) @@ -26899,7 +46506,7 @@ /turf/open/floor/strata/floor3/east, /area/sekhmet/outside/east_jungle) "xTT" = ( -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/airfield) "xUc" = ( /turf/open/floor/strata/multi_tiles/west, @@ -26912,38 +46519,76 @@ /area/sekhmet/int_reg/complex_operation) "xUB" = ( /obj/effect/landmark/lizard_spawn, -/turf/open/auto_turf/strata_grass/layer1, -/area/sekhmet/outside/temple_outer) +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "xUQ" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/stairs/perspective{ + color = "#838a88"; + dir = 8 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/kutjevo/grey, /area/sekhmet/int_heavy/research) +"xUZ" = ( +/obj/structure/prop/swamp_plants/algae/full/algae_full_1, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_5, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"xVq" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/floor/strata/fake_wood, +/area/sekhmet/outside/swamp) +"xVI" = ( +/obj/structure/platform_decoration/stone/soro_colorable{ + color = "#a39e99" + }, +/turf/open/gm/dirt/swamp_dirt/variant_5/south, +/area/sekhmet/caves/temple) +"xVK" = ( +/obj/structure/prop/swamp_plants/algae/corner/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = -12; + pixel_y = 11 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xWx" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; - can_block_movement = 0; - color = "#8B7B5B" + can_block_movement = 0 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "xWz" = ( -/obj/effect/decal/cleanable/dirt/alt_dirt, -/turf/open/floor/plating/kutjevo, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, /area/sekhmet/int_reg/catwalk) "xWA" = ( /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_comms) -"xXb" = ( -/obj/structure/machinery/light/small{ - light_power = 0.25 +"xWZ" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/flora/wood/stick1{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/flora/wood/stick2{ + pixel_x = 19; + pixel_y = 2 }, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"xXb" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/multi_tiles/west, +/area/sekhmet/int_reg/catwalk) "xXn" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26952,40 +46597,47 @@ /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) "xXD" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ +/obj/structure/cargo_container/horizontal/red/middle{ pixel_x = 5; pixel_y = 6; layer = 2.98 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/auto_turf/swamp_dirt/layer1, /area/sekhmet/outside/airfield) +"xXT" = ( +/obj/structure/prop/swamp_plants/algae/full, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_3, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "xYp" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/platform_decoration/stone/soro/north, -/turf/open/gm/river/no_slowdown, +/obj/structure/platform_decoration/stone/soro_colorable/north{ + color = "#a39e99" + }, +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) "xYu" = ( /turf/closed/wall/rock{ - color = "#a39e99" + color = "#797571" }, /area/sekhmet/caves/west_cave) "xYE" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/sekhmet/outside/east_jungle) "xYO" = ( -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = -8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, -/obj/structure/filingcabinet/chestdrawer{ +/obj/structure/filingcabinet/dark/chestdrawer{ pixel_y = 16; pixel_x = 8; can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" + layer = 3.02 }, /obj/structure/machinery/light{ light_power = 0.5; @@ -26993,36 +46645,51 @@ }, /turf/open/floor/strata/floor2, /area/sekhmet/int_heavy/research) +"xYW" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/abstract/ripple/shadow, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "xZk" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 16; - pixel_x = -8; - can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" +/obj/structure/filingcabinet/wood/chestdrawer{ + pixel_x = -9; + pixel_y = 17; + can_block_movement = 0 }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 16; - pixel_x = 8; - can_block_movement = 0; - layer = 3.02; - color = "#8B7B5B" +/obj/structure/filingcabinet/wood/chestdrawer{ + pixel_x = 6; + pixel_y = 17; + can_block_movement = 0 }, /obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/fake_wood, /area/sekhmet/int_reg/southwest_complex) "xZK" = ( -/turf/open/floor/carpet, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, /area/sekhmet/int_glass/hosptial) "yab" = ( /obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/north, +/turf/open/gm/coast/dirt/swampdir, /area/sekhmet/outside/swamp) "yal" = ( /obj/structure/fence/slim/upp, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/auto_turf/strata_grass/layer0_mud, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/east_jungle) +"yas" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_x = 5 + }, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_1, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) "yaz" = ( /obj/structure/surface/table{ color = "#8B7B5B" @@ -27043,17 +46710,30 @@ "yaO" = ( /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/complex_operation) +"yaR" = ( +/obj/structure/platform/metal/strata, +/turf/open/auto_turf/swamp_dirt/layer1, +/area/sekhmet/outside/swamp) "yba" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 3.01 }, -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/caves/temple) "ybn" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, +/obj/structure/flora/bush/ausbushes/grassybush{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/swamp) +"ybE" = ( +/obj/structure/prop/colorable_rock/colorable/alt{ + color = "#a39e99"; + dir = 4 + }, +/turf/open/auto_turf/swamp_grass/layer0_mud, +/area/sekhmet/caves/temple) "ybL" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.01; @@ -27063,17 +46743,41 @@ /turf/open/floor/filtrationside/northwest, /area/sekhmet/int_reg/water_filters) "ybQ" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light{ light_power = 0.5; dir = 8 }, /turf/open/floor/strata/multi_tiles/southeast, /area/sekhmet/int_reg/air_filters) +"ycb" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 2; + pixel_y = -7 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -14; + pixel_y = 12 + }, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) "ycr" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/strata_grass/layer1, +/turf/open/auto_turf/swamp_grass/layer1, /area/sekhmet/outside/temple_outer) +"ydW" = ( +/obj/effect/decal/floor_symbol/upp{ + dir = 1; + pixel_x = 16; + pixel_y = 16; + color = "#8c4040" + }, +/obj/effect/decal/hybrisa/dirt{ + layer = 2.52 + }, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_glass/complex_generic) "ydX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Water Closet" @@ -27081,8 +46785,27 @@ /turf/open/floor/plating/plating_catwalk/strata, /area/sekhmet/int_reg/complex_operation) "yec" = ( -/turf/open/gm/coast/west, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/swamp) +"yef" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_east, +/obj/structure/prop/swamp_plants/algae/corner2/north_west, +/obj/structure/prop/swamp_plants/algae/small/algae_3{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_2, +/turf/open/gm/river/swamp, /area/sekhmet/outside/swamp) +"yet" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + dir = 1; + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/temple_outer) "yex" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -27101,11 +46824,15 @@ color = "#6b675e"; layer = 2.79 }, +/obj/item/ammo_magazine/smg/bizon, +/obj/item/ammo_magazine/smg/bizon, /obj/item/weapon/gun/smg/bizon/upp, /turf/open/floor/corsat/marked, /area/sekhmet/int_reg/military_hangar) "yfb" = ( -/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/sekhmet/outside/central_road) "yfc" = ( @@ -27120,21 +46847,60 @@ pixel_y = 16; desc = "A machine that dispenses water to drink. It has levers for hot and cold, but it only dispenses room-temperature water. You may also think this is a WY water cooler but in reality this is a WV brand." }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean, /area/sekhmet/int_glass/offices) +"yfp" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/sekhmet/int_reg/catwalk) "yfu" = ( /turf/open/floor/strata/fake_wood, /area/sekhmet/int_glass/complex_generic) +"yfD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/sign/poster/upp{ + pixel_y = 33 + }, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_glass/south_complex) +"yfF" = ( +/obj/structure/prop/swamp_plants/algae/straight{ + pixel_y = -8 + }, +/obj/structure/prop/swamp_plants/lily_pads/lily_pads_4{ + pixel_x = -17; + pixel_y = -10 + }, +/turf/open/gm/coast/dirt/swampdir, +/area/sekhmet/outside/swamp) "yfM" = ( /obj/structure/bed/chair{ dir = 1; pixel_x = 2; pixel_y = 9 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_glass/south_complex) +"yfW" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_east, +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/swamp, +/area/sekhmet/outside/swamp) +"ygd" = ( +/obj/structure/flora/jungle/thickbush/large_jungle_bush{ + color = "#72963e"; + icon_state = "bush2"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/effect/abstract/ripple/shadow, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/swamp) "ygk" = ( /obj/structure/closet{ pixel_x = -8 @@ -27150,6 +46916,11 @@ /obj/item/storage/backpack/general_belt, /turf/open/floor/strata/floor3, /area/sekhmet/int_reg/engineering) +"ygq" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/strata/floor3, +/area/sekhmet/int_reg/catwalk) "ygJ" = ( /obj/structure/surface/table/almayer{ color = "#8B9490" @@ -27174,15 +46945,33 @@ /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_heavy/research) "ygP" = ( -/turf/open/auto_turf/strata_grass/layer0_mud, +/turf/open/auto_turf/swamp_grass/layer0_mud, /area/sekhmet/outside/southeast_road) +"ygV" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass, +/turf/open/gm/dirt/swamp_dirt/variant_2, +/area/sekhmet/outside/central_road) "ygX" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/strata, /area/sekhmet/int_reg/military_hangar) -"yhs" = ( -/turf/open/gm/coast/east, -/area/sekhmet/outside/temple_outer) +"yhn" = ( +/obj/structure/flora/grass/tallgrass/swamp/corner{ + dir = 5 + }, +/obj/structure/flora/jungle/vines/light_1{ + color = "#fceab2" + }, +/turf/open/auto_turf/swamp_grass/layer1, +/area/sekhmet/outside/east_jungle) +"yhr" = ( +/obj/structure/machinery/light{ + light_power = 0.5; + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/sekhmet/int_heavy/research) "yhG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -27198,29 +46987,52 @@ }, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/air_filters) +"yhV" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 4; + pixel_y = 5; + dir = 6 + }, +/turf/open/auto_turf/swamp_dirt/layer0, +/area/sekhmet/caves/temple) "yhX" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/multi_tiles/southwest, /area/sekhmet/int_reg/military_hangar) "yij" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/prison/bright_clean2, /area/sekhmet/int_reg/complex_operation) +"yio" = ( +/obj/structure/prop/swamp_plants/algae/corner2/north_west{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/gm/coast/dirt/swampdir/west, +/area/sekhmet/outside/east_jungle) "yiG" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /obj/structure/machinery/light/small{ - dir = 4; - light_power = 0.25 + dir = 4 }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/sekhmet/int_glass/hosptial) "yiH" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/dirt, /turf/open/floor/strata/floor3, /area/sekhmet/int_heavy/entry_zone) +"yiN" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/auto_turf/swampalt_dirt/layer1, +/area/sekhmet/caves/west_cave) "yiR" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -27249,11 +47061,22 @@ }, /turf/open/floor/kutjevo/multi_tiles/west, /area/sekhmet/outside/swamp) +"yjw" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/dirt/swampbeachcorner/south_east, +/area/sekhmet/outside/swamp) +"yjJ" = ( +/obj/structure/prop/colorable_rock/colorable{ + color = "#a39e99"; + pixel_x = -3; + pixel_y = 3; + dir = 6 + }, +/turf/open/gm/dirt/swamp_dirt, +/area/sekhmet/caves/temple) "ykc" = ( /obj/effect/decal/strata_decals/grime/grime1, -/obj/structure/machinery/light/small{ - light_power = 0.25 - }, +/obj/structure/machinery/light/small, /turf/open/floor/prison/sterile_white, /area/sekhmet/int_reg/southwest_complex) "ykj" = ( @@ -27262,10 +47085,27 @@ "yks" = ( /turf/open/floor/kutjevo/multi_tiles/southeast, /area/sekhmet/outside/southroad) +"ykN" = ( +/obj/structure/prop/swamp_plants/algae/corner2/south_west, +/obj/structure/prop/swamp_plants/algae/small/algae_5{ + pixel_x = 10; + pixel_y = 19 + }, +/turf/open/gm/coast/dirt/swampbeachcorner2/south_east, +/area/sekhmet/outside/swamp) "ykT" = ( /obj/structure/machinery/power/apc/power/south, /turf/open/floor/corsat, /area/sekhmet/int_heavy/research) +"ylN" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/hardpoint/locomotion/hovercraft_propellers, +/turf/open/floor/strata/floor2, +/area/sekhmet/int_reg/garage) "ymg" = ( /obj/structure/machinery/light{ light_power = 0.6; @@ -27436,35808 +47276,36474 @@ hCs hCs hCs hCs +hCs +hCs +hCs "} (2,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (3,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (4,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -aaj -cit -aaj -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (5,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -aaj -aaj -aaj -aaj -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (6,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -aaj -aaj -aaj -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (7,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -aaj -aaj -aaj -aaj -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (8,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (9,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(10,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(10,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (11,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (12,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(13,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(13,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (14,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (15,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(16,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(16,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (17,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (18,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(19,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(19,1,1) = {" +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (20,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (21,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (22,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (23,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (24,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (25,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (26,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (27,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (28,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (29,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (30,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (31,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(32,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(32,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (33,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (34,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(35,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(35,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (36,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (37,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(38,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(38,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (39,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (40,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (41,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (42,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (43,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (44,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (45,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (46,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (47,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (48,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (49,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (50,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(51,1,1) = {" -aei -aei -aei -aei -aei -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(51,1,1) = {" +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (52,1,1) = {" -tES -quo -quo -quo -quo -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (53,1,1) = {" -rcV -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(54,1,1) = {" -quo -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(54,1,1) = {" +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (55,1,1) = {" -quo -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (56,1,1) = {" -quo -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (57,1,1) = {" -tES -aaw -quo -quo -quo -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (58,1,1) = {" -aei -aei -aei -aei -aei -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (59,1,1) = {" -aei -aei -aei -aei -aei -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (60,1,1) = {" -aei -aei -aei -aei -aei -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (61,1,1) = {" -tES -quo -quo -quo -quo -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (62,1,1) = {" -rcV -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (63,1,1) = {" -quo -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (64,1,1) = {" -quo -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (65,1,1) = {" -quo -oQE -oQE -oQE -oQE -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (66,1,1) = {" -tES -quo -quo -quo -quo -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(67,1,1) = {" -aei -aei -aei -aei -aei -aei -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(67,1,1) = {" +hCs +ahO +ahO +ahO +ahO +ahO +ahO +ahO +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (68,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (69,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(70,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(70,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (71,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (72,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (73,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (74,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (75,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (76,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (77,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (78,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (79,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (80,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (81,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (82,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(83,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(83,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (84,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (85,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(86,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(86,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (87,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (88,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(89,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(89,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (90,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (91,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (92,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (93,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (94,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (95,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (96,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (97,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (98,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (99,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (100,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (101,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(102,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(102,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (103,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (104,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(105,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(105,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (106,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (107,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(108,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(108,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (109,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (110,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (111,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (112,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (113,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (114,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (115,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (116,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (117,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (118,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (119,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (120,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(121,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(121,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (122,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (123,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(124,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(124,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (125,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (126,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(127,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(127,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (128,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (129,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (130,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (131,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (132,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (133,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (134,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (135,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (136,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (137,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (138,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (139,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(140,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(140,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (141,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (142,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(143,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(143,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (144,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (145,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(146,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(146,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (147,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (148,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (149,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (150,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (151,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (152,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (153,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (154,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (155,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (156,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (157,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (158,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(159,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(159,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (160,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (161,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(162,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(162,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (163,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (164,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fwX +hIN +ayW +tJP +cPL +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (165,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fwX +hIN +lJt +lyG +ezD +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (166,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (167,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (168,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (169,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (170,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (171,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (172,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (173,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (174,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(175,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(175,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (176,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (177,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(178,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(178,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (179,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (180,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (181,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (182,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (183,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (184,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fwX +hIN +ayW +tJP +cPL +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (185,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fwX +hIN +lJt +lyG +ezD +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (186,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (187,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(188,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(188,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (189,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (190,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(191,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(191,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (192,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (193,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(194,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(194,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (195,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (196,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (197,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (198,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (199,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (200,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (201,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (202,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (203,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (204,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (205,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (206,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(207,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(207,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (208,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (209,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(210,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +fgd +fgd +fgd +fgd +fgd +fgd +fgd +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs +"} +(210,1,1) = {" +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (211,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (212,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (213,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (214,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (215,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (216,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (217,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (218,1,1) = {" -cit -cit -cit -cit -goj -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +ckC +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (219,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (220,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (221,1,1) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +vnP +hCs "} (222,1,1) = {" -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs "} (1,1,2) = {" @@ -63401,26 +83907,31 @@ hCs hCs hCs hCs +hCs +hCs +hCs "} (2,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj psY psY psY @@ -63476,10 +83987,54 @@ xYu xYu xYu xYu +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +kCV +kCV +kCV +kCV +kCV iXF iXF iXF iXF +jNo +jNo +jNo +jNo +jNo +jNo +jNo +jNo +jNo +jNo +jNo +jNo iXF iXF iXF @@ -63494,57 +84049,13 @@ iXF iXF iXF iXF -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo iXF iXF iXF iXF -jNo -jNo -jNo -jNo -jNo -iXF iXF iXF iXF -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo iXF iXF iXF @@ -63563,19 +84074,22 @@ iXF iXF iXF iXF +hCs "} (3,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj mgR mgR mgR @@ -63602,7 +84116,7 @@ gVK gVK xYu xYu -cnx +aUO xYu xYu xYu @@ -63627,39 +84141,55 @@ xYu xYu xYu xYu +sLm cnx cnx cnx -cnx -qFO -qFO +sDO +sDO cnx cnx xYu xYu xYu -iXF -iXF -iXF -iXF -iXF -iXF -iXF -iXF -mui -nPc +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bFU +lzJ abR -mui -mui -nnm -iXF -iXF -iXF -iXF +aOp +kRb +kRb +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +kCV +kCV +kCV +kCV +atp +kCV +kCV +jNo iXF iXF jNo jNo +kOw jNo jNo jNo @@ -63667,46 +84197,18 @@ jNo jNo jNo jNo -nnm -nnm -nnm -jNo jNo jNo jNo jNo -nnm iXF iXF iXF -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo iXF iXF iXF -jNo -jNo -jNo -jNo -jNo iXF iXF -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo iXF iXF iXF @@ -63725,19 +84227,34 @@ iXF iXF iXF iXF +iXF +iXF +iXF +iXF +iXF +iXF +iXF +iXF +iXF +iXF +iXF +iXF +hCs "} (4,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj mgR rGJ fBF @@ -63746,7 +84263,7 @@ efm cxi gjZ trG -voM +lpy mgJ wRx wRx @@ -63762,9 +84279,9 @@ trG gVK gVK gVK -cnx -cnx -qFO +mAv +hTc +sDO cnx xYu xYu @@ -63789,10 +84306,10 @@ xYu xYu xYu xYu +hCW cnx cnx -cnx -qFO +sDO act coB ack @@ -63800,53 +84317,61 @@ cnx cnx xYu xYu -iXF -iXF -iXF -iXF -iXF -iXF -iXF -iXF -mui -mui -dRL +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +tsl +gnC +qTH mXJ -iZR -nnm -nnm -nnm -iXF -iXF -iXF -iXF +kOv +kRb +cHW +kRb +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +kCV +kCV +kCV +pBz +pBz +pBz +atp +kCV +jNo iXF iXF jNo +xTT +xTT +xTT +xTT jNo jNo jNo -jNo -mui -nnm -nnm -nnm -jNo -jNo +iXF +iXF jNo jNo jNo jNo -nnm -nnm -nnm iXF iXF iXF -jNo -jNo -jNo -jNo +iXF +iXF +iXF jNo jNo iXF @@ -63854,19 +84379,7 @@ iXF iXF iXF iXF -jNo -jNo -jNo -jNo iXF -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo iXF iXF iXF @@ -63887,19 +84400,26 @@ iXF iXF iXF iXF +iXF +iXF +iXF +iXF +hCs "} (5,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj mgR nel gpu @@ -63913,8 +84433,8 @@ iRF iGt ura trG -iGt -gpu +mbe +lPb efi efi efi @@ -63925,8 +84445,8 @@ cnx cnx cnx cnx -qFO -qFO +sDO +sDO adr cnx cnx @@ -63934,8 +84454,8 @@ cnx adC adA ady -qFO -qFO +sDO +sDO cnx cnx cnx @@ -63952,61 +84472,71 @@ xYu xYu xYu xYu -acg -qFO -qFO -qFO -acn -qFO +vTg +sDO +sDO +sDO +sdR +sDO cnx xYu xYu xYu +bzC +bzC +bzC +bzC +bzC +bzC +bzC +ahW +aJK +pHO +utE +dsN +wRa +lzJ +kRb +kRb +kRb +kRb +bzC +bzC +bzC +bzC +bzC +bzC +kCV +kCV +pBz +lzJ +ahk +pBz +pBz +kCV iXF iXF iXF iXF -iXF -iXF -iXF +nPc mui -dRL -pHO -fnv -qWz -btX -nnm -nnm -nnm -nnm -nnm -iXF +nPc +xTT +kOw +jNo iXF iXF iXF iXF jNo jNo -jNo -mui -mui -mui -mui -nnm -jNo -jNo -jNo -jNo -jNo -mui -mui -nnm -ilc -mui iXF iXF iXF iXF +iXF +iXF +jNo jNo jNo jNo @@ -64017,18 +84547,6 @@ iXF iXF iXF iXF -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo -jNo iXF iXF iXF @@ -64049,19 +84567,24 @@ iXF iXF iXF iXF +iXF +iXF +hCs "} (6,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj mgR tNF gpu @@ -64075,7 +84598,7 @@ aeO sQf pxl trG -iGt +hPQ uHf efi laU @@ -64083,20 +84606,20 @@ qvT efi bbA mgR -qFO +sDO adA adP -qFO -qFO -adN -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +mjy +sDO +sDO +sDO +sDO +sDO +sDO adz -qFO +sDO adv coB adr @@ -64115,58 +84638,57 @@ xYu xYu xYu xYu -qFO -qFO -qFO +sDO +sDO +sDO aco xYu xYu xYu xYu xYu +bzC +bzC +bzC +kCV +kCV +dPt +cHW +qTH +ugW +eQy +xKU +ryr +dVw +kRb +cHW +kRb +kRb +aOp +kRb +bzC +bzC +bzC +bzC +bzC +pBz +pBz +oCR +cVy +cHW +lzJ +pBz +kCV +jNo iXF iXF iXF -jNo -jNo -mui -mui -dRL -fnv -qWz -afz -qWz -btX -mui -mui -nnm nnm nnm nnm -iXF -iXF -iXF -iXF -iXF -mui -mui -ilc -mui -mui -nPc -mui -jNo -jNo -jNo -jNo +iPd +xTT jNo -mui -mui -mui -mui -mui -iXF -iXF iXF iXF iXF @@ -64178,17 +84700,15 @@ iXF iXF iXF iXF -iXF -jNo -jNo -jNo jNo jNo jNo jNo jNo jNo +iXF jNo +iXF jNo jNo iXF @@ -64211,19 +84731,25 @@ iXF iXF iXF iXF +iXF +iXF +iXF +hCs "} (7,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj +udj mgR mgR fBF @@ -64245,33 +84771,33 @@ jxO efi vas mgR -qFO -qFO -qFO +sDO +sDO +sDO adA -qFO +sDO xYu -qFO -qFO -qFO -qFO +cnx +sDO +sDO +sDO adD -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +eNY +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO acX cnx cnx -acO +nCO acK gVK xYu @@ -64286,46 +84812,46 @@ acf xYu xYu xYu -iXF -iXF -jNo -jNo -mui -mui -dRL +bzC +bzC +kCV +kCV +rUO +cHW +qTH thC qWz -qWz -qWz -wOs -tvL -mui -nPc -mui -mui -mui -mui +opU +ktg +jrG +gQY +cHW +kMs +ahB +ahB +cHW +lzJ +bzC +bzC +bzC +vDa +cHW +cHW +kRb +cHW +cHW +kRb +aOp +lzJ +bzC iXF iXF iXF -mui -mui -mui -mui -mui -mui -mui -mui -mui -jNo -jNo -jNo -jNo -mui -mui +cRs +dJj nPc -mui -mui +aeF +nnm iXF iXF iXF @@ -64337,8 +84863,8 @@ iXF iXF iXF iXF -nnm -nnm +rOM +nPc xTT xTT kOw @@ -64351,8 +84877,6 @@ jNo jNo jNo jNo -jNo -jNo iXF iXF iXF @@ -64373,16 +84897,21 @@ iXF iXF iXF iXF +iXF +iXF +hCs "} (8,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj psY psY psY @@ -64392,7 +84921,7 @@ whd ngu fBF xiT -wOk +wRx deF pik jSE @@ -64407,40 +84936,40 @@ mYj efi fJp mgR -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +grk +riR +sDO +sDO +sDO cnx +sDO +sDO +oiq +sDO +sDO cnx cnx -qFO -qFO -qFO +cnx +sDO +sDO +sDO adq -qFO +sDO adj -qFO +sDO acX -qFO -qFO +sDO +sDO acU -qFO -acz +sDO +sDO acL acF acD acz -act -qFO -qFO +ove +sDO +sDO cnx acq acf @@ -64448,46 +84977,46 @@ xYu xYu xYu xYu -iXF -jNo -jNo -mui -mui -dRL +bzC +kCV +kCV +rUO +uFJ +qTH fnv -qWz -qWz -qWz -wOs -tvL -mui -mui -mui -mui -dRL -pHO -pHO -iZR +sjU +okH +sIR +rOL +loW +mTz +aOp +cHW +ahk +jTV +rlN +kbb +piK +bzC +lzJ +cHW +kRb +kRb +cHW +kRb +kRb +kRb +kRb +cHW +cHW iXF +iXF +tbU mui +pdF +pdF mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -jNo -jNo -mui -mui -mui -mui -mui -mui +dJj iXF iXF iXF @@ -64497,25 +85026,24 @@ iXF iXF iXF iXF +wln nnm nnm nnm -wZA -xTT -aeY +nPc +qqG xTT aeV jNo jNo jNo jNo +uLs +uLs jNo jNo jNo jNo -jNo -jNo -jNo iXF iXF iXF @@ -64535,20 +85063,24 @@ iXF iXF iXF iXF +iXF +hCs "} (9,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj psY hFf -wim -wim +aZF +aZF esu hEu ngu @@ -64563,46 +85095,46 @@ qpi rkw rYe trG -vas +nKy knF voM voM mgR mgR -adD +pce adT -qFO -coB -qFO -qFO -qFO -qFO +adT +uOr +uBp +fZQ +sDO +sDO adH cnx cnx cnx kRb cnx -qFO -qFO -qFO +sDO +sDO +sDO xYu adp adk -qFO -qFO -qFO +sDO +sDO +sDO acY acQ acQ -qFO -qFO -qFO -qFO -qFO -qFO -qFO -aco +sDO +sDO +sDO +sDO +sDO +sDO +sDO +aJZ cnx acr acf @@ -64610,46 +85142,47 @@ acf xYu xYu xYu -iXF -jNo -jNo -ilc -mui -fCk -qWz -qWz -wOs -qDF -tvL -jNo -jNo -mui -mui -dRL -fnv -qWz +bzC +kCV +kCV +oCR +vbC +gFi +xft +dCD +kbg +kWZ +ksB +kCV +kCV +lzJ +thc +cuF +oay +jzp afx jJT -pHO -iZR -mui -mui -mui -mui -nPc -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui +bJm +rIb +aOp +ahB +kRb +cHW +lzJ +cHW +ahB +cHW +kRb +aOp +pdF +dJj +dJj +pdF +pdF mui mui +nnm +nnm iXF iXF iXF @@ -64657,23 +85190,22 @@ iXF iXF iXF iXF -iXF -nnm -nnm +hTn +pFs afe -afd -xTT +nnm +cmF afb +njy xTT -xTT -jNo -jNo +iXF +iXF jNo jNo jNo gyG aeA -jNo +uLs jNo jNo jNo @@ -64697,16 +85229,19 @@ iXF iXF iXF iXF +hCs "} (10,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj psY hFf wim @@ -64732,13 +85267,13 @@ dDK mgR mgR adU -qFO -qFO -qFO -qFO +hmQ +hmQ +hmQ +huB adO adM -qFO +cqA cnx hHQ drs @@ -64752,19 +85287,19 @@ xYu xYu cnx cnx -qFO +sDO acP -qFO +sDO acQ acR -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +adN +sDO +sDO +acv +sDO +sDO acu acs xYu @@ -64772,47 +85307,47 @@ xYu xYu xYu xYu -iXF -jNo -mui -mui -dRL -fnv +bzC +kCV +qqg +tZO +dAx +fZg afz -wOs -tvL -mui -jNo -jNo -jNo -jNo -dRL -fnv -qWz -qWz -qWz -qWz -qWz -syY -mui -mui -mui -mui -mui -mui -mui -mui -ilc -mui -mui +xdN +gFk +lzJ +kCV +kCV +kCV +kCV +gnr +wgK +xVK +xIp +ftt +xIp +hxN +iJJ +cHW +aOp +cHW +cHW +cHW +aOp +cHW +xKY +gDr +cHW mui mui +nPc nnm nnm mui +dJj mui -mui -iXF +nnm iXF iXF iXF @@ -64824,20 +85359,20 @@ nnm mui nPc nnm -xTT +nPc kOw xTT -aeW -jNo -jNo -jNo -jNo +sKK +iXF +iXF +iXF jNo +uLs aeJ aeP aeN -jNo -jNo +uLs +uLs jNo jNo jNo @@ -64859,20 +85394,23 @@ iXF iXF iXF iXF +hCs "} (11,1,2) = {" -fJT -fJT -fJT -fJT -fJT -fJT -fJT -fJT +hCs +udj +udj +udj +udj +udj +udj +udj +udj +udj psY hFf -wim -wim +nRu +nRu esu fBF ngu @@ -64893,22 +85431,22 @@ wRx qmq trG trG -adg -cnx -cnx -cnx -adg +uLP +pwt +sNH +pwt +pjC xYu xYu xYu hHQ drs kRb -cHW -cHW +aOp +lzJ rdS rdS -cHW +dPt xYu xYu xYu @@ -64919,59 +85457,59 @@ hHQ cnx cnx xYu -acP -qFO +eOu +jRU acG -coB -qFO -qFO -qFO -qFO +dgw +xRm +sDO +sDO +sDO acv cnx cnx -acg +ucU xYu xYu xYu -iXF -jNo -mui -mui -fCk -qWz -qWz -btX -mui -jNo -jNo -iXF -iXF -jNo +bzC +kCV +rUO +ahk fCk -qWz -qWz -qWz -qWz -qWz -qWz -btX -mui -mui +rtw +mRU +dVw +ahk +kCV +kCV +bzC +bzC +kCV +tJt +jzp +xIp +pzw +nBP +knl +rxZ +dVw +lzJ +cmB xYu xYu +kRb +kRb +kRb +kRb +cHW +ahB nnm nnm nnm -nnm -mui -mui -nnm -nnm -nnm -jNo -jNo -nnm +iXF +iXF +onW mui mui iXF @@ -64984,23 +85522,23 @@ svT svT svT mui -mui +dJj mui xTT xTT aeZ jNo -jNo -jNo -jNo -jNo +iXF +iXF +iXF +uLs aeP aeP xTT aeJ aeJ -xTT -jNo +aeP +uLs jNo iXF iXF @@ -65021,15 +85559,18 @@ iXF iXF iXF iXF +hCs "} (12,1,2) = {" -fJT -fJT -fJT -fJT -fJT -trG -trG +hCs +udj +udj +udj +udj +udj +udj +psY +psY psY psY psY @@ -65064,13 +85605,13 @@ trG xYu xYu rdS -cHW -mBr +eLz +rQt mBr -sIP -qTH -yec -yec +fCQ +kdz +cxQ +wEE rIb xYu xYu @@ -65085,84 +85626,85 @@ xYu xYu cnx cnx -acB +ujp acy -qFO -qFO -qFO -qFO -qFO -acg +sDO +sDO +sDO +sDO +sDO +att xYu xYu xYu -iXF -jNo -jNo -mui -iWH -qDF -qDF -tvL -mui -jNo -iXF -iXF -iXF -iXF -fCk -qWz -qWz -afz -qWz -qWz -wOs -tvL +bzC +kCV +kCV +lzJ +mkN +kWZ +nLx +nci +rUO +kCV +bzC +bzC +bzC +bzC +vhv +qoH +orH +jeA +sSJ +fJk +rHo +ksB xYu xYu xYu xYu +sdc cnx cnx -cnx -nnm -mui -mui +kRb +cHW +cHW mui nnm -jNo -jNo -nnm +iXF +iXF +wln nnm mui aeE -mui -mui -mui -mui +nnm +oiw +etp +nnm svT aff mui svT +nPc mui mui -mui -mui -aeR +deg +xkL xTT -mui -jNo +kkI jNo jNo +iXF jNo jNo xTT xTT aeQ -xTT +kOw aeL aeI -iXF +jNo +jNo jNo iXF iXF @@ -65182,15 +85724,17 @@ iXF iXF iXF iXF -iXF +hCs "} (13,1,2) = {" -fJT -fJT -fJT -fJT -trG -trG +hCs +udj +udj +udj +udj +udj +psY +psY trG rit kvV @@ -65220,7 +85764,7 @@ igR iGt iGt gpu -odx +gpu trG trG trG @@ -65230,10 +85774,10 @@ trG vJJ hxg fjc -adw -fqb -adu -iuH +auj +fuB +dRI +ltG rIb xYu xYu @@ -65248,48 +85792,48 @@ rdS rdS cnx cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +vFF xYu xYu xYu -iXF -jNo -jNo -jNo -mui -mui -mui -mui -mui +bzC +kCV +kCV +kCV +cHW +cHW +lzJ +cHW +cHW xYu xYu xYu xYu -nnm -aCl -qWz -qWz -qWz -wOs -qDF -tvL +kRb +psz +tZe +dok +cRI +kiG +nce +ksB xYu xYu xYu xYu xYu -qFO +sDO afm cnx -nnm -nnm -nnm +kRb +kRb +kRb mui mui nnm @@ -65297,10 +85841,10 @@ nnm mui mui mui +dJj mui -mui -mui -aeM +oiw +nnm mui mui afg @@ -65311,9 +85855,9 @@ aeE mui mui mui -mui -mui -aeX +nPc +xTT +jNo jNo jNo jNo @@ -65322,10 +85866,10 @@ aeS kOw xTT xTT +mui xTT xTT -xTT -iXF +jNo iXF iXF iXF @@ -65345,16 +85889,19 @@ iXF iXF iXF iXF +hCs "} (14,1,2) = {" -fJT -fJT -fJT -fJT -trG -trG +hCs +udj +udj +udj +udj +udj +psY +psY bPj -qrR +fPK qrR qrR qrR @@ -65388,14 +85935,14 @@ trG trG trG trG -trG +wRv hfX gVs -ufa -fqb -apm -fqb -xbF +fMC +nUU +qvH +cqo +lnG ksB xYu vRr @@ -65411,81 +85958,81 @@ drs drs cnx acg -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO ach -qFO +adD xYu xYu -iXF -iXF -iXF -jNo -mui -nPc -mui -mui -nnm +bzC +bzC +bzC +kCV +wBK +lzJ +cHW +uFJ +kRb cnx xYu xYu cnx -nnm -iWH +kRb +mkN tql -qWz -wOs -tvL -mui +mPj +nnw +tVC +lzJ xYu xYu xYu xYu xYu xYu -qFO +iCZ afn -cnx +tMZ acO cnx -nnm +kRb nnm mui mui mui mui -mui -mui -mui +pdF +pdF +pdF nPc mui mui mui +pdF +sKK +wEV +pdF +dJj mui mui mui -mui -mui -mui -mui -mui -mui +deg nPc mui -mui +xTT jNo jNo +ocw xTT xTT xTT +mui xTT xTT -xTT -kOw -mui +deg nPc iXF iXF @@ -65507,15 +86054,18 @@ iXF iXF iXF iXF +hCs "} (15,1,2) = {" -fJT -fJT -fJT -fJT -trG -bPj -qrR +hCs +udj +udj +udj +udj +udj +psY +xmb +csb rau qrR nBw @@ -65537,7 +86087,7 @@ qrR qrR qrR qrR -wVW +eZW gpu aeK gpu @@ -65554,9 +86104,9 @@ xiT hfX gVs ufa -fqb -fqb -adu +oES +iVA +tco dVw xYu xYu @@ -65569,38 +86119,38 @@ iqA iqA iqA vRr -vRr +atp drs cnx cnx -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO cnx xYu xYu xYu -iXF -iXF -jNo -jNo -mui -mui -nnm -nnm +bzC +bzC +kCV +kCV +aWw +aOp +kRb +kRb cnx afF -qFO +knp cnx -nnm -nnm -fCk -qWz -btX -mui +kRb +kRb +jTI +pjo +kRc +ahk xYu xYu xYu @@ -65608,10 +86158,10 @@ xYu acf xYu xYu -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO cnx cnx nnm @@ -65627,31 +86177,33 @@ mui abg mui mui -ilc -mui -mui -mui -mui -mui -mui +vQl mui mui +deg +pdF +pdF +pdF mui mui mui +teT +xTT jNo -aeU +nPc aeT xTT -xTT -xTT -xTT -aeM -mui -mui mui +xTT mui +wJK mui +dJj +pxL +ksu +upV +wPt +wPt iXF iXF iXF @@ -65667,22 +86219,23 @@ iXF iXF iXF iXF -iXF -iXF +hCs "} (16,1,2) = {" -fJT -fJT -fJT -fJT -trG -tPf -qrR +hCs +udj +udj +udj +udj +udj +psY +pTt +rau rau nBw rau qrR -gSs +etb gSs qrR qrR @@ -65704,7 +86257,7 @@ whb cXe gpu wXx -qrR +wxD vgq qrR qrR @@ -65716,10 +86269,10 @@ cqP hfX gVs kcK -adx -tsp -tsp -xbs +gua +dUU +hsm +uvg eJN pBz sUs @@ -65730,38 +86283,38 @@ iqA iqA iqA iqA -vRr +atp vRr drs drs cnx -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO cnx cnx xYu xYu -iXF -iXF -iXF -iXF -iXF -mui -nnm +bzC +bzC +bzC +bzC +bzC +uFJ +kRb cnx cnx -qFO +sgc adD cnx cnx -nnm -iWH -qDF -tvL +kRb +joG +jAP +ksB xYu xYu xYu @@ -65769,53 +86322,55 @@ xYu acf acf xYu -qFO -qFO -qFO -qFO -qFO -qFO +lgc +sDO +sDO +aqK +sDO +sDO cnx nnm +kFk +rrg mui mui mui mui +dJj +pdF +pdF +pdF +pdF mui mui mui mui +nwg mui mui mui mui +nPc +dJj mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -ilc -mui +nPc +xTT mui mui mui aeR -mui +teT mui mui nPc mui -mui -mui -mui -nnm +gwh +nPc +vvm +xMp aeB +wPt +wPt iXF iXF iXF @@ -65829,19 +86384,20 @@ iXF iXF iXF iXF -iXF -iXF +hCs "} (17,1,2) = {" -fJT -fJT -fJT -fJT -trG +hCs +udj +udj +udj +udj +udj +psY vNC -asL -rau -qrR +wVW +rtY +cwP qrR qrR bQE @@ -65866,7 +86422,7 @@ teX dVp gpu ghq -qrR +gpo eHg qrR cde @@ -65890,18 +86446,18 @@ aDJ pBz iqA iqA -iqA +ifc iqA pBz -vRr +atp vRr drs cnx cnx -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO xYu xYu xYu @@ -65909,21 +86465,21 @@ xYu xYu xYu xYu -iXF -iXF -iXF -iXF -nnm +bzC +bzC +bzC +bzC +kRb cnx -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO cnx cnx -nnm -nnm -mui +kRb +kRb +lzJ xYu xYu xYu @@ -65931,58 +86487,57 @@ acf acf afq acp -qFO -qFO -qFO +sDO +emH +vaW xYu xYu -qFO +sDO cnx -nnm -mui -jNo -jNo +pyx +oot +iXF +iXF eRq mui +deg mui mui +dJj +jfE mui mui mui +dJj mui +pdF +pdF mui +dJj +dJj mui +dJj +lZu mui mui mui +pdF mui +pdF +pdF +pdF +dJj mui mui +mKm +dJj mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -mui -ilc -mui -mui -mui +dJj +nnm nnm -aeC fvI aeA jNo -jNo iXF iXF iXF @@ -65993,16 +86548,20 @@ iXF iXF iXF iXF +iXF +hCs "} (18,1,2) = {" -fJT -fJT -fJT -fJT -trG +hCs +udj +udj +udj +udj +udj +psY qQY -wVW -qrR +wAh +iyU qrR qrR jhR @@ -66052,7 +86611,7 @@ pBz gTc pBz ggt -pBz +pNF pBz pBz pBz @@ -66060,10 +86619,10 @@ vRr drs drs cnx -qFO +sDO ack -qFO -qFO +sDO +sDO acX xYu xYu @@ -66071,53 +86630,46 @@ xYu xYu xYu xYu -iXF -iXF -nnm -nnm -nnm +bzC +bzC +pkw +ppX +kRb cnx adr -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO cnx cnx -nnm -mui -mui +kRb +cHW +wGb xYu xYu xYu acf acq -qFO -qFO -qFO +sDO +sDO +sDO xYu -qFO -qFO +prm +sDO afk cnx -nnm -jNo -jNo -jNo -jNo -mui -mui -mui -mui -mui -mui -mui -mui -mui +ehq +iXF +iXF +iXF +iXF mui mui mui mui +oiw +nnm mui mui mui @@ -66128,23 +86680,29 @@ mui mui mui mui +pdF +pdF +pdF +pdF mui mui mui mui mui mui +dJj mui mui +pdF +pdF mui mui mui -aeE +woE fvI aeB jNo jNo -jNo iXF iXF iXF @@ -66155,8 +86713,12 @@ iXF iXF iXF iXF +iXF +hCs "} (19,1,2) = {" +hCs +psY psY psY psY @@ -66213,67 +86775,67 @@ vRr vRr pBz pBz -pBz -pBz +pNF +xFf pBz sUs pBz -vRr +atp vRr drs hHQ cnx acw -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO xYu xYu xYu xYu xYu xYu -iXF -nnm -nnm -nnm +bzC +oOm +kRb +kRb cnx -qFO -qFO +sDO +sDO +sDO coB -qFO adA -qFO +sDO acO -nnm -nnm -nnm +kRb +kRb +dyl xYu xYu acf acf afr afp -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO acX cnx cnx -jNo -jNo -jNo -jNo -jNo +iXF +iXF +iXF +iXF +iXF nnm mui nnm nnm +sAl nnm -mui -mui +ccl mui lSt nnm @@ -66297,16 +86859,14 @@ mui mui lSt mui -mui -mui +dJj +ccl +teT nPc -mui -mui +xTT aeD aeA jNo -jNo -jNo iXF iXF iXF @@ -66317,8 +86877,13 @@ iXF iXF iXF iXF +iXF +iXF +hCs "} (20,1,2) = {" +hCs +psY kLl azx azx @@ -66371,13 +86936,13 @@ trG trG pBz pBz +atp vRr vRr vRr -pBz -pBz -pBz -pBz +xFf +pNF +fNv kCV pBz pBz @@ -66386,56 +86951,56 @@ kRb rdS xYu cnx -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO acb xYu xYu xYu -iXF -nnm -nnm +bzC +kRb +kRb cnx cnx -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO cnx -nnm -nnm +kRb +kRb xYu xYu xYu xYu -qFO -qFO -qFO -qFO -qFO +aCP +sDO +sDO +sDO +sDO cnx cnx cnx cnx -jNo -jNo -jNo -jNo -jNo +iXF +iXF +iXF +iXF +iXF iXF nnm nnm nnm nnm svT -mui -mui +nnm +nnm mui abP nnm @@ -66459,15 +87024,12 @@ aaD nnm abP nnm +deg +ccl mui -mui -mui -mui -aeF -jNo -jNo -jNo -jNo +xTT +oWO +aeN jNo iXF iXF @@ -66479,11 +87041,17 @@ iXF iXF iXF iXF +iXF +iXF +iXF +hCs "} (21,1,2) = {" +hCs +psY mxJ -dzs -dzs +bWG +bWG sHW cnr xSB @@ -66537,24 +87105,24 @@ sUs pBz pBz vRr -vRr -pBz +quO +xFf pBz cyh ybn pBz vRr -vRr +atp rdS xYu cnx cnx ach -qFO -qFO +sDO +sDO adC -qFO -qFO +sDO +sDO qFO xYu xYu @@ -66563,42 +87131,42 @@ cnx cnx cnx adr -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO cnx cnx xYu xYu afv aft -qFO +sDO afs -qFO -acX +sDO +maC afo -qFO +acv cnx xYu xYu xYu -jNo -jNo -jNo -jNo iXF -nnm +iXF +iXF +iXF +iXF +iqf nnm wZA nnm svT svT svT -mui -mui +ccl +nnm nnm bFR bFR @@ -66623,14 +87191,10 @@ bFR nnm mui mui -mui -ilc -mui -jNo -jNo -jNo -jNo -jNo +deg +oPv +xTT +aeN jNo iXF iXF @@ -66641,11 +87205,18 @@ iXF iXF iXF iXF +iXF +iXF +iXF +iXF +hCs "} (22,1,2) = {" +hCs +psY poH -dzs -dzs +bWG +bWG dzs cnr xSB @@ -66693,63 +87264,63 @@ xQd trG wRx trG -exp +kFd pBz pBz -qTH -rIb +kdz +kQI pBz -vRr -vRr +pNF +pNF pBz pBz wKY qkY -vRr +atp xYu xYu xYu xYu cnx cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +rOr xYu xYu xYu xYu -qFO -qFO -qFO -qFO +acv +sDO +sDO +sDO cnx cnx -afF -qFO -qFO -qFO -qFO -qFO +aAQ +sDO +sDO +sDO +ous +adD afw afu -qFO -qFO -qFO -qFO +ard +sDO +sDO +sDO cnx cnx cnx xYu -jNo -jNo -jNo -jNo -jNo +iXF +iXF +iXF +iXF +iXF iXF iXF iXF @@ -66758,8 +87329,8 @@ nnm nnm nnm svT -mui -mui +tPf +nnm nnm nnm bFR @@ -66786,14 +87357,8 @@ nnm nnm nnm mui -mui -mui -jNo -jNo -jNo -jNo -jNo -jNo +nPc +xTT jNo iXF iXF @@ -66803,11 +87368,20 @@ iXF iXF iXF iXF +iXF +iXF +iXF +iXF +iXF +iXF +hCs "} (23,1,2) = {" +hCs +psY mxJ -dzs -dzs +bWG +bWG dzs cnr xSB @@ -66853,75 +87427,75 @@ xpx xpx mwq nnp -drR +efi nnp exp exp pBz -pZW +voQ tnp -rIb -pBz -vRr -vRr +awV +xFf +pNF vRr +atp vRr cRQ cRQ xYu xYu -cHW +wcJ kRb kRb cnx acP -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO adv -qFO -qFO +sDO +sDO afk -qFO -qFO -afn -qFO -qFO -cnx +sDO +sDO +sDO +sDO +usu +gji xYu xYu cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +lPm +sDO +sDO coB -qFO -qFO +sDO +sDO cnx cnx -nnm -nnm -nnm -jNo -jNo -jNo -jNo +kRb +kRb +kRb +iXF +iXF +iXF +iXF iXF iXF iXF jNo jNo -mui -mui +oMQ +jfE nnm svT -mui -mui +asL +nnm nnm bFR bFR @@ -66948,14 +87522,14 @@ nnm kGi nnm nnm -mui -mui +teT +xTT jNo tvB +iXF jNo jNo -jNo -jNo +iXF jNo iXF iXF @@ -66965,11 +87539,14 @@ iXF iXF iXF iXF +hCs "} (24,1,2) = {" +hCs +psY mxJ -dzs -dzs +bWG +bWG dzs cnr xSB @@ -67015,16 +87592,16 @@ mwq mwq xpx nnp -drR +efi nnp exp exp pBz -ade -pdy -tBj -rIb -pBz +pZW +rUU +krE +kNR +xFf pBz pBz gTc @@ -67032,52 +87609,52 @@ vRr rdS xYu xYu -cHW +ddi cHW kRb cnx cnx acc -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO adA cnx xYu cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO xYu xYu -nnm -nnm -mui -mui -jNo -jNo -jNo +pTN +kRb +aOp +lzJ jNo iXF iXF +iXF +iXF +iXF jNo jNo -mui +teT mui mui svT @@ -67119,7 +87696,6 @@ jNo jNo jNo jNo -jNo iXF iXF iXF @@ -67127,8 +87703,12 @@ iXF iXF iXF iXF +iXF +hCs "} (25,1,2) = {" +hCs +psY cJU pki pki @@ -67136,7 +87716,7 @@ xBM psY jNI tri -wRx +gpu adY rgP dkh @@ -67177,75 +87757,75 @@ xpx xpx xpx nnp -drR +efi nnp exp exp pBz -mkN -lqt -acN -acW -yec +cpp +mgk +tbK +vCJ +ros rIb ybn pBz -vRr +atp vRr xYu pBz pBz -cHW +ahk kRb kRb cnx cnx -qFO -qFO -qFO +sDO +sDO +sDO adA -qFO -qFO +sDO +sDO afH -cnx -cnx -qFO -qFO -qFO +wxg +jUp +sDO +sDO +sDO acB cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +nFO adD afk xYu xYu -xYu -nnm -mui -mui -xTT -jNo +xYu +kRb +aOp +lzJ +pBz jNo jNo iXF iXF iXF +iXF jNo jNo mui -mui -mui -mui +oMQ +deg +nnm svT -mui -mui +nnm +ccl aeq bFR bFR @@ -67282,15 +87862,18 @@ tvB jNo jNo jNo -jNo iXF iXF iXF iXF iXF iXF +iXF +hCs "} (26,1,2) = {" +hCs +psY psY psY psY @@ -67337,76 +87920,76 @@ yhX pux dDK dDK -dDK +ebV trG wRx trG -exp +ojm pBz pBz ybn mkN -lqt -acE -pdy -iuH +pEA +wJN +vid +qOk yec -rIb +fQl pBz -vRr -vRr -qTH -lrG -yec -rIb +atp +pBz +iWE +hCa +wpI +ppg kRb kRb cnx cnx -qFO -qFO -qFO -qFO -qFO -cnx +sDO +sDO +dTZ +sDO +sDO +cIZ xYu xYu cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +rdn adA afs -cnx +tMZ cnx cnx xYu xYu xYu -nnm -mui -nPc -xTT -xTT +bEf +cHW +lzJ +pBz +pBz +jNo +cyh +jNo jNo -tvB -iXF -iXF iXF jNo tvB jNo afi +oMQ mui -mui -mui +nnm svT -mui +nnm mui nnm bFR @@ -67438,7 +88021,7 @@ nnm nnm tvB jNo -mui +nPc xTT xTT tvB @@ -67451,10 +88034,13 @@ iXF iXF iXF iXF +hCs "} (27,1,2) = {" -fJT -fJT +hCs +udj +udj +udj psY dkI khs @@ -67505,66 +88091,66 @@ trG trG exp pBz -exp +fZC pBz pBz -pZW -pdy -pdy -pdy -acM -dVw +cpJ +jgl +pCa +cCu +njW +nLU +pBz pBz pBz -vRr pZW -pdy -pdy -iuH +sDf +fdv +dSU rIb kRb kRb cnx afM -qFO +sDO coB -qFO +sDO cnx xYu xYu cnx -qFO -qFO -qFO -qFO +yiN +sDO +sDO +sDO adv -qFO -qFO -qFO +sDO +cnx +cnx xYu cnx cnx cnx -nnm -nnm +kRb +kRb xYu -nnm -nnm -mui -mui -mui -xTT -xTT -aqx -ppG -mmw +ovg +kRb +aOp +cHW +lzJ +pBz +pBz +vRr +hrh +tvB jNo jNo tvB tvB dAw mui -mui +oMQ mui svT svT @@ -67600,23 +88186,26 @@ kGi fvI qgz mui -mui -mui +deg +nPc xTT xTT gyG gyG +jNo +jNo iXF iXF iXF iXF iXF -iXF -iXF +hCs "} (28,1,2) = {" -fJT -fJT +hCs +udj +udj +udj psY mWJ psY @@ -67668,70 +88257,70 @@ trG exp exp yeG -exp +fZC ybn -mkN -lqt -acM -pdy -acN -iuH +rAq +tHH +tFG +gFF +cip +tVm rIb pBz pBz -mkN -lqt -pdy -pdy +cpp +ozu +bSY +tTg tBj rIb kRb cnx -qFO +sDO acc -qFO -qFO -qFO +sDO +sDO +oob cnx cnx -qFO -qFO -afn -qFO -qFO -qFO -qFO +sDO +sDO +sDO +sDO +sDO +sDO +cnx xYu xYu xYu -nnm -nnm -nnm -nnm -nPc -mui -mui -mui -mui -xTT -xTT -xTT -aqx -aqx -aqx -ppG +kRb +kRb +kRb +kRb +lzJ +cHW +cHW +aOp +lzJ +pBz +pBz +pBz +atp +vRr +atp +xLz tvB tvB tvB xTT dAw +dJj mui -mui -mui +nPc jNo svT ael -mui +nnm nnm nnm bFR @@ -67761,23 +88350,26 @@ kGi kGi fvI mui +pdF +pdF mui mui -mui -mui -mui +nPc xTT gyG xTT +jNo iXF iXF iXF iXF iXF -iXF +hCs "} (29,1,2) = {" -fJT +hCs +udj +udj psY psY dkI @@ -67833,54 +88425,54 @@ yeG pBz pBz pBz -mkN -kWZ -lqt -pdy -acH -tnp -rIb +lKe +hUr +pYN +prs +bmT +mQa +lGJ pBz -cHW +sQL mkN -lqt -pdy -pdy +jPR +mlo +cUr dVw kRb cnx cnx -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO -qFO +jon +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO +sDO adN afk xYu xYu xYu -mui -mui -mui -mui -mui -mui -xTT -xTT -xTT -xTT -xTT -kOw -xTT -xTT -aqx -aqx +orK +aOp +cHW +cHW +aOp +lzJ +pBz +pBz +pBz +pBz +pBz +ybn +pBz +pBz +atp +vRr njC xTT kOw @@ -67888,12 +88480,12 @@ ocw xTT mui mui -mui +nPc xTT jNo svT aem -mui +nnm mui nnm bFR @@ -67914,7 +88506,7 @@ bFR bFR bFR bFR -bFR +nnm bFR nnm nnm @@ -67922,24 +88514,27 @@ kGi kGi fvI fvI +deg mui mui -mui -mui -mui -mui +dJj +cXW +deg xTT gyG gyG +jNo +jNo iXF iXF iXF iXF -iXF -iXF +hCs "} (30,1,2) = {" -fJT +hCs +udj +udj psY xka dkI @@ -67995,60 +88590,60 @@ exp pBz exp pBz +xFf +xFf +byM +qHr +mnc +vWE +uKV pBz pBz -mkN -sEd -pdy -acE -dVw -pBz -pBz -qTH -nai -pdy -pdy -dVw +tHT +nJZ +qln +pDo +gGv kRb kRb -cnx -qFO +eah +kmO xYu acB -qFO -qFO -qFO -qFO -qFO +sDO +sDO +ism +sDO +sDO afs cnx cnx xYu xYu xYu -mui -mui -xTT -xTT -xTT -xTT -xTT -xTT -qqG -xTT -xTT -kOw -xTT -xTT -xTT -xTT -kOw +xsM +lzJ +pBz +pBz +pBz +pBz +pBz +pBz +aDJ +uYt +gTc +jnv +pBz +ybn +pBz +pBz +ybn xTT xTT mui +xTT mui -mui -mui +deg mui dAw dAw @@ -68075,33 +88670,36 @@ bFR bFR bFR bFR -aaE +sQG nnm acZ nnm kGi kGi -jNo -tvB -mui -mui -mui -mui -ilc -mui +iXF +mmw +dhB +gRc +dJj mui +dJj +ocJ +cpR xTT xTT gyG +jNo +jNo +jNo iXF iXF iXF -iXF -iXF -iXF +hCs "} (31,1,2) = {" -fJT +hCs +udj +udj psY agv dkI @@ -68109,13 +88707,13 @@ trG vNz gxy xpx -oxo +xpx yhX dDK nlN rHq qrR -qrR +cbc qrR qrR adW @@ -68151,27 +88749,27 @@ yjd yjd wXv hnK -cHW +vQw pBz pBz +fZC exp exp -exp -exp -pBz +mUA +xFf pBz mkN -acI -pdy -acC -rIb +xuw +kKu +qCV +oVK pBz -pZW +eQl cZp -pdy -pdy -iuH -rIb +pVY +jHX +sIW +oVK xYu xYu xYu @@ -68180,45 +88778,45 @@ cnx cnx cnx adD -qFO -qFO +czQ +sDO cnx cnx -nnm -nnm -mui -mui -mui -xTT -xTT -aqx -aqx -xTT -xTT -kOw -xTT -xTT -amt -xTT -xTT -xTT -qqG -xTT -amt +kRb +kRb +uFJ +aOp +lzJ +pBz +pBz +atp +vRr +pBz +pBz +ybn +pBz +pBz +lTT +cUg +pBz +pBz +aDJ +pBz +pBz xTT mui +dJj mui -mui -mui -mui -mui +dJj +pdF +aER xTT kOw jNo jNo xTT xTT -mui +dJj lSt nnm nnm @@ -68242,28 +88840,31 @@ nnm frZ kGi kGi -kGi -jNo -tvB +xif iXF +mmw +iXF +dfG +lxS +nPc +dJj mui mui -mui -mui -mui -mui -mui +nPc xTT gyG -mmw -iXF +tvB +jNo iXF iXF iXF iXF +hCs "} (32,1,2) = {" -fJT +hCs +udj +udj psY vOl dkI @@ -68271,7 +88872,7 @@ trG duM gpu xpx -oxo +xpx dDK dDK cGg @@ -68308,65 +88909,65 @@ wRx hfX gVs uTi -nLM +wSG bvW jVm jVm fXF -rIb +oho pBz pBz pBz exp pBz -pBz -exp +xFf +tTF pBz pBz mkN kWZ kWZ -ksB +amw aDJ mkN -lqt -pdy -pdy -iHY +tSK +ilK +pPm +cFW dVw xYu xYu xYu xYu -nnm -nnm +kRb +kRb cnx cnx cnx cnx cnx -nnm -nnm -nPc -mui -mui -xTT -xTT -aqx -aqx -aqx -aqx -xTT -ocw -xTT -xTT -xTT -xTT -ocw -xTT -xTT -xTT -xTT +kRb +kRb +lzJ +cHW +lzJ +pBz +pBz +atp +vRr +atp +atp +pBz +sUs +pBz +pBz +pBz +pBz +sUs +pBz +pBz +pBz +pBz nnm nnm nnm @@ -68412,28 +89013,31 @@ iXF iXF mui mui -mui +deg mui mui xTT xTT -mmw +tvB iXF iXF iXF iXF iXF +hCs "} (33,1,2) = {" -fJT +hCs +udj +udj psY dkI dkI trG plt -gEt +gxy xpx -oxo +mwq dDK dDK mmb @@ -68470,17 +89074,17 @@ xiT hfX gVs hnK -qTH -jWo -fqb -fqb -kbg +kdz +qGs +xxe +vtp +xiJ ksB pBz ybn aDJ pBz -hOt +sWF iqA iqA iqA @@ -68492,62 +89096,62 @@ ybn pBz pBz mkN -lqt -pdy -kbg -ksB +dEC +jLN +bxY +vRC iqA iqA iqA -svT -mui -wZA -nnm -nnm -nnm -nnm -nnm -nnm -mui -mui -xTT -xTT -xTT -jNo -jNo -jNo -aqx -sVQ -xTT -xTT -xTT -kGi -kGi -kGi -kGi -kGi -kGi -kGi -kGi +iqA +cHW +acH +kRb +kRb +kRb +kRb +kRb +kRb +cHW +lzJ +pBz +pBz +pBz +kCV +kCV +kCV +vRr +qrg +pBz +pBz +pBz +fZC +exp +exp +exp +exp +exp +exp +exp kGi kGi nnm nnm nnm nnm -amt +xTT kOw iXF mmw jNo -xTT +aeV qqG xTT xTT aaT -mui -ilc -mui +dMf +mKm +gIA eSY bhU cVU @@ -68559,7 +89163,7 @@ kGi kGi fMm xXD -cvP +nRP sAl kGi kGi @@ -68569,15 +89173,15 @@ aeH jNo jNo jNo -jNo iXF iXF -mui +iXF +deg mui nPc mui mui -mui +iti xTT mmw iXF @@ -68585,14 +89189,17 @@ iXF iXF iXF iXF +hCs "} (34,1,2) = {" -fJT +hCs +udj +udj psY -dkI +wqT dkI trG -gSs +rlP yhX hZL bIF @@ -68627,13 +89234,13 @@ iwf jVv wlD oUD -opf -trG +iEW +dvt hfX gVs hnK -pZW -fqb +mRQ +hsK mKr mKr mKr @@ -68646,51 +89253,51 @@ iqA iqA iqA iqA -exp -exp +mUA +gFW +xFf +xFf +xFf +xFf +xFf +xFf +fum +xgI +naO +xFf +iqA +iqA +iqA +iqA +lzJ +ahk +kCV +kCV +lzJ +lzJ +cHW +cHW +lzJ pBz pBz +ybn +kCV +kCV +kCV +ybn pBz pBz pBz +exp +exp pBz -mkN -kWZ -ksB pBz -iqA -afB -iqA -svT -mui -mui -jNo -jNo -mui -mui -mui -mui -mui -xTT -xTT -kOw -jNo -jNo -jNo -kOw -xTT -xTT -xTT -kGi -kGi -xTT -xTT -kGi -kGi -kGi -kGi -kGi -kGi +exp +exp +exp +exp +exp +exp kGi kGi kGi @@ -68707,8 +89314,8 @@ xTT xTT ocw mui -mui -mui +dJj +sjw mui mui nnm @@ -68729,15 +89336,15 @@ xTT ocw kOw jNo -jNo -jNo -jNo +iXF +iXF +iXF iXF iXF nnm nnm mui -mui +dJj mui nnm nnm @@ -68747,11 +89354,14 @@ iXF iXF iXF iXF +hCs "} (35,1,2) = {" -fJT +hCs +udj +udj psY -dkI +leh dkI trG rGW @@ -68764,9 +89374,9 @@ ffk gpu iGt mNn -odx +ouG trG -gpu +eaa nUz nUz gpu @@ -68776,14 +89386,14 @@ sVp xBu iGt ffk -opf +iEW fXb har trG efi ngu ngu -efi +aTX trG trG xiT @@ -68795,68 +89405,68 @@ hfX gVs hnK pZW -fqb +gKX mKr mKr mKr pBz pBz -vRr +atp pBz pBz iqA iqA iqA iqA -exp +mUA +xFf +xFf +mUA +mUA +mUA +gFW +xFf +xFf +xFf +xFf +xFf +bkb +iqA +iqA +iqA +pBz +pBz +pBz +kCV +kCV +pBz +pBz +pBz +pBz +pBz +sUs +pBz +pBz +pBz +aDJ pBz pBz +fZC exp exp exp exp +yeG +yeG pBz pBz pBz pBz -pBz -iqA -iqA -afB -svT -xTT -xTT -xTT -jNo -jNo -xTT -xTT -xTT -xTT -xTT -ocw -xTT -xTT -xTT -qqG -xTT -xTT -kGi -kGi -kGi -kGi -kGi -xxk -xxk -xTT -xTT -xTT -xTT -kGi +exp kGi xTT xTT -kGi +aih kGi kGi kGi @@ -68887,13 +89497,13 @@ kuk kGi kGi kGi -kGi -amt +aih +xTT xTT jNo jNo -jNo -jNo +iXF +iXF iXF mmw nnm @@ -68902,16 +89512,19 @@ nnm nnm nnm nnm -nnm -nnm +sha +mih iXF iXF iXF iXF iXF +hCs "} (36,1,2) = {" -fJT +hCs +udj +udj psY psY dkI @@ -68956,67 +89569,67 @@ hfX hfX gVs hnK -pZW -fqb -fqb -fqb -tnp +eEp +tuu +lrn +iiW +axQ rIb pBz -vRr -vRr +wqN +atp sUs iqA iqA -hOt +sWF iqA pBz exp exp exp -exp +fZC pBz pBz pBz exp exp exp -exp +wYx iqA iqA iqA -svT -sVQ -kOw -qqG -xTT -xTT -ocw -xTT -xTT -xTT -amt -xTT -kGi -kGi -kGi -kGi -kGi -xTT -xTT -kGi -kGi -kGi -xTT -ocw -xTT -kOw -kOw -xTT -xTT -xTT -kGi +iqA +qrg +ybn +aDJ +pBz +pBz +sUs +pBz +pBz +pBz +pBz +pBz +fZC +exp +exp +exp +exp +pBz +pBz +exp +exp +fZC +pBz +sUs +pBz +ybn +ybn +pBz +pBz +pBz kGi +aih xTT amt kGi @@ -69024,19 +89637,19 @@ kGi kGi kGi xTT -amt +xTT xTT xTT xTT ocw -mui -mui +jFC +dJj mui xTT xTT kGi kGi -kGi +aih kGi kGi xxk @@ -69065,20 +89678,23 @@ oRx rsY nnm nnm -nnm +soO iXF iXF iXF iXF iXF +hCs "} (37,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC psY mWJ trG -vRr +atp pBz trG mgR @@ -69118,26 +89734,42 @@ yjd yjd wXv hnK -mkN -kWZ +sfb +evJ kWZ -kWZ -kWZ -ksB +nLs +gEZ +akH pBz sdn vRr -vRr +atp +pBz +xFf +mUA +exp +sUs +pBz pBz pBz +pBz +gDr +exp +exp +fZC +pBz +pBz +exp +exp +gFW +mUA exp exp -sUs pBz pBz pBz pBz -gTc +exp exp exp exp @@ -69145,58 +89777,42 @@ pBz pBz exp exp +yeG +yeG exp exp -kGi -kGi -xTT -xTT -xTT +exp +exp +pBz +pBz +pBz +pBz +pBz +ybn +pBz +qrg +pBz +aDJ xTT kGi kGi +fkF kGi -kGi -xTT xTT -kGi -kGi xxk -xxk -kGi kGi kGi -kGi -xTT xTT xTT -amt -xTT kOw xTT -sVQ -xTT -qqG -xTT -kGi -kGi -kGi -kGi -xTT -xxk -kGi -kGi -xTT -xTT -kOw -amt xTT -mui +nPc mui xTT xTT kGi -kGi +aih kGi xTT xTT @@ -69212,7 +89828,7 @@ kGi kGi xTT xTT -kGi +aih xTT kOw jNo @@ -69220,8 +89836,8 @@ mmw rsY oRx efR -vnP -vnP +kjP +kjP efR oRx rsY @@ -69233,15 +89849,18 @@ oRx oRx oRx oRx +hCs "} (38,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC psY dkI khs vRr -vRr +atp trG trG pBz @@ -69272,74 +89891,74 @@ exp pBz trG trG +fmK nLM +nqT nLM nLM nLM -nLM -nLM -nLM +nqT okx afY -cHW +thc +lzJ +ahk lzJ -cHW -cHW pBz wKY cRQ -cRQ +hrh vRr pBz -exp -pBz -exp +gFW +xFf +fZC pBz qrg qTH yec -rIb -pBz -pBz +blm +lWh +fUe pBz pBz pBz +fZC exp exp +mUA +xFf +pBz +yeG +yeG +pBz +pBz +fZC +pBz +pBz +fZC +pBz +pBz exp exp pBz pBz -xxk -xxk -xTT -xTT -kGi -xTT -xTT -kGi -xTT -xTT -kGi -kGi -xTT -xTT -xTT -xTT -xTT -xTT -xTT -xTT -xTT -xTT -eaO -kOw -kOw -xTT -jNo -aqx -xTT -xTT +pBz +pBz +pBz +pBz +pBz +pBz +pBz +pBz +hHl +ybn +ybn +pBz +kCV +atp +pBz +pBz kGi kGi kGi @@ -69356,14 +89975,14 @@ evV evV xTT xTT -kGi +aih kGi kGi xTT xTT kGi kGi -xTT +kGi xTT kGi kGi @@ -69381,24 +90000,27 @@ fLs evV uzk efR -vnP -vnP -vnP -vnP +kjP +kjP +kjP +iGm +uTv +efR efR efR -vnP -vnP rsY rsY oRx oRx oRx oRx +hCs "} (39,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC psY trG trG @@ -69432,76 +90054,76 @@ pBz exp exp pBz +vUN ybn -ybn -cHW -cHW -cHW -cHW -cHW -cHW -cHW +lzJ +aOp cHW cHW +aOp +lzJ cHW +aOp cHW +lzJ +qqg pBz pBz pBz +hrh cRQ cRQ -cRQ -vRr -pBz -exp +atp pBz +mUA +xFf pBz pBz -qTH +jTV jWo -pdy -iuH -yec +rTn +lnH +cUR lrG -rIb +ppW pBz aDJ pBz pBz pBz -pBz -pBz +xFf +xFf +fZC exp exp -kGi -kGi -kGi -kGi -kGi -xTT -xTT -kOw -xTT -xTT -xTT -amt -kOw -xTT -xTT -ocw -xTT -xTT -xTT -eaO -xTT -xTT -eaO -xTT -jNo -jNo -jNo -aqx -xTT +exp +exp +exp +exp +pBz +pBz +ybn +pBz +pBz +pBz +pBz +ybn +pBz +pBz +sUs +pBz +pBz +pBz +hHl +pBz +pBz +uhn +pBz +kCV +kCV +kCV +vRr +pBz xTT xTT xTT @@ -69519,12 +90141,12 @@ fLs xTT xTT xTT -kGi -kGi -xTT +aih kGi xTT +aih xTT +kGi xTT ocw xTT @@ -69542,97 +90164,100 @@ xTT fLs fLs uzk -vnP -vnP -vnP +kjP +kjP +kjP myV -vnP -vnP -vnP -vnP -vnP +kjP +kjP +efR +kjP +efR oRx rsY oRx oRx oRx oRx +hCs "} (40,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC kCV kCV qrg +atp vRr vRr -vRr -vRr +atp pBz pBz sUs pBz -pBz +vUV ybn pBz pBz -pBz exp exp -pBz +exp +exp pBz ybn pBz aDJ pBz pBz -pBz +fNv ybn ybn pBz exp exp -exp +fZC pBz -ybn +vUN ybn pBz cHW agc -cHW +kRb mKr mKr -cHW -cHW -cHW -cHW +kRb +gMI +kRb +aOp mKr mKr mKr wKY cRQ cRQ -cRQ -pBz -pBz +hrh pBz pBz +xFf +xFf pBz qTH -nai -pdy -pdy -pdy -pdy -kbg -ksB +iwt +umD +eib +tKj +tUk +hJH +tWE ybn pBz pBz -cHW -pBz -pBz +lzJ pBz +xFf +xFf pBz pBz pBz @@ -69648,27 +90273,27 @@ ybn aDJ pBz pBz -qTH -yec -yec +iOW +mKU +gCh lhd -rIb -xTT -xTT -eaO -xTT -eaO -eaO -jNo -jNo -jNo -aqx -kOw +ftG +pBz +pBz +uhn +pBz +uhn +hHl +kCV +kCV +kCV +atp +ybn kOw xTT ocw xTT -amt +xTT xTT xTT kGi @@ -69679,13 +90304,13 @@ vSu qEe qEe qEe +wLw +wqa xTT xTT -xTT -xTT -kGi +aih kGi -xTT +jyA ocw xTT xTT @@ -69694,7 +90319,7 @@ xTT xTT xTT xTT -kGi +aih kGi xxk xTT @@ -69705,43 +90330,46 @@ qEe qEe bGQ uzk -efR -vnP -vnP -vnP -vnP -vnP -vnP -vnP -efR +uTv +sFT +mkQ +dqT +kjP +kjP +kjP +kjP +hYg rsY oRx oRx oRx oRx +hCs "} (41,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC kCV kCV pBz mKr mKr -vRr -pBz -pBz +atp pBz pBz +xAT +oeI pBz ybn ybn pBz pBz pBz -exp -gTc -exp +kFd +tDG +fZC exp exp pBz @@ -69758,16 +90386,16 @@ pBz pBz mKr mKr -sUs -cHW -cHW -cHW +vUN +ptW +fWd +fWd mKr mKr -cHW -cHW -cHW -cHW +fWd +fWd +ptW +fWd mKr mKr aah @@ -69777,29 +90405,29 @@ cRQ pBz ybn pBz -pBz -pBz +ygd +xFf pBz pZW -pdy -pdy -pdy -pdy -pdy -dVw +gMv +oES +oES +xIp +rZz +fzG pBz pBz kCV -cHW +dPt qqg -cHW -pBz -pBz +ahk +xFf +xFf pBz -qTH -yec -lhd -yec +fHD +pNp +vUF +gCh rIb pBz pBz @@ -69807,25 +90435,25 @@ kCV kCV kCV ybn -qTH -lrG +kdz +hCa yec -nai -pdy -pdy -pdy +jdP +lYX +niY +vXH dVw -xTT -xTT -eaO -xTT -eaO -xTT -jNo -jNo -jNo -aqx -xTT +pBz +pBz +hHl +pBz +uhn +pBz +kCV +kCV +kCV +atp +pBz kOw xco xtB @@ -69846,8 +90474,8 @@ fLs xTT xTT kGi -xTT -amt +xkg +pJr xTT xTT cCn @@ -69855,7 +90483,7 @@ oWb oWb fzo xTT -amt +xTT ocw kGi xxk @@ -69869,31 +90497,34 @@ xLd aGr luo efR -vnP -vnP -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP +kjP +kjP efR rsY oRx oRx oRx oRx +hCs "} (42,1,2) = {" -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC kCV kCV mKr mKr pBz -pBz +fNv ybn -gTc +cvw pBz pBz pBz @@ -69902,6 +90533,7 @@ pBz exp exp exp +tFD exp exp exp @@ -69909,26 +90541,25 @@ exp exp exp exp -exp -pBz pBz +gTc aDJ pBz yeG exp pBz -gTc +pBz mKr mKr pBz -cHW -cHW -cHW +dPt +gMI +kRb mKr mKr +kRb cHW -cHW -cHW +kRb afX mKr mKr @@ -69936,64 +90567,64 @@ kCV kCV kCV kCV -ybn +fNv pBz aDJ -exp -exp +mUA +gFW pBz yab -pdy -pdy -pdy -kbg -kWZ -ksB +rNk +vnt +aCn +kMM +ttp +pSr sUs kCV kCV -cHW -cHW -cHW -cHW -pBz -hGT -nai -pdy -pdy -pdy -iuH -rIb pBz cHW +uFJ +bAd +xFf +hGT +msO +hEA +cqh +kJx +bXp +rLy +pBz +dPt kCV ybn ybn pZW -pdy -pdy -pdy -pdy -pdy -pdy +lto +wCU +oIO +xUZ +qZP +pTz dVw -ocw -xTT -xTT -eaO -eaO -xTT -xTT -jNo -jNo -jNo -kOw +sUs +pBz +pBz +uhn +uhn +pBz +pBz +kCV +kCV +kCV +ybn kOw vZY sUE sUE gmk -xTT +aeV kOw kOw xTT @@ -70008,7 +90639,7 @@ fLs xTT kGi kGi -xTT +aih xTT xTT cCn @@ -70030,24 +90661,27 @@ svT xLd aGr aGr -efR -vnP -vnP -vnP -efR -vnP -vnP +uTv +kjP +kjP +aQg +mhg +aQg +kjP efR rsY oRx oRx oRx oRx +hCs "} (43,1,2) = {" -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC kCV kCV kCV @@ -70063,17 +90697,17 @@ exp exp exp exp -exp -pBz -pBz +fZC pBz exp +pBz +fZC exp yeG yeG exp -exp -gTc +fZC +iHu pBz exp yeG @@ -70085,11 +90719,11 @@ pBz pBz aDJ kRb +aOp +kRb +kRb cHW -cHW -cHW -cHW -cHW +aOp cHW cHW kRb @@ -70101,55 +90735,55 @@ qrg pBz ybn pBz -exp -pBz +mUA +xFf pBz -mkN +mqv kWZ bjW -kbg +ukm ksB -pBz +ybn pBz kCV pBz -cHW -qTH -yec +lzJ +kdz +rxH rIb -cHW -pBz +slf +xFf pZW -pdy -pdy -pdy -pdy -pdy -vrz -cHW -cHW -cHW -cHW +iqj +kZn +odi +mPb +jZq +gcb +cHW +pqL +kRb +lzJ sUs pZW -pdy -pdy -pdy -pdy -pdy -kbg -ksB -xTT -xTT -xTT -xTT -xTT -eaO -sVQ -jNo -jNo -jNo -kOw +bsS +uRa +vgF +gJy +aZg +cjM +sfG +pBz +pBz +vUV +pBz +pBz +uhn +qrg +kCV +kCV +kCV +ybn xco uQP sUE @@ -70192,25 +90826,28 @@ qEe xLd uzk efR -vnP -vnP -vnP -efR -efR -vnP -vnP +oNJ +kjP +kjP +efH +eto +kjP +kjP efR oRx rsY oRx oRx oRx +hCs "} (44,1,2) = {" -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC kCV kCV kCV @@ -70218,12 +90855,12 @@ wKY pBz aDJ pBz -exp -pBz -pBz +fZC pBz exp exp +exp +fZC pBz pBz pBz @@ -70250,7 +90887,7 @@ kRb kRb cHW cHW -cHW +kRb cHW cHW drs @@ -70263,55 +90900,55 @@ pBz pBz pBz pBz -exp -ybn -ybn +mUA +fpD +pnZ pBz pBz mkN ksB -mKr -mKr -pBz +kCV +kCV +ybn sUs pBz -qTH -nai -pdy -iuH -rIb -pBz -mkN -lqt -pdy -pdy -pdy -kbg -ksB -cHW -cHW -cHW +kdz +vhr +vHH +iOV +kNR +xFf +cpp +xrH +qqx +efB +bzP +sJs +mkC +lzJ +kRb +uFJ pBz pBz -pZW -pdy -pdy -pdy -pdy +exs +biL +lLx +aSd +hwe qxi ksB -cHW -xTT -qqG -xTT -eaO -xTT -eaO -xTT -kOw -jNo -jNo -xTT +ahk +pBz +aDJ +pBz +uhn +pBz +uhn +pBz +ybn +kCV +kCV +pBz vZY iUh sQz @@ -70341,39 +90978,42 @@ jBW xhF aBm cWe -wfb +uvF mxU xGW xGW -xGW +lIb mxU lQG mxU fLs evV uzk -vnP -vnP -vnP -vnP -vnP efR -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP efR +aQg +kjP +kjP +onU +wrI rsY oRx oRx oRx +hCs "} (45,1,2) = {" -kCV -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC +bzC kCV kCV cyh @@ -70382,7 +91022,7 @@ wKY pBz exp exp -exp +fZC pBz pBz pBz @@ -70400,19 +91040,19 @@ exp exp exp exp -exp -ybn +fZC ybn +pBz kCV pBz pBz -vRr +atp ybn pBz kRb kRb cHW -cHW +aOp afZ drs drs @@ -70425,55 +91065,55 @@ sUs pBz pBz exp -exp -ybn +gFW +fpD ybn ybn pBz aDJ pBz -vtL -fWd +ybn +pBz pBz pBz qTH -nai -pdy -cZp -pdy +snx +aCz +mfV +bGZ vrz +xFf pBz +nmW +yas +qKG +ebZ +kLw +vtL pBz -pZW -pdy -pdy -pdy -dVw -cHW -pBz -cHW +lzJ cHW pBz -qTH -nai -pdy -pdy -pdy -kbg +sTS +fQv +nBP +fIw +cou +tVR ksB -cHW +dPt pBz -xTT -xTT -jNo -xTT -eaO -xTT -xTT -gyG -tvB -jNo -jNo +pBz +pBz +kCV +pBz +hHl +pBz +pBz +wKY +cyh +kCV +kCV vZY orF sQz @@ -70488,7 +91128,7 @@ kPE kPE fLs fLs -mxU +tkJ lQG mxU xGW @@ -70501,7 +91141,7 @@ cCn oWb xhF mMl -wfb +uvF cCn mMl mxU @@ -70509,33 +91149,36 @@ xGW xGW xGW xGW -mxU +vYH fxj evV evV efR -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP +kjP +kjP +efR +kjP +kjP +kjP +kjP +kjP +kjP +kjP efR oRx oRx oRx oRx +hCs "} (46,1,2) = {" -kCV -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC +bzC kCV kCV kCV @@ -70551,7 +91194,7 @@ pBz ybn ybn pBz -pBz +fNv pBz pBz aDJ @@ -70561,21 +91204,21 @@ pBz exp pBz exp -exp +fZC pBz -ybn +fNv ybn pBz pBz pBz vRr -vRr +atp pBz pBz pBz pBz pBz -cHW +uFJ drs wKY wKY @@ -70585,57 +91228,57 @@ exp pBz pBz pBz +fZC exp -exp -pBz -pBz -pBz +xFf +xFf +fNv sUs pBz uhn pBz pBz -uhn +hHl pBz qrg aiD -pdy -pdy -pdy -pdy -iuH -rIb -pBz -pZW -pdy -pdy -kbg +vAQ +gDW +uxt +xIp +oXN +kNR +pBz +bRh +bid +gcG +fBk ksB -cHW +lzJ pBz pBz cHW pBz pZW -pdy -pdy -pdy -pdy +bMh +cFn +fgt +oSo dVw cHW pBz ybn -kOw -jNo -jNo -eaO -xTT -ocw -fzc -ppG -jNo -jNo -jNo +ybn +kCV +kCV +uhn +pBz +sUs +iry +cRQ +kCV +kCV +kCV xtA gME gME @@ -70667,38 +91310,41 @@ oWb xhF mMl mxU +lIb xGW -xGW -mxU -xGW -mnf mxU +lIb +rBE +fpY mxU mxU efR -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP -vnP +aQg +kjP +efR +jRE +kjP +kjP +kjP +kjP +kjP +kjP efR oRx oRx oRx oRx +hCs "} (47,1,2) = {" -kCV -kCV -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC kCV kCV kCV @@ -70706,18 +91352,18 @@ wKY pBz exp exp -gTc -ybn pBz +ybn pBz +vUV mKr mKr mKr mKr pBz pBz -cHW -cHW +lzJ +uFJ cHW pBz pBz @@ -70745,59 +91391,59 @@ pBz exp pBz pBz +fZC exp exp -exp -pBz pBz -pBz -uhn +xFf +xFf uhn +hHl +hHl uhn -uhn -gTc +pBz uhn uhn pBz pBz mkN kWZ -lqt -pdy -pdy -pdy -dVw +fGv +bNj +mlB +fsn +dru pBz pZW -pdy -pdy +eQg +teo dVw -cHW +pgc pBz pBz -cHW -qTH -yec -nai -pdy -pdy -kbg -kWZ +dPt +kdz +vRY +msu +psO +xIp +ykN +jAP ksB cHW pBz ybn -kOw -xTT -xTT -eaO -xTT -xTT -dAw -aqx -aqx -jNo -jNo +ybn +pBz +pBz +uhn +pBz +pBz +vUN +vRr +atp +kCV +kCV xtA gHy gpR @@ -70843,24 +91489,27 @@ efR efR efR efR -efR -vnP -vnP -vnP -vnP -vnP +aWk +kjP +kjP +kjP +kjP +hZp efR oRx oRx oRx +hCs "} (48,1,2) = {" -kCV -kCV -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC kCV kCV cyh @@ -70868,7 +91517,7 @@ ybn pBz pBz exp -pBz +exp ybn ybn mKr @@ -70878,18 +91527,18 @@ iqA mKr mKr pBz -qTH +fKk aie lzJ cHW pBz -exp +fZC exp pBz -exp +fZC pBz qrg -vRr +atp vRr mPs agd @@ -70904,64 +91553,64 @@ ybn pBz pBz exp +fZC exp -exp -pBz -pBz pBz pBz pBz pBz pBz +xFf +ueJ pBz pBz pBz pBz +rUO pBz -pBz -uhn +hHl uhn pBz pBz pBz -mkN -kWZ -jAP +dze kWZ -ksB +rcy +bOX +rxa wKY -aiD -pdy -kbg -ksB -cHW +psz +xHj +arI +swI +lzJ pBz -cHW -cHW +rUO +jLS pZW -pdy -pdy -pdy -kbg +sJw +udz +kzZ +gSV ksB -cHW -cHW +fpX +lzJ cHW pBz pBz -kOw -xTT -eaO -xTT -eaO -xTT -fzc -aqx -aqx -jNo -jNo +ybn +pBz +hHl +pBz +uhn +pBz +iry +atp +vRr +kCV +kCV xtA -gHy +dCC gpR abp abn @@ -71006,23 +91655,26 @@ jfF jfF jfF jfF -efR -vnP -vnP -vnP -vnP +kjP +djN +myV +kjP +kjP efR oRx oRx oRx +hCs "} (49,1,2) = {" -kCV -kCV -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC kCV kCV cyh @@ -71040,9 +91692,9 @@ iqA mKr mKr cHW -pZW +qAt dVw -cHW +sqR ahd pBz pBz @@ -71050,9 +91702,9 @@ exp exp exp pBz +atp vRr -vRr -vRr +atp vRr age vRr @@ -71060,68 +91712,68 @@ naC agb pBz sUs -gTc -ybn pBz +ybn pBz pBz -exp pBz -gTc +fZC +dfO +mcs pBz -ahJ +aOp +fyM +ahI +vAA +teA +bDN ahI mBr +mQz +waC mBr -mBr -mBr -mBr -mBr -mBr -sIP -cHW -cHW +xkh pBz uhn -uhn +hHl pBz pBz pBz pBz pBz +ons +ons wKY -wKY -wKY -mkN +rAq kWZ ksB -cHW +lzJ pBz cHW qTH yec -nai -pdy -pdy -pdy +vKj +jzp +fgt +sFU dVw -cHW -cHW -cHW -cHW -cHW +lRs +uZx +kRb +aOp +lzJ pBz -xTT -xTT -eaO -xTT -eaO -xTT -fzc -xTT -aqx -aqx -jNo +pBz +pBz +uhn +pBz +hHl +pBz +iry +pBz +atp +vRr +kCV xtA uqB pqK @@ -71168,29 +91820,32 @@ uAS mtP ldC jfF +kjP +kjP +bUq +kjP efR -vnP -vnP -vnP -vnP efR oRx oRx oRx +hCs "} (50,1,2) = {" -kCV -kCV -kCV -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC kCV kCV kCV pBz qrg -exp +fZC exp exp pBz @@ -71202,11 +91857,11 @@ mKr mKr pBz cHW -pZW -iuH +gFi +sPa rIb -cHW -cHW +aOp +lzJ pBz exp exp @@ -71216,7 +91871,7 @@ vRr vRr rRW vRr -vRr +atp pBz pBz pBz @@ -71228,62 +91883,62 @@ exp pBz pBz pBz +gTc pBz -pBz -kRb -ahK -hfX -hfX -hfX -hfX -hfX -hfX -hfX -hfX -rxa -rxa -cHW +aOp +lPJ +sZk +afE +afE +afE +afE +afE +afE +afE +iqA +iqA +iuM pBz pBz uhn -uhn +hHl pBz aDJ ybn qGY -wKY -pBz +ons +xFf pBz pBz pBz pBz -cHW -cHW +kRb +dPt qqg -pZW -iHY -pdy -pdy -kbg +bXX +axf +eAt +cSS +xdN jAP ksB -cHW +lzJ pBz -cHW -cHW +ahk +kRb cHW pBz -qqG -eaO -xTT -eaO -xTT -xTT -fzc -gyG -xTT -aqx -aqx +aDJ +uhn +pBz +uhn +pBz +pBz +iry +wKY +pBz +vRr +atp xtA skU duO @@ -71297,7 +91952,7 @@ xZk pMZ arR gME -aaY +lZd lZd cCF wVS @@ -71330,45 +91985,48 @@ iuW fWg atl jfF +kjP +kjP +kjP +kjP efR -vnP -myV -vnP -vnP efR oRx oRx oRx +hCs "} (51,1,2) = {" +hCs ecO ecO ecO ecO ecO -wCW +ecO +jJi vLs vLs vLs vLs vLs +jlH exp -exp -exp -pBz -pBz -pBz +lmF +txv +atp pBz +atp pBz pBz sUs pBz ahn -pZW -pdy -iuH +yfF +frE +pSi aid -cHW +lAF pBz pBz exp @@ -71383,69 +92041,69 @@ pBz pBz pBz exp -exp +fZC pBz exp exp -exp +fZC pBz pBz pBz sUs -kRb -ahK -hfX -hfX -hfX -xGV -hfX -hfX -hfX -hfX -rxa -rxa -cHW -cHW +lzJ +lPJ +eeI +afE +vqA +tEb +oLL +hJU +hJU +qWW +iqA +iqA +imz +lzJ pBz pBz uhn -gTc -aDJ -pBz -wKY pBz pBz +sUs +wKY +xFf +xFf pBz pBz pBz -cHW -cHW -cHW -qTH -nai -pdy -pdy -kbg -ksB +lzJ +vQw +kRb +kdz +qSw +qgQ +aVk +xdN +yjw jyi gqh pBz pBz -cHW -cHW -cHW -gTc -xTT -eaO -xTT -eaO -amt -tvB -gyG -gyG -kOw -xTT -ocw +lzJ +uFJ +lzJ +pBz +pBz +uhn +pBz +uhn +pBz +cyh +wKY +wKY +ybn +pBz +sUs xtA xtA xtA @@ -71459,8 +92117,8 @@ xtA gME xtA xtA -lZd -okW +lyJ +xan cCF uYl rtz @@ -71493,16 +92151,19 @@ aez clb jfF efR -vnP -vnP -vnP -vnP +gEL +kjP +kjP +kjP efR oRx oRx oRx +hCs "} (52,1,2) = {" +hCs +ecO hYX rEC rEC @@ -71514,26 +92175,26 @@ qmf ymg bce vLs -aAv -aAv -aAv -pre -pre -pre -pre +jSN +waG +dSh pre +oiP +oiP +oiP +oiP txv -vRr +atp pBz -cHW -mkN -bjW -pdy -dVw +uFJ +ogy +hGJ +sYW +gGv ahW pBz pBz -exp +fZC exp exp pBz @@ -71542,7 +92203,7 @@ pVC agh aDg pBz -exp +fZC exp pBz pBz @@ -71551,63 +92212,63 @@ pBz pBz pBz pBz -pBz +fNv ybn pBz pBz -hCr -nLM -nLM +aOp +xEQ +afE sTX bRJ bRJ sTX -hfX -hfX -rxa -rxa -cHW -cHW -cHW +dwl +sTX +iqA +rNI +tHL +aOp +lzJ pBz pBz pBz uhn pBz -hOt +dZj iqA iqA iqA pBz pBz pBz -cHW -cHW +lzJ +uFJ pZW -pdy -pdy -kbg +dXA +okn +mRq uUF uUF uUF aer aer -aer -aer -cHW +aew +aew +lzJ pBz pBz -xTT -eaO -eaO -xTT -xTT -jNo -tvB -aqx -xTT -kOw -xTT +pBz +hHl +uhn +pBz +pBz +kCV +cyh +vRr +pBz +ybn +pBz gME kFA pMZ @@ -71631,7 +92292,7 @@ duO opM xtA mxU -mnf +mxU mxU mxU mxU @@ -71655,19 +92316,22 @@ sHu stQ jfF efR -vnP -vnP -vnP -vnP -efR +kjP +kjP +kjP +kjP +hYg oRx oRx oRx +hCs "} (53,1,2) = {" +hCs +ecO gcL -uXm -uXm +gJM +gJM gcL bhh uPa @@ -71685,28 +92349,28 @@ jCM jCM pKE eVw -vRr +atp pBz pBz cHW -pZW -pdy -dVw -cHW -cHW +bYv +eaD +wIF +cnJ +lzJ pBz pBz exp exp pBz +ftu +lJP vRr -vRr -vRr -vRr +atp pBz exp exp -exp +fZC pBz pBz pBz @@ -71718,58 +92382,58 @@ ybn ybn aDJ pBz -cHW -cHW -ahG +lDv +afE +ahH rVF ahF -afE -hfX -hfX -afC -cHW -cHW -cHW -cHW -pBz -uhn -pBz -pBz -xXb +ahH +eUW +xwi +idq +bVR +mwr +qZe +ggk +xFf +vWR +xFf +xFf +xFf iqA iqA iqA iqA -pBz -pBz -pBz -pBz -pBz -pZW -pdy -kbg -ksB +quO +xFf +xFf +xFf +xFf +bTC +rLD +ruL +bcm uUF kOe ctH -aex -rcE -aer -aer +aeu +aeu +aew +vsK ybn pBz -vRr -xTT -eaO -xTT -dAw -jNo -jNo -aqx -aqx -qqG -kOw -kOw +atp +pBz +uhn +pBz +vUN +kCV +kCV +gly +atp +aDJ +ybn +ybn gME pMZ pMZ @@ -71788,7 +92452,7 @@ tRB dRu mQj mQj -mQj +pNA mQj mQj odl @@ -71817,19 +92481,22 @@ aal aal jfF efR -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP efR oRx oRx oRx +hCs "} (54,1,2) = {" +hCs +ecO uXm -uXm -uXm +gJM +gJM uXm bhh nVP @@ -71848,26 +92515,26 @@ hfX iIo eVw vRr -vRr +atp pBz cHW mkN -sEd -dVw -cHW +pln +kQc cHW +uFJ pBz sUs exp exp pBz +atp vRr -vRr -vRr +atp pBz pBz exp -exp +fZC pBz qrg ybn @@ -71880,58 +92547,58 @@ pBz pBz pBz cHW -cHW -cHW +jKf +afE ahH rVF rVF -ahE -hfX -hfX -afC -cHW -qqg -cHW -cHW -pBz -uhn -pBz -uhn -pBz +qih +tsC +xwi +rkg +qZe +nbf +dUv +uYf +xFf +fwt +xFf +vWR +xFf iqA iqA iqA iqA -pBz -pBz -pBz -pBz -pBz -mkN -kWZ -ksB -cHW +quO +xFf +xFf +xFf +xFf +boD +iqq +xYW +qoI uUF kOe kOe bjr aeu -rcE +etH aer ybn ybn vRr -aqx -eaO -eaO -dAw -xTT -aqx -aqx -xTT -xTT -ocw -kOw +atp +uhn +uhn +vUN +pBz +gly +atp +pBz +vUV +sUs +ybn gME ibM kfB @@ -71948,10 +92615,10 @@ xxS tRB tRB aaR -uvF -hJF +opf +wrE fbA -aRz +pju hJF odl xGW @@ -71979,19 +92646,22 @@ kah kah jfF efR -efR -vnP -vnP -vnP +uTv +aQg +kjP +kjP efR rsY rsY oRx +hCs "} (55,1,2) = {" +hCs +ecO uXm -uXm -uXm +gJM +gJM uXm bhh nVP @@ -72009,14 +92679,14 @@ hfX hfX iIo eVw -vRr -vRr -pBz -cHW -ahd -pZW -dVw -cHW +atp +atp +pBz +uFJ +eaL +vdv +oIu +aOp lzJ pBz pBz @@ -72026,51 +92696,51 @@ pBz pBz pBz pBz +fZC exp -exp -exp +rbI pBz sUs pBz pBz pBz cHW -cHW +uFJ pBz pBz pBz cHW -cHW -cHW -cHW -cHW +lzJ +iVU +jpn +cnq sTX bRJ bRJ sTX -hfX -hfX +sTX +sTX afC -cHW -cHW -cHW +aOp +kRb +uQv pBz pBz pBz pBz -uhn +hHl pBz iqA iqA -hOt +dZj iqA pBz +atp pBz +vRr pBz pBz -pBz -pBz -pBz +aDJ pBz aer aer @@ -72078,29 +92748,29 @@ jyT iDS cch eKt -aeu +wfI aer aer pBz -vRr -eaO -eaO -xTT +atp +uhn +uhn +pBz hyA -xTT -xTT -xTT -kOw -kOw -xTT -xTT +pBz +pBz +pBz +ybn +ybn +pBz +cqj xtA xtA xtA xtA gME xtA -cCF +kEZ lZd lZd lZd @@ -72111,11 +92781,11 @@ tRB tRB jFe iRa -hJF -hJF -hJF -hJF -odl +opf +opf +aRz +aRz +cpr xGW xGW mxU @@ -72124,7 +92794,7 @@ xGW xGW xGW xGW -xGW +lIb mxU xGW iJN @@ -72143,17 +92813,20 @@ jfF jfF efR efR -vnP -vnP -vnP +kjP +kjP +kjP efR rsY oRx +hCs "} (56,1,2) = {" +hCs +ecO uXm -uXm -uXm +gJM +gJM uXm bhh wPK @@ -72171,50 +92844,50 @@ gab hfX iIo eVw -vRr +atp pBz pBz pBz -cHW -mkN -ksB +hXE +wFX +dvr aic kCV pBz +fZC exp -exp -gTc +pBz exp pBz exp pBz exp -gTc pBz pBz -cHW -cHW -cHW -cHW -lzJ -cHW -cHW pBz cHW cHW -cHW +aOp +iVU lzJ +pqL cHW +pBz +uFJ +kRb cHW -cHW -cHW -cHW -hCr -nLM -nLM +acH +adx +fyQ +fyQ +kiC +pzn +qFW +amF +fyQ kCV -cHW -cHW +lzJ +aAu pBz kCV qrg @@ -72224,15 +92897,15 @@ pBz kCV kCV pBz -pBz +vRr wKY wKY sUs +vRr +ppL +uhn pBz pBz -pBz -pBz -cyh lnV aer uXZ @@ -72246,16 +92919,16 @@ aer vuu pBz uhn -xTT -eaO +pBz +uhn hyA -ppG -kOw -kOw -xTT -xTT -qqG -xTT +cRQ +ybn +ybn +vUV +pBz +aDJ +pBz xtA eGB kFf @@ -72274,7 +92947,7 @@ tRB aaS aaK azK -aaK +jyq aaK aaK odl @@ -72288,7 +92961,7 @@ xGW mxU mxU xGW -xGW +lIb htM jfF jfF @@ -72303,22 +92976,25 @@ chP jjR huJ jfF -efR +wrI rsY efR -vnP -vnP +hyB +kjP uzk rsY oRx +hCs "} (57,1,2) = {" +hCs +ecO aAk fFz fFz dIs ecO -wPK +oBV ewf vLs vLs @@ -72329,7 +93005,7 @@ xDg mhv vLs vLs -vLs +iec hfX iIo eVw @@ -72346,34 +93022,34 @@ pBz pBz exp exp -exp +fZC pBz -exp +fZC exp pBz pBz pBz -cHW +ahk qqg -cHW -qTH +oTK +jTV yec yec -rIb -cHW -cHW -cHW -cHW -cHW -cHW -cHW -cHW -cHW -cHW -cHW +cTb +aOp +lzJ +kRb cHW cHW cHW +uFJ +kRb +uFJ +ieI +qZe +kRb +fwz +aAu kCV pBz pBz @@ -72386,16 +93062,16 @@ pBz uhn pBz ybn -pBz +uhn aDJ -wKY +cRQ pBz -kCV -kCV cyh cyh cyh -pBz +vRr +uhn +vRr nUI aev aev @@ -72405,19 +93081,19 @@ aju aev uqk nUI -pBz -pBz +vRr uhn uhn -aqx +hHl +vRr pZo -gyG -xTT -kOw -kOw -kOw -xTT -xTT +wKY +pBz +ybn +ybn +ybn +pBz +pBz xtA hmJ ykc @@ -72449,11 +93125,11 @@ mxU xGW xGW xGW -mnf mxU mxU -kCi mxU +kCi +tkJ fxj mxU fxj @@ -72473,8 +93149,11 @@ efR rsY oRx oRx +hCs "} (58,1,2) = {" +hCs +ecO ecO ecO ecO @@ -72495,10 +93174,10 @@ vLs hfX ifP hnK -cHW -pBz +lzJ pBz pBz +fNv pBz wKY wKY @@ -72511,51 +93190,51 @@ exp exp exp pBz -sUs pBz +fNv ybn cHW cHW -qTH +pVh yec -nai -pdy -pdy -iuH +vKj +xRx +nzm +sxy rIb cHW -cHW -cHW +aOp +lzJ kCV kCV cHW +ahB cHW -cHW -cHW -cHW -cHW -lzJ -cHW +iKV +oBu +ahB +acH +aOp pBz pBz pBz -ybn pBz +fNv sUs pBz -uhn +hHl pBz uhn pBz -pBz +vRr sUs iry rfz pBz kCV -vRr +kLO sdn -vRr +fLe pBz ybn aes @@ -72567,8 +93246,8 @@ cau cau sze aes -vRr uhn +pBz uhn uhn wKY @@ -72578,7 +93257,7 @@ pBz pBz pBz pBz -amt +gTc wlK wlK wlK @@ -72617,8 +93296,8 @@ mxU kCi pFr fxj -fxj mxU +smA kah jjR eXE @@ -72635,8 +93314,11 @@ uzk efR oRx oRx +hCs "} (59,1,2) = {" +hCs +ecO ecO ecO ecO @@ -72657,33 +93339,33 @@ adX hfX iIo hnK -cHW +kRb cHW pBz pBz -cHW +lzJ kCV qGY -cHW -cHW -cHW +oGX +fOm +lzJ pBz +fZC exp exp -exp -exp +fZC pBz pBz ybn -ybn -cHW -qTH -nai -cZp -pdy -pdy -pdy -pdy +pBz +aOp +rLe +opL +fdH +wai +iEz +gWX +ssJ dVw cHW lzJ @@ -72692,13 +93374,13 @@ kCV pBz pBz qTH -yec -yec -yec -rIb -cHW -cHW +mII +jMx +jXa +ppg cHW +uFJ +fwz pBz sUs ybn @@ -72708,16 +93390,16 @@ pBz afP pBz pBz -pBz +vRr uhn pBz iry pBz ybn ybn -vRr -vRr -vRr +oYJ +cRQ +eJr ybn ybn aer @@ -72730,19 +93412,19 @@ lIV cbZ aer pBz -uhn +hHl uhn qrg cyh kCV -cHW -cHW +fLe +dPt pBz aDJ pBz wlK wlK -uEY +qRZ cUd obS wlK @@ -72790,21 +93472,24 @@ mXl fBe jfF oRx -efR +jSV efR dqS -efR +uxA efR oRx oRx +hCs "} (60,1,2) = {" +hCs ecO ecO ecO ecO ecO -ewf +ecO +wYm wPK rCP nqa @@ -72819,16 +93504,16 @@ adX hfX iIo hnK -cHW -lzJ -cHW +kRb +acH cHW cHW +aOp ahn -cHW +aOp ahW -cHW -cHW +kRb +kRb cHW pBz pBz @@ -72840,28 +93525,28 @@ pBz pBz cHW pZW -pdy -pdy -pdy -pdy -pdy -pdy -dVw -cHW +vTS +nBP +qpw +lIf +cCu +nPs +vVI cHW +vQw pBz pBz sUs pBz -pZW -pdy -pdy -pdy -iuH -yec +iiL +rIO +mEP +sYM +tBj +mZr rIb -cHW -cHW +kRb +fwz pBz ybn ybn @@ -72869,26 +93554,26 @@ ybn pBz pBz pBz -uhn +hHl pBz -uhn +hHl pBz iry qrg pBz ybn -vRr -kCV -vRr +atp +cyh +atp pBz ybn aer aer -aew +aer wqg lho kwI -aew +aer aer aer pBz @@ -72896,8 +93581,8 @@ uhn ybn cyh kCV -cHW -cHW +pBz +lzJ cHW cHW pBz @@ -72952,15 +93637,18 @@ bEV jfF jfF efR -vnP -vnP -vnP -vnP +pMY +kjP +kjP +kjP efR oRx oRx +hCs "} (61,1,2) = {" +hCs +ecO hYX rEC rEC @@ -72977,58 +93665,58 @@ jOc uCe adX adX -adX +xmt pgF iIo hnK +kRb cHW -cHW -qTH -lrG -yec +kdz +hCa +mZr yec rIb -cHW -cHW -cHW -cHW -cHW +sIs +vQw +kRb +kRb +lzJ pBz exp pBz yeG pBz pBz -cHW +iVU lzJ -pZW -pdy -pdy -pdy -pdy -pdy -pdy -vrz -cHW -pBz -pBz -pBz -pBz -qTH -jWo -pdy -pdy -pdy -pdy -iHY +xSa +gJj +jmI +tKj +xWZ +tKj +rJS +iJJ +uFJ +pBz +pBz +pBz +pBz +pyV +hWO +gtr +bmN +geo +ocE +pDc dVw qqg cHW pBz -pBz +vUV aDJ pBz -pBz +ppL ybn pBz uhn @@ -73038,19 +93726,19 @@ uhn pBz pBz afI -cHW +lzJ cyh cyh cyh cyh ybn -ybn -pBz -aew -aew -aew -aew -aew +fpD +xFf +aer +aer +aer +aer +aer pBz pBz pBz @@ -73058,11 +93746,11 @@ uhn vUN kCV kCV -qqg +pBz cHW lzJ -cHW -cHW +aOp +lzJ pBz wlK kxb @@ -73091,13 +93779,13 @@ yiG joF bfq mxU -fKL +sOt oil aHY xGW xGW xGW -umx +fQL yks aef kjH @@ -73113,19 +93801,22 @@ chP vdt jfF efR -vnP -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP +kjP efR oRx oRx +hCs "} (62,1,2) = {" +hCs +ecO gcL -uXm -uXm +gJM +gJM gcL bhh wPK @@ -73143,71 +93834,71 @@ gab hfX iIo hnK -cHW -cHW -yab -pdy -pdy -pdy -tBj +kRb +ehH +lwv +xPJ +quN +xAf +fOT yec rIb -cHW +aOp ahX -cHW +kRb cHW pBz exp yeG exp pBz +aOp cHW -cHW -pZW -pdy -pdy -pdy -pdy -pdy -kbg -ksB -cHW +gAl +tdX +uQB +tra +tKj +euf +xdN +hMj +iVU pBz kCV kCV ify kXg wwh -pdy -pdy -pdy -pdy -pdy -dVw -cHW -cHW -cHW +qvX +wJN +cYv +cCu +szu +hnw +uFJ +kRb +ahk pBz kCV pBz pBz pBz -pBz +jyn pBz uhn uhn pBz -uhn +hHl pBz -cHW -cHW +uQv +aOp cyh -cHW -cHW +aOp +uFJ kCV kCV -pBz -pBz +xFf +xFf quT quT quT @@ -73215,17 +93906,17 @@ quT quT pBz pBz -uhn +hHl uhn vUN ybn +lzJ cHW +aOp cHW cHW cHW -cHW -cHW -cHW +ahk wlK qta uEY @@ -73253,7 +93944,7 @@ wlK wlK wlK pFr -fKL +sOt oil aHY xGW @@ -73274,20 +93965,23 @@ eLr chP ceP jfF -efR -vnP -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP +kjP +kjP efR oRx oRx +hCs "} (63,1,2) = {" +hCs +ecO uXm -uXm -uXm +gJM +gJM uXm bhh urT @@ -73307,55 +94001,55 @@ iIo hnK cHW aii -nai -pdy -pdy -pdy -pdy -pdy -iuH +pzX +mlo +mZT +qHP +mlo +cNb +rly yec aia -cHW +pqL lzJ cHW exp exp exp cHW -cHW -cHW -mkN +kRb +aOp +uyC lqt -pdy -pdy -pdy -pdy +lUi +prs +xIp +ljg dVw cHW -cHW +rUO pBz kCV kCV -kCV +qKR rse ixr -pdy -pdy -pdy -pdy -pdy -iuH +smS +ryk +bBT +aSd +blW +rwl rIb -lzJ -cHW +acH +aOp kCV kCV -cHW -cHW -cHW -gTc -pBz +dPt +vQw +lzJ +jNl +mcn pBz uhn uhn @@ -73363,31 +94057,31 @@ uhn pBz cHW lzJ -qTH -yec -yec +hGT +wxE +lhd rIb kCV -kCV -pBz -vRr +uxy +xFf +atp quT pbj quT -vRr +atp pBz pBz uhn pBz iry ybn -cHW -cHW -cHW +vQw +lzJ +jLS qTH +gxw yec -yec -rIb +iVF wlK etT olw @@ -73415,7 +94109,7 @@ xvx hLC wlK mxU -fKL +sOt oil aHY xGW @@ -73436,20 +94130,23 @@ eLr rSm cyJ jfF -efR -vnP -vnP -vnP -vnP -efR +kjP +kjP +kjP +kjP +kjP +fSn efR oRx oRx +hCs "} (64,1,2) = {" +hCs +ecO uXm -uXm -uXm +gJM +gJM uXm bhh pZy @@ -73467,17 +94164,17 @@ hfX hfX iIo hnK -cHW -pZW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -iuH +aOp +gOO +tso +nEx +xzv +opU +jEy +jQi +gZl +pdd +dXQ rIb rTB sQh @@ -73485,55 +94182,55 @@ exp exp exp sQh -rTB -cHW -cHW -pZW -pdy -pdy -pdy -pdy +vOM +kRb +thc +eTK +edr +mHi +ibt +jxI dVw -cHW +aOp pBz pBz qkY cyh -kCV +qKR rse -ixr -pdy -pdy -pdy -pdy -pdy -pdy -dVw -cHW +uUe +lLx +jcP +gns +tKj +fZd +duS +hUQ cHW kRb +kRb kCV kCV lzJ -cHW +hzs qqg pBz -jpn +jKf hfX hfX hfX hnK -cHW -qTH -nai -pdy -pdy +bhI +kdz +dDt +eqa +uto dVw cHW -kCV -aDJ -pBz +uxy +bni pBz +ybn pBz pBz pBz @@ -73545,11 +94242,11 @@ iry ybn lzJ cHW -qTH -nai -pdy -pdy -vrz +bHK +sKx +lJh +xRx +iJJ wlK rIN blc @@ -73565,7 +94262,7 @@ wos lDM oei wlK -aaO +bRm aaM lAV aaQ @@ -73598,20 +94295,23 @@ jmZ chP obb jfF -efR -vnP -vnP -vnP +mga +kjP +kjP +kjP efR oRx oRx oRx oRx +hCs "} (65,1,2) = {" +hCs +ecO uXm -uXm -uXm +gJM +gJM uXm bhh ewf @@ -73631,86 +94331,86 @@ pKE hnK cHW aij -lqt -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -iuH +bYJ +gUv +eqF +bMR +rIC +mjk +aTI +kRB +yfW +mVg rIb -jpn +sZZ hfX hfX hfX hnK -qTH -yec -yec -nai -pdy -pdy -pdy -kbg +kdz +iVX +dMN +vKj +jzp +tKj +qKE +lRg ksB pBz pBz wKY pBz pBz -kCV +qKR rse -ixr -pdy -pdy -pdy -pdy -pdy -pdy -iuH +kBg +oES +bBT +bBT +azw +tKj +blW +cYe rIb -cHW +uFJ kRb kCV -cHW +rUO qTH +lhd yec -yec -rIb +lGJ jpn hfX hfX hfX hnK -qTH -jWo -pdy -pdy -kbg +kkQ +vKj +dRh +raA +jLv jxo cHW -kCV +uxy +xFf +vUV pBz pBz -gTc -pBz pBz -uhn +hHl uhn pBz pBz ybn iry -cHW +lzJ cHW qTH -jWo -pdy -pdy -pdy +csE +lwO +weB +gkl jov wlK wlK @@ -73739,13 +94439,13 @@ fFo vOE wlK fxj -fKL +sOt oil aHY mxU mxU xGW -umx +aAv yks chP kjH @@ -73760,17 +94460,20 @@ kjH chP wXa jfF -efR -vnP -vnP -vnP +vUR +mga +kjP +kjP efR oRx oRx oRx oRx +hCs "} (66,1,2) = {" +hCs +ecO aAk fFz fFz @@ -73782,40 +94485,40 @@ wqY wLY ilp vLs +lfx waG -waG -waG +dSh +fDZ +fmK nLM +nqT nLM -nLM -nLM -nLM -okx +emY gDr -cHW +vHZ mkN kWZ aig kWZ vwh -lqt -pdy -pdy -pdy -pdy -tnp -lEH +fvN +uVf +tKj +cCu +nLu +bYH +kek hfX hfX hfX iuy -nai -pdy -pdy -pdy -pdy -pdy -kbg +pBo +uZE +uCI +fVx +tKj +euf +hDn ksB pBz kCV @@ -73826,53 +94529,53 @@ pBz rHX egB gZN -pdy -pdy -pdy -pdy -pdy -pdy -pdy -tBj +wqU +wOH +xXT +usi +xIp +crU +fWu +iXr rIb -kRb -kRb -qTH -nai -pdy -pdy -tnp +aAu +cHW +iEv +tWF +pae +iyj +fHf lEH hfX hfX hfX wzb -nai -pdy -pdy -pdy -dVw -cHW -cHW -kCV -pBz -pBz +tBg +lsA +cCu +fNB +mzv +cHW +vQw +uxy +xFf +ybn pBz uhn pBz uhn pBz -gTc -qkY +pBz +bnS cyh cyh -cHW -qTH -nai -pdy -pdy -pdy -pdy +aOp +tyq +xRN +psO +tKj +cCu +pVE gTN bfq jpT @@ -73901,11 +94604,11 @@ wlK wlK wlK fxj -fKL +sOt oil aHY mxU -xGW +lIb mxU aaF xjb @@ -73923,16 +94626,19 @@ kjH stu jfF jfF -efR -vnP +kjP +kjP efR oRx oRx oRx oRx oRx +hCs "} (67,1,2) = {" +hCs +ecO ecO ecO ecO @@ -73944,97 +94650,97 @@ vLs vLs vLs vLs +okx cHW -cHW -cHW +hCr +pIZ +aAu +qWE lzJ -cHW -cHW -cHW -kCV -kCV -kCV -kCV -aih -cHW -cHW -cHW -cHW -mkN -lqt -pdy -pdy -pdy -pdy +pBz +pBz +pBz +pBz +ahW +lzJ +aOp +cHW +aOp +rAq +ohJ +cAj +xUZ +tKj +baQ iTY hfX hfX hfX vTv -pdy -pdy -pdy -pdy -pdy -pdy +uCI +jUW +tKj +xUZ +jen +wuj dVw cHW pBz pBz kCV cyh -pBz +doa sUs pBz -cHW -pZW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -dVw -kRb -qTH -nai -pdy -pdy -pdy -pdy -iTY +cpp +qTn +mub +ryk +nFc +xIp +oPz +wHb +bjL +qnM +wcm +iGA +orE +vKj +csq +qJg +pdy +nmQ +lXW hfX hfX hfX -vTv -pdy -pdy -pdy -pdy -dVw -cHW -kCV +cAC +prs +tKj +xIp +apk +bfR +gcc kCV -pBz +uxy +xFf pBz uhn uhn pBz pBz -vRr +atp cyh cyh kCV pBz pBz -pZW -pdy -pdy -pdy -pdy -pdy +xIS +iQR +aSd +dud +jaq +irC gTN bfq gkr @@ -74063,7 +94769,7 @@ xvx fYr wlK fxj -fKL +sOt oil aHY xGW @@ -74086,59 +94792,62 @@ chP jgg jfF efR -vnP +kjP efR oRx oRx oRx oRx oRx +hCs "} (68,1,2) = {" +hCs kCV kCV kCV kCV kCV kCV -pBz +kCV +esx pBz pBz pBz rTB cHW +kRb +kRb cHW -cHW -cHW -gDr +dyQ pBz +pBz +ybn kCV kCV kCV kCV kCV +lzJ +rUO kCV kCV -cHW -cHW -kCV -kCV -pZW -pdy -pdy -pdy -pdy -iTY +kiT +anu +xIp +mID +tKj +nhb hfX hfX hfX -vTv -pdy -pdy -pdy -pdy -pdy -pdy +nYG +xIp +tra +dud +igU +cCu +veP dVw cHW pBz @@ -74149,38 +94858,38 @@ cyh cyh pBz cHW -aiD -pdy -pdy -pdy -pdy -pdy -kbg -lqt -pdy -iuH -lrG -nai -pdy -pdy -pdy -pdy +psz +wRQ +dYb +uMW +cCu +eMx kbg +mCX +vJB +dPx +hCa +vKj +efI +flh +ukk +cLs +xDC aLY hfX hfX hfX rnD -lqt -pdy -pdy -mWX -ksB +dzz +uxO +gwx +gCY +hMj kCV kCV -pBz -pBz -uhn +xFf +xFf +hHl uhn pBz pBz @@ -74191,11 +94900,11 @@ cyh kCV pBz pBz -pZW -pdy -pdy -pdy -pdy +yab +kAy +dDJ +lNB +bxD mWX ahY wlK @@ -74231,14 +94940,14 @@ aHY xGW xGW mxU -mnf +byl pFr mxU kCi mxU fxj -pFr mxU +smA kah xnE mXl @@ -74248,33 +94957,36 @@ jeX wAc jfF efR -vnP -vnP +kjP +efR oRx oRx oRx oRx oRx +hCs "} (69,1,2) = {" +hCs kCV kCV kCV kCV kCV kCV -sUs +kCV +kqZ pBz pBz +lzJ cHW -cHW +kRb +lzJ +kRb cHW pBz -cHW -cHW pBz -ybn -kCV +pBz kCV kCV kCV @@ -74285,88 +94997,88 @@ kCV kCV kCV rCO -pZW -pdy -pdy -pdy -pdy -iTY +kyD +ifo +opc +gfc +tES +gko hfX hfX hfX -vTv -pdy -pdy -pdy -pdy -pdy -pdy -dVw -cHW -cHW +khe +qeV +lmj +tij +wrW +aSd +aeC +eoP +uFJ +lzJ pBz pBz kCV kCV kCV -lzJ -cHW +rUO +aOp pZW -pdy -pdy -pdy -pdy -pdy -dVw -mkN -lqt -pdy -pdy -pdy -pdy -pdy -pdy -mWX +qbK +sih +whD +jUi +str +jzD +cpp +eHw +gvQ +sCU +lLx +tKj +eZy +rFi +cXf ksB -jpn +jKf hfX hfX hfX hnK -mkN +xME kWZ kWZ ksB cyh cyh pBz -pBz -pBz +xFf +xFf uhn pBz pBz -vRr +atp pBz pBz kCV kCV pBz pBz -cHW -aiD -pdy -pdy -pdy -kbg +lzJ +psz +dSB +epq +dmB +kXF ksB cHW wlK gnQ -sbD +tyX xZK mMe wlK -uEk +dJY pKC pKC uMX @@ -74399,7 +95111,7 @@ mxU kCi fxj fxj -mxU +pFr mxU kah mXl @@ -74410,15 +95122,18 @@ uFn hPA jfF efR -vnP -vnP +kjP +kjP efR oRx oRx oRx oRx +hCs "} (70,1,2) = {" +hCs +bzC kCV kCV kCV @@ -74427,13 +95142,13 @@ cyh cyh ybn pBz +lzJ +aOp +kRb +kRb +kRb cHW -cHW -cHW -pBz -cHW -cHW -cHW +lzJ aDJ ybn kCV @@ -74447,63 +95162,63 @@ kCV kCV cyh cHW -mkN +uTo sEd -pdy -pdy +mQm +vnc kbg -aLY +sry hfX hfX hfX pOP -bjW -pdy -pdy -pdy -pdy -pdy -iuH +pmQ +eUu +lNB +cAj +bza +jxg +wDy rIb -cHW -cHW -pBz -pBz -kCV -kCV -cHW -cHW -mkN -sEd -pdy -pdy -pdy -kbg -ksB -kRb -mkN -lqt -pdy -pdy -pdy -pdy -kbg -ksB +aOp +dAU pBz -jpn +pBz +kCV +kCV +iVU +cHW +mkN +sEd +cpE +mFc +qnR +vWv +ycb +aOp +cpp +wwn +bcl +tKj +dHi +cCu +geW +hMj +pBz +wnS hfX hfX hfX -hnK -lzJ -cHW +tlM +rUO +dPt kCV kCV cyh wKY wKY -qGY -uhn +trA +vWR uhn pBz qrg @@ -74513,12 +95228,12 @@ cHW kCV kCV pBz -cHW +lzJ cHW mkN -lqt -pdy -pdy +gdS +esT +nYy dVw lzJ cHW @@ -74528,7 +95243,7 @@ fHS kNV xZK wlK -uEk +uyu pKC pKC uMX @@ -74549,12 +95264,12 @@ wlK wlK wlK fzo -wfb +uvF mxU xGW xGW mxU -xGW +lIb mxU mxU htM @@ -74571,85 +95286,88 @@ chP chP qiJ jfF +uxA efR -vnP -vnP -vnP +kjP +kjP efR efR oRx oRx +hCs "} (71,1,2) = {" +hCs +bzC kCV kCV kCV kCV cyh -wKY +jZR aDJ pBz -gDr -cHW -cHW -cHW -cHW +bjc +mFQ +kRb +lzJ cHW +aOp pBz -pBz +fNv wKY kCV kCV +kCV +kCV vRr -vRr -vRr -vRr +atp cyh kCV cyh wKY ahn -cHW +sVr aib -kWZ -kWZ -ksB +mWM +tKv +hMj jpn hfX hfX hfX hnK -mkN -kWZ -lqt -pdy -pdy -pdy -pdy -dVw +orp +fvM +bXf +fbd +guB +tgW +tPS +pvH cHW qqg -cHW +uFJ pBz pBz aDJ pBz -cHW -cHW +dPt +uZx mkN -kWZ -kWZ +bOX +xgI vwh ksB lzJ -cHW -qTH -nai -pdy -pdy -pdy -pdy -dVw +uFJ +jTV +vKj +lLx +xIp +njK +fIw +pfh pBz pBz pBz @@ -74664,8 +95382,8 @@ qrg aDJ pBz pBz -wKY -uhn +ons +vWR pBz pBz kCV @@ -74676,14 +95394,14 @@ pBz pBz cHW cHW -cHW -cHW +aOp +lzJ mkN -kWZ +jAP kWZ ksB cHW -cHW +uFJ pBz tkC hpz @@ -74717,7 +95435,7 @@ xGW xGW mxU xGW -xGW +lIb mxU uSe jfF @@ -74734,21 +95452,24 @@ wsG jfF jfF efR -vnP -vnP +kjP +kjP oRx -vnP +nXB efR oRx oRx +hCs "} (72,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC kCV kCV cyh -ybn +ucY pBz pBz pBz @@ -74762,19 +95483,19 @@ ybn cyh kCV kCV +kCV vRr -vRr -vRr +atp cRQ -vRr -vRr +atp +atp +vUV pBz pBz -pBz -cHW -cHW cHW cHW +aOp +uFJ rTB sQh exp @@ -74783,34 +95504,34 @@ exp sQh rTB cHW -mkN +mWW kWZ -kWZ -sEd -pdy +sxX +vqp +mlo dVw cHW -cHW +aOp cHW cHW pBz pBz gTc pBz -cHW -cHW -cHW -cHW -cHW +vQw +dXi +ggk +oBu +rUO pBz pBz -cHW +lzJ yab -pdy -pdy -pdy -pdy -kbg +kpM +hTl +nre +ngR +tuf ksB pBz sUs @@ -74826,12 +95547,12 @@ pBz pBz pBz pBz -uhn -wKY +vWR +ons wKY cyh kCV -cHW +rUO cHW cHW cHW @@ -74840,13 +95561,13 @@ lzJ cHW pBz pBz +lzJ cHW +pqL +ahk cHW -cHW -cHW -cHW -pBz pBz +ybn tkC dtH hVI @@ -74874,14 +95595,14 @@ wlK txk cWe mxU -xGW +lIb xGW xGW xGW xGW mxU mxU -xGW +lIb lLV cMb cMb @@ -74895,26 +95616,29 @@ kah kah jfF efR -vnP -vnP -vnP -vnP +efR +kjP +kjP +xAU myV efR oRx oRx +hCs "} (73,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC kCV kCV cyh cyh -pBz +agu aDJ pBz -pBz +vQw pBz cHW cHW @@ -74925,7 +95649,7 @@ cyh kCV cyh cyh -cRQ +hrh cyh cyh pBz @@ -74935,41 +95659,41 @@ aDJ pBz pBz pBz -cHW +iVU lzJ -ahX -cHW -exp +tFc +tIe exp exp exp +fZC cHW lzJ +pAP +aOp cHW -cHW -cHW -pZW -pdy -iuH -rIb +hEf +uqM +uVT +ppg cHW pBz -cHW +dPt cHW pBz pBz pBz pBz -cHW -cHW -cHW +lzJ +qZe +qZe cHW pBz kCV kCV mkN lqt -pdy +tHW kbg kWZ ksB @@ -74988,27 +95712,27 @@ pBz uhn pBz uhn -uhn -pBz +fwt +xFf wKY cyh +vKw cHW -cHW -qTH -yec -yec -yec +xRK +gwg +hBn +lio rIb -cHW +lzJ pBz pBz pBz pBz -cHW -cHW +thc +lzJ pBz -ybn pBz +vUV wlK wlK tkC @@ -75056,18 +95780,21 @@ cMb aan aam jfF -efR -vnP -vnP -vnP -vnP -vnP +uxA +kjP +tKK +kjP +kjP +hyB efR oRx oRx +hCs "} (74,1,2) = {" -kCV +hCs +bzC +bzC kCV kCV kCV @@ -75075,7 +95802,7 @@ cyh cyh cyh pBz -pBz +tpr pBz pBz pBz @@ -75089,7 +95816,7 @@ cyh kCV pBz ahc -pBz +vUV pBz ybn ybn @@ -75098,78 +95825,78 @@ pBz pBz rEe pBz -cHW -cHW +ahk +aOp ahW exp exp -exp -exp +fZC cHW cHW -cHW -cHW -cHW -mkN -lqt -pdy -iuH +kRb +kRb +lzJ +ahk +qCO +ahT +gXq +odC rIb pBz pBz -cHW +aOp cHW pBz pBz pBz pBz -cHW -cHW -cHW +fuq +qZe +lzJ pBz cyh kCV pBz mkN -kWZ +jAP ksB -cHW +lzJ kCV kCV kCV kCV kCV pBz -uhn +hHl pBz -uhn +hHl pBz pBz wKY uhn -uhn +hHl uhn pBz +xFf +xFf pBz -pBz -pBz -cHW -cHW -qTH -nai -pdy -pdy -pdy -dVw cHW +aOp +rme +pqH +rpb +dGJ +rLR +arx +rUO pBz pBz pBz pBz -cHW -cHW +aOp +dna pBz -ybn +sUs ybn ybn pBz @@ -75195,7 +95922,7 @@ mxU mxU mxU mxU -wfb +uvF mxU mxU xGW @@ -75211,7 +95938,7 @@ fIA oqd eTn sHu -wNU +fgB adm nnI cMb @@ -75219,17 +95946,20 @@ sHu pEy jfF efR -vnP -vnP +kjP +mqy oRx -vnP -vnP +kjP +kjP efR oRx oRx +hCs "} (75,1,2) = {" -kCV +hCs +bzC +bzC kCV kCV kCV @@ -75246,10 +95976,10 @@ iry iry mKr kCV +lzJ cHW -cHW -ahn -cHW +elQ +lzJ pBz pBz pBz @@ -75267,26 +95997,26 @@ exp yeG exp exp -cHW -cHW -cHW -cHW +uFJ +aOp +kRb +kRb lzJ cHW pZW -pdy -pdy -dVw -cHW +iAf +mlo +aWK +uFJ pBz pBz -cHW +pAP cHW pBz sUs pBz -cHW -cHW +bKe +bAd wKY gDs rfz @@ -75311,32 +96041,32 @@ pBz pBz uhn pBz -gTc -aDJ pBz +bni +xFf pBz lzJ -qTH -nai -pdy -pdy -pdy -pdy -dVw -cHW +hGT +uPS +aFb +ipt +bJC +gCt +bwc cHW +aOp pBz pBz +lzJ cHW -cHW -cHW -pBz +uFJ pBz pBz pBz pBz +sUs pBz -cHW +kgQ glX gIW oxw @@ -75354,12 +96084,12 @@ oxw wBn prf uIO -fSF +lBo htM lQG mxU mxU -xGW +lIb xGW xGW xGW @@ -75380,19 +96110,22 @@ fWg fIA xFI jfF -efR -vnP -vnP -vnP -vnP +kjP +kjP +kjP +fbx +kjP efR oRx oRx oRx +hCs "} (76,1,2) = {" -kCV -kCV +hCs +bzC +bzC +bzC kCV kCV kCV @@ -75407,9 +96140,9 @@ pBz pBz pBz qrg -ahh +rUO cHW -ahk +ahj cHW ahl kCV @@ -75420,7 +96153,7 @@ pBz pBz ybn pBz -pBz +xjt pBz pBz pBz @@ -75428,27 +96161,27 @@ pBz exp yeG exp -exp +fZC pBz -hmi -mBr +uFJ mBr mBr mBr -jtC +mQz +kNE voV -pdy -tnp +wvH +dRf yec yec rIb lzJ -cHW +aOp pBz pBz pBz -pBz -wKY +xFf +ons qkY pBz ybn @@ -75469,37 +96202,37 @@ uhn pBz uhn pBz +hHl uhn -uhn -pBz -pBz -iqA pBz -cHW -iqA -cHW +xFf +jZi +xFf +ggk +jZi +ggk pZW -iHY -pdy -pdy -pdy -pdy +hjY +rmw +oTO +imF +saH dVw cHW -cHW +lzJ pBz sUs +aOp cHW cHW -cHW -cHW +lzJ pBz pBz +lzJ cHW cHW -cHW -qqg -jpn +hnk +ahK iqB oxw oxw @@ -75509,17 +96242,17 @@ abk abk bfq bfq -wlK +rAL oxw oxw oxw tkH prf fSF -fSF -fSF +wHh +lBo mxU -xGW +lIb xGW xGW xGW @@ -75527,7 +96260,7 @@ xGW mxU fxj mxU -xGW +lIb xGW xGW lLV @@ -75542,20 +96275,23 @@ fWg cMb cGL jfF -efR -vnP -vnP -vnP +kjP +kjP +kjP +kjP efR efR oRx oRx oRx +hCs "} (77,1,2) = {" -kCV -kCV -kCV +hCs +bzC +bzC +bzC +bzC kCV kCV kCV @@ -75570,17 +96306,17 @@ pBz ahc cHW cHW +aOp +pVo +hnk cHW -cHW -qqg -cHW -cHW -cHW +kRb +lzJ ahc pBz pBz kCV -ybn +fNv ybn pBz pBz @@ -75592,76 +96328,76 @@ exp exp pBz pBz -jpn -hfX -hfX -hfX -hfX -hfX -euL -pdy -pdy -pdy -pdy +cHW +vzv +vzv +vzv +vzv +lib +keu +wey +bii +iIq +rLf hnw cHW pBz pBz -pBz -pBz -wKY -wKY -pBz -pBz -pBz -pBz -pBz -ybn +xFf +aLI +hOt +hOt +nbl +fkV +fkV +fkV +fkV +aLI wKY wKY pBz pBz pBz -gTc +hDP wKY wKY wKY uhn -uhn +hHl pBz uhn pBz pBz pBz pBz +jZi iqA iqA iqA iqA -iqA -iqA -mkN +jZi +cpp lqt -pdy -pdy -pdy -kbg -ksB -cHW +pou +jCe +gDo +bQB +pNn +aOp aDJ pBz pBz qTH -yec -yec +mxK +mZr rIb +aOp cHW -cHW -cHW -cHW -cHW -cHW -jpn +uFJ +kRb +kRb +aOp +ahK iqB oxw oxw @@ -75676,7 +96412,7 @@ oxw oxw oxw yks -lnB +qlT xGW xGW xGW @@ -75691,7 +96427,7 @@ mxU lQG mxU mxU -iJN +iLt jfF skI jmZ @@ -75704,45 +96440,48 @@ luG eLr ihq jfF -efR -vnP -vnP +kjP +kjP +hyB efR oRx oRx oRx oRx oRx +hCs "} (78,1,2) = {" +hCs +bzC bzC bzC kCV kCV kCV kCV -pBz -pBz +esx +vUV ybn pBz sUs pBz ahn -ahh +rUO cHW -qTH +bjC yec yec rIb cHW -cHW +uFJ ahi -cHW kRb +vRr pBz pBz ybn -ybn +pBz pBz pBz pBz @@ -75753,77 +96492,77 @@ exp exp exp cHW -cHW -jpn +hPf +tlP gbt -hfX -hfX -hfX -hfX -euL -pdy -pdy -pdy -pdy -iuH -yec +fQn +fQn +hMH +gVs +xnZ +grj +sUw +jzp +lGf +nnM +xxa rIb pBz -pBz -pBz -pBz -pBz -nbl +aTq +aTq +aTq +fkV +eqo cUa acV pVD -aac -gTc -pBz -pBz -pBz -pBz -pBz -pBz -aDJ -wKY -wKY -uhn -pBz -uhn -uhn -pBz -gTc -pBz -pBz -cHW +fkV +fkV +xFf +xFf +xFf +xFf +xFf +tEg +bni +ons +ons +vWR +xFf +vWR +fwt +xFf +xFf +pUh +xFf +bAd iqA iqA iqA iqA -cHW +bKe cHW mkN -lqt -pdy -kbg -ksB -cHW +bij +spM +mWX +tVC cHW +lzJ pBz ybn pBz -pZW -cZp -pdy -iuH +ewF +nNu +pFZ +tJH rIb cHW -cHW -lzJ -cHW -cHW -jpn +kRb +acH +kRb +ahk +ahK iqB oxw oxw @@ -75838,7 +96577,7 @@ oxw oxw oxw yks -lnB +uzb xGW xGW xGW @@ -75866,125 +96605,128 @@ jfF jfF jfF jfF -efR -vnP -vnP +kjP +kjP +kjP efR oRx oRx oRx oRx oRx +hCs "} (79,1,2) = {" +hCs +bzC bzC bzC bzC kCV kCV kCV -pBz +esx pBz aDJ pBz pBz -cHW -ahu +rUO +uFJ aht -yec -jWo -pdy -pdy +dhL +vKj +uhf +fKB ahp rIb -gDr -cHW +oCR +aOp ahd kRb -vRr +atp cRQ kCV pBz pBz pBz -pBz +cqj vUN pBz -exp +fZC exp exp exp cHW -cHW -jpn -ahL -ahL -ahL -hfX -hfX -euL -pdy +yaR +iqA +iqA +iqA +aXZ +uFF +gVs +nAV +omb sQk +jXK ixp -ixp -ixp +rQI wyL -dVw -cHW -pBz +vBJ +ahk aTq aTq aTq -aac +alS +wDW gXF -dIS +hHu afD -aac -aac -pBz -ybn -pBz -pBz -pBz -pBz -pBz -wKY -pBz -pBz -uhn -uhn -pBz -pBz -sUs -pBz -cHW -cHW +sgn +fkV +vYW +fpD +xFf +xFf +xFf +xFf +xFf +ons +xFf +xFf +vWR +fwt +xFf +xFf +xFf +xFf +bAd +cEm iqA iqA iqA iqA -cHW -cHW +bAd +aOp cHW mkN kWZ ksB cHW -cHW +xDj pBz ybn pBz -cHW +dPt pZW -pdy -pdy -pdy +oPi +eca +kCs dVw +nCC cHW -cHW -cHW -cHW -cHW +kRb +kRb +kRb jpn iqB oxw @@ -76000,7 +96742,7 @@ oxw oxw oxw yks -lnB +uzb xGW xGW xny @@ -76019,52 +96761,55 @@ mxU mxU mxU mxU -mxU +fxj lQG lMz lMz lMz oRx oRx -efR -efR -vnP -vnP -vnP -vnP +wrI +gbh +kjP +kjP +kjP +kjP efR oRx oRx oRx oRx +hCs "} (80,1,2) = {" +hCs +bzC bzC bzC bzC bzC kCV kCV -wKY -pBz +jZR pBz +tpr pBz ahc cHW cHW pZW -pdy -pdy -pdy -pdy -pdy +ksw +mPE +ptP +cCu +hEm aho -cHW +aAu kRb kRb +atp vRr -vRr -vRr +atp cyh kCV pBz @@ -76076,33 +96821,33 @@ exp exp exp exp -cHW -cHW -jpn -ahN -ahO -ahN -hfX -hfX -euL -pdy +kRb +yaR +xKo +mKV +flq +mKV +fMd +fny +hgL +wZP rSL lPj -mKr -brx +flq +ahN pGJ -dVw -cHW -pBz +eii +ggk aTq aTq aTq -oBj +pVD +fJE +dhA +wDW dhA -xWz -ohO nBA -aac +fkV ybn ybn rfz @@ -76118,17 +96863,17 @@ pBz ybn mKr pBz +lzJ cHW -cHW -iqA -iqA +jZi iqA iqA iqA iqA -cHW -lzJ -cHW +jZi +gMI +fLe +pBz cHW qqg cHW @@ -76137,17 +96882,17 @@ ybn rEe pBz cHW -pZW -pdy -pdy -pdy -tnp -yec +rqL +hIE +tKj +etN +bYH +wxE rIb cHW -cHW -cHW -jpn +kRb +uLR +ahK iqB oxw oxw @@ -76178,50 +96923,53 @@ xGW mxU mxU mxU -mnf -mxU -mxU +wYW mxU +fxj mxU +kgr lMz lMz lMz oRx oRx -efR -vnP -vnP -vnP -vnP -vnP +bQd +ocs +kjP +kjP +kjP +kjP efR oRx oRx oRx oRx +hCs "} (81,1,2) = {" +hCs +bzC bzC bzC bzC bzC kCV kCV -wKY +jZR ybn pBz pBz -cHW +aOp qTH ahv -kJY -pdy -pdy -pdy -pdy -pdy +izR +lLx +cCu +nBP +euf +kXf dVw -cHW +qMd kRb qRi wbP @@ -76238,33 +96986,33 @@ exp exp exp exp -cHW -cHW -jpn -ahN -ahO +kRb +yaR +xKo +mKV +flq +mKV +fMd +fny +rfU +vLM +vNK +fZi +flq ahN -hfX -hfX -euL -pdy -rSL -fWd -jZi -brx pGJ -dVw -cHW -pBz -aTq +nhN +bKe +ahL aTq aTq -oBj -ohO -dIS -tVE +alS +fpy +wDW +dhA +wDW uzv -aac +fkV iry iry iry @@ -76272,26 +97020,26 @@ mKr vUN iry iry -wDW +aah iry iry vUN vUN vUN -mKr +fAV pBz -cHW +aOp lzJ -pZW -iqA -pdy -pdy -iqA -rIb +sMX +jZi +prJ +emi +jZi +wkR bsP dkY dkY -cHW +pBz cHW pBz ybn @@ -76299,17 +97047,17 @@ ybn pBz pBz cHW -mkN -lqt -pdy -pdy -pdy -pdy -dVw -cHW +cpp +vNc +cAj +xIp +wcF +ftv +hnw cHW -lzJ -jpn +aOp +acH +wnS iqB oxw oxw @@ -76325,9 +97073,9 @@ oxw oxw tkH hnK -kRb -kRb +aOp cHW +lzJ mxU fxj fxj @@ -76352,17 +97100,20 @@ oRx oRx oRx efR -vnP -vnP -vnP -vnP -vnP +efR +kjP +kjP +kjP +kjP efR oRx oRx oRx +hCs "} (82,1,2) = {" +hCs +bzC bzC bzC bzC @@ -76372,61 +97123,61 @@ kCV kCV wKY ahD +lzJ cHW -cHW -pZW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -tnp -rIb +tHy +fCn +uga +weJ +tKj +exL +cCu +eKK +enp +lGJ ahj dPG uNg wbP kCV kCV -vRr +atp pBz ybn ybn vUN pBz -exp +wsY exp exp exp cHW -cHW -jpn -ahL -ahL -ahL -hfX -hfX +yaR +iqA +iqA +iqA +rNI +uFF +gVs mPX -lqt +amc pED usZ -usZ -usZ +aJk +sHb szK -dVw -cHW -pBz +dYY +fHw aTq aTq aTq -aac -oBj +fkV bwI -oBj +dhA +wDW +dIS dUL -aac +fkV kkC kkC bsP @@ -76436,19 +97187,19 @@ kkC bsP aad bsP -kkC bsP +mOW kkC bsP aad bsP cHW -qTH +kdz nai -pdy -pdy -pdy -pdy +yef +rwf +euf +scH dVw bsP dkY @@ -76456,20 +97207,20 @@ dkY bsP bsP bsP -kkC bsP +mOW bsP -cHW -cHW -cHW -mkN -lqt -pdy -pdy -pdy -iuH +lzJ +vQw +cHW +cpp +dzz +wAP +iVa +lfn +aPW rIb -cHW +eNV cHW jpn jWa @@ -76488,9 +97239,9 @@ tKf uoP hnK kRb -kRb -rTB cHW +rTB +lzJ mxU mxU pFr @@ -76504,7 +97255,7 @@ xGW mxU mxU mxU -mxU +bKG lMz lMz lMz @@ -76515,16 +97266,19 @@ oRx oRx oRx efR -vnP -vnP -vnP -vnP -vnP -efR +kjP +mPw +kjP +kjP +kjP +uxA efR oRx +hCs "} (83,1,2) = {" +hCs +bzC bzC bzC bzC @@ -76534,17 +97288,17 @@ bzC kCV kCV ahk -cHW +aOp cHW ahx -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy +efI +cCu +psO +dud +cKV +lly +nUU +fUE dVw kRb xKQ @@ -76559,39 +97313,39 @@ ybn vUN pBz pBz -exp +fZC exp exp lzJ -cHW -jpn -hfX -hfX -hfX -hfX -gbt +ukR +rcj +cef +cef +cef +xVq +rgs hnK -mkN -sEd -pdy -pdy -pdy -kbg +dze +cZM +kLa +iOd +guB +akb ksB lzJ -pBz -pBz -aTq -aTq -aac -aac -aac -aac -aac -kkC +xFf +aLI +fkV +fkV +nzZ +uBC +wof +vgz +fkV +bZD hzt bsP -bsP +mOW kgg bsP kkC @@ -76600,58 +97354,58 @@ aad bsP kkC kkC -kkC bsP -aad bsP -cHW -pZW -pdy -pdy -pdy -pdy -pdy -dVw +kkC +bsP +lzJ +aTS +nZA +jzp +tdb +twZ +lhy +kwL bsP dkY lLB -lLB +jRo bsP bsP kkC kkC hzt +aOp +kRb +kRb cHW -cHW -cHW -cHW -mkN -lqt -pdy -pdy -pdy -iuH +gfj +fVH +prs +tKj +eca +nIe rIb -cHW -hCr -nLM -nLM -nLM -nLM +pqL +lUr +fqb +fqb +fqb +fqb tve -kFr +cbl qJv qJv wje tve +kFN +nqT nLM nLM -nLM -nLM -okx +xmZ kRb kRb -alT +vnh gsu gzF lQG @@ -76668,7 +97422,7 @@ mxU mxU mxU mxU -mxU +fxj lMz lMz oRx @@ -76677,16 +97431,19 @@ oRx oRx oRx efR -vnP +gEL myV -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP efR oRx +hCs "} (84,1,2) = {" +hCs +bzC bzC bzC bzC @@ -76698,24 +97455,24 @@ kCV kCV ahB ahB -pZW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy +pHK +lpw +oES +tKj +wqU +qpw +kJu +xIp +uBN ahm -cHW +lzJ ahe xKQ kCV kCV kCV pqZ -vRr +atp pBz pBz vUN @@ -76726,17 +97483,17 @@ exp exp pBz pBz -jpn -hfX -hfX -hfX -hfX -hfX -hnK cHW +jCM +jCM +jCM +jCM +tiI +hnK +pAP mkN kWZ -kWZ +jAP vwh ksB cHW @@ -76746,16 +97503,16 @@ kkC kkC bsP cOE -bsP -bsP +mma +mma hzt +kkC bsP bsP -bsP -mma -mma -mma +eSs mma +eSs +eSs bsP hzt bsP @@ -76768,57 +97525,57 @@ eQR bsP bsP pZW -pdy -pdy -pdy -pdy -kbg -ksB +vZm +ifo +eoz +emh +oHw +mjB bsP dkY +jRo lLB -lLB -lLB +jRo bsP bsP bsP bsP -cHW -cHW lzJ cHW +acH +kRb cHW -pZW -pdy -pdy -pdy -pdy -iuH +ewn +qUv +tra +hhi +nUU +pSi rIb cHW cHW cHW -cHW +rUO qYY tve -wCG +kzV qJv ykj wlg tve giq -cHW -lzJ -cHW +ahk +acH kRb -hnk -alT +kRb +kRb +tiC kFo -xGW +oeq bWM mxU mxU -wfb +uvF mxU mxU mxU @@ -76838,17 +97595,20 @@ rsY rsY oRx efR -vnP -vnP -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP +kjP +kjP efR oRx oRx +hCs "} (85,1,2) = {" +hCs +bzC bzC bzC bzC @@ -76859,19 +97619,19 @@ kCV kCV kCV qqg -cHW +tFy ahy -pdy -pdy -pdy -pdy -pdy -pdy -pdy +dUO +tKj +dud +wqU +tKj +xIp +wFz kbg ksB kCV -vRr +atp kCV kCV kCV @@ -76886,82 +97646,82 @@ sUs pBz exp exp -exp +fZC pBz -hCr +dAU nLM nLM nLM nLM nLM okx +aOp cHW cHW cHW +aOp cHW -cHW -cHW -cHW +lzJ bsP hzt kkC bsP +mOW bsP -bsP -bsP -kkC +mma +eSs bsP bsP bsP +eSs mma mma mma mma mma mma +eSs mma mma -mma -mma -mma +eSs bsP bsP +cOE bsP -wqi bsP -mkN -lqt -pdy -pdy -pdy -vrz +rAq +qTh +kvd +hPx +koI +iJJ dkY dkY qSP lIG -lIG +vhJ bsP cOE bsP -lLB +jRo bsP bsP -cHW -cHW -cHW -cHW -mkN -lqt -pdy -pdy -pdy -cZp -iuH -yec -yec -yec +lzJ +mzF +aOp +cHW +dxZ +xyA +vZm +tra +xIp +uDQ +jag +xFj +wxE +lhd rIb -thT +srR lzW aEu ykj @@ -76970,18 +97730,18 @@ wCG lzW gKe cHW -cHW -cHW -cHW +kRb +exA +kpJ alT -kFo -xGW +xrw +bwj xGW bWM mxU -qvl +fCa uwB -gzF +tAy mxU lQG mxU @@ -76998,39 +97758,42 @@ mxU rsY rsY oRx -vnP -vnP -vnP -vnP -vnP +wNg +gVR +kjP +kjP +kjP oRx -vnP -vnP +dLR +kjP efR oRx oRx +hCs "} (86,1,2) = {" +hCs +bzC bzC bzC bzC bzC kCV kCV -ahh -cHW +rUO +aOp cHW cHW qTH nai -pdy -pdy -pdy -pdy -pdy -pdy -pdy -aho +wCJ +tra +tKj +qZP +cAj +cCu +qoC +egT cHW kCV kCV @@ -77053,21 +97816,18 @@ bsP bsP bsP kkC -kkC bsP +kkC bsP bsP bsP hzt -cHW +bfM lzJ cHW bsP -wqi -kkC -bsP -bsP bsP +kkC bsP bsP bsP @@ -77075,6 +97835,9 @@ bsP bsP mma mma +bsP +eSs +mma mma mma mma @@ -77086,21 +97849,21 @@ mma buw buw mma -mma +eSs bsP bsP bsP bsP cHW mkN -kWZ -lqt -pdy +ukH +fFP +vEJ dVw dkY dkY qSP -lLB +jRo bsP kLT kLT @@ -77109,20 +97872,20 @@ bBc mvM bsP bsP +aOp +hnk +kRb cHW -qqg -cHW -cHW -pZW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -tnp +rMZ +lQU +fts +mXF +xoB +cqh +xTp +qmu +ceh +bYH hNW lzW wlg @@ -77131,23 +97894,23 @@ qJv wCG lzW mMd -rIb -cHW -cHW +tsU cHW +kRb +lzJ wXj -xGW +hXB xGW ofA fyj qvl bda -xGW +dlN bWM mxU mxU mxU -xGW +lIb mxU xGW mxU @@ -77160,40 +97923,43 @@ mxU oXF efR efR -vnP -vnP -vnP +rST +kjP +kjP oRx -vnP +kjP oRx -vnP -vnP +dWO +hyB efR oRx oRx +hCs "} (87,1,2) = {" +hCs +bzC bzC bzC bzC kCV kCV +uFJ +aAu cHW -cHW -cHW -qTH -yec +wIh +qHR kJY -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy +ogA +hcn +lwO +euf +mfR +xFB +fLj +tCN dVw -ahn +elQ kCV kCV cRQ @@ -77203,7 +97969,7 @@ kCV pBz bsP bsP -bsP +ryD bsP bsP bsP @@ -77211,11 +97977,11 @@ mma mma bsP mma -mma +aIC bsP kkC -kkC -kkC +cOE +bsP bsP bsP bsP @@ -77227,12 +97993,12 @@ bsP bsP bsP bsP +eSs mma mma mma mma -mma -mma +eSs mma mma mma @@ -77240,26 +98006,26 @@ buw buw mma mma +eSs mma mma mma mma mma mma -mma -mma +eSs bsP bsP bsP mma bsP bsP -cHW +rUO cHW mkN kWZ -ksB -cHW +nOE +rUO dkY kLT bsP @@ -77269,44 +98035,44 @@ vUX qSP dkY ijq +gPs bsP -bsP -cHW -cHW lzJ cHW +acH +aOp mkN vwh kWZ -lqt -pdy -pdy -pdy -pdy -pdy -pdy -rCE +uHp +aYm +mnp +eaj +qxo +nBP +eRh +tKG tve mcA ykj qJv wCG tve -obH -iuH -rIb -cHW +hWB +ieO +vRB cHW +uOQ wXj xGW -xGW +rDw orD -uwB -bda +nix +kYE xGW xGW azu -cHW +rUO mxU mxU xGW @@ -77318,49 +98084,52 @@ fxj mxU pFr mxU -wfb +uvF odL efR -efR -vnP -vnP -vnP +ffK +mga +kjP +kjP oRx -vnP +kjP oRx oRx efR efR oRx oRx +hCs "} (88,1,2) = {" +hCs +bzC bzC bzC bzC kCV -cHW +dPt ahk -cHW +aOp qTH -jWo -kbg -kWZ +kDZ +qpb +xpk lqt -pdy -pdy -pdy -pdy +xtN +paW +xaX +iZx qxi kWZ -sEd +kWr dVw -cHW -ahk +lzJ +vQw kRb +atp vRr -vRr -vRr +atp pBz bsP cOE @@ -77373,12 +98142,12 @@ bsP mma mma mma -mma -bsP +eSs bsP +ryD kkC bsP -mma +eSs mma mma mma @@ -77413,63 +98182,63 @@ bsP bsP mma mma -mma +eSs mma bsP bsP bsP -cHW -cHW lzJ cHW +lzJ +pBz dkY qSP -bsP +hbL bsP bsP dHG dkY dkY bsP -wqi +eRk bsP bsP +rUO cHW cHW -cHW -cHW -cHW -cHW -mkN +kRb +aOp +ahk +rAq kWZ -lqt -pdy -pdy -pdy -pdy -rCE +joR +aLh +mtF +cAj +tKj +xuO tve noc -ajs -ajs +fNX +fNX wlg tve -obH -pdy -iuH -yec -lrG +vfC +dRh +ogW +mZr +hCa tEw xGW agk -xGW +jCi xGW xGW xGW wrH gDx -rIb -cHW +mJy +lzJ mxU mxU mxU @@ -77481,30 +98250,33 @@ mxU mxU mxU wfb -odL +kJK efR -vnP -vnP -vnP -vnP -vnP -vnP +kjP +kjP +esd +vHR +uxg +kjP oRx oRx oRx oRx oRx oRx +hCs "} (89,1,2) = {" +hCs +bzC bzC bzC bzC kCV ahD -ahu +uFJ hmi -jtC +vxW tsp xbs uvk @@ -77516,29 +98288,29 @@ ahr xbs uvk jtC -xbs -mBr +dGm +skb sIP ahf kRb -pBz +vRr kkC wqi -bsP +ryD bsP kkC kkC hzt +eSs mma mma mma mma -mma -mma +gld wqi bsP bsP -mma +eSs mma mma bsP @@ -77554,10 +98326,10 @@ mma mma mma mma -mma +eSs bsP wqi -bsP +cGr bsP mma mma @@ -77568,7 +98340,7 @@ dkY dkY dkY hzt -wqi +bsP mma mma bsP @@ -77578,12 +98350,12 @@ bsP bsP bsP mma -mma +eSs bsP bsP bsP -cHW -cHW +aOp +dAU dkY dkY dkY @@ -77601,37 +98373,37 @@ bsP bsP cHW cHW -cHW +kRb lzJ cHW -mkN +cpp kWZ lqt -pdy -cZp -rCE +gJz +jEX +hym lzW nSM -ajs -ajs +fNX +fNX wlg lzW -obH -pdy -pdy -pdy -pdy -plU -xGW +ijJ +bSZ +btM +muu +dRh +gxv xGW +jPh agk agk -xGW +jWB xGW lke -pdy +dIE dVw -cHW +aOp mxU mxU mxU @@ -77641,30 +98413,33 @@ mxU mxU mxU mxU -wfb +uvF wfb odL efR -vnP -vnP -vnP +kjP myV -vnP -vnP -vnP +kjP +kjP +kjP +kjP +efR oRx oRx oRx oRx oRx +hCs "} (90,1,2) = {" +hCs +bzC bzC bzC bzC kCV kCV -cHW +rUO kCV pKE jCM @@ -77682,7 +98457,7 @@ jCM pKE hnK ahg -cHW +aOp ahb kkC kkC @@ -77694,15 +98469,15 @@ bsP bsP mma mma -afK +mma mma bsP kkC bsP bsP mma -mma -mma +tUP +eSs mma bsP bsP @@ -77719,7 +98494,7 @@ bsP bsP hzt bsP -bsP +oCM gYc iaB iaB @@ -77738,7 +98513,7 @@ bsP bsP kkC hzt -mma +eSs bsP mma mma @@ -77756,71 +98531,74 @@ dkY qSP bsP bsP -kkC +hbL kkC bsP bsP bsP bsP bsP +rUO +nCC +aOp cHW -cHW -cHW -cHW -cHW +gAJ mkN -lqt -pdy +roO +nuP rCE lzW kFg -ajs -ajs +fNX +fNX wlg lzW -obH -pdy -pdy -pdy -pdy +hoe +csc +psO +tKj +cCu xYp gPT wmL -xGW +aJJ agk agk xGW lke -pdy +rOK dVw qqg mxU mxU -xGW +lIb mxU -xGW +lIb xGW mxU mxU +uvF wfb -wfb -wfb +uvF ouA efR -vnP -vnP -vnP -vnP -vnP -vnP -vnP +kjP +ddO +kjP +kjP +kjP +kjP +efR oRx oRx oRx oRx oRx +hCs "} (91,1,2) = {" +hCs +bzC bzC bzC bzC @@ -77843,7 +98621,7 @@ hfX hfX iIo hnK -ahh +aOp mma mma mma @@ -77858,11 +98636,11 @@ mma mma mma bsP +cOE bsP bsP bsP -bsP -mma +eSs bsP mma bsP @@ -77929,31 +98707,31 @@ bsP bsP bsP bsP +rUO cHW -cHW -mkN -kWZ +rAq +egl ezK -tve -wCG +tJD +nCP qJv ykj wlg tve obH -pdy -pdy -pdy -pdy -pdy -pdy +aHC +aSd +dud +bmV +bGZ +fdM plU -xGW -xGW +aGe +iAe xGW uOd kEW -mWX +rfX ksB cHW lQG @@ -77965,24 +98743,27 @@ xGW mxU mxU wfb +uvF wfb -wfb -ouA +bfV efR -vnP -vnP -vnP -vnP -vnP -vnP +kjP +kjP +kjP +kjP +kjP +hyB efR oRx oRx oRx oRx oRx +hCs "} (92,1,2) = {" +hCs +bzC bzC nlt nlt @@ -78004,32 +98785,32 @@ kMe nlt uzD rEN -xhb +xpu mma mma bsP bsP bsP bsP -mma -mma -mma +eSs +knG +gld mma mma bsP mma mma -mma +eSs bsP bsP bsP -mma +eSs bsP mma bsP mma bsP -mma +eSs maD aoO aoO @@ -78097,24 +98878,24 @@ bsP qqg thT tve -wCG +bkE ykj ykj eQp tve -obH -pdy -pdy -pdy -pdy -pdy -pdy -xGF -wmL -xGW +fEy +fQe +tra +dYI +bNp +bAL +tis +ngv +euu xGW +mZj lke -kbg +iGi ksB cHW mxU @@ -78130,27 +98911,30 @@ mxU wfb wfb ouA +uxA +kjP +kjP efR -vnP -vnP -vnP -vnP -vnP -vnP +kjP +dLR +kjP efR oRx oRx oRx oRx oRx +hCs "} (93,1,2) = {" +hCs +bzC bzC nlt xvS oBb okB -sqS +vzw kMe kRP jMn @@ -78163,7 +98947,7 @@ nlt bgm hCj hCj -nlt +snS uzD rEN xhb @@ -78174,7 +98958,7 @@ kkC hzt bsP bsP -mma +eSs mma mma mma @@ -78233,7 +99017,7 @@ mma bsP mma mma -mma +eSs bsP bsP bsP @@ -78251,34 +99035,34 @@ dkY dkY dkY dkY -lLB +jRo bsP bsP hzt bsP bsP -thT +eth lzW wlg ykj ykj tYz lzW -obH -pdy -pdy -pdy -pdy -pdy -pdy -pdy +paY +dTu +ngR +nZa +iGR +lIf +xIp +qHg xGF -gPT -gPT -kEW -dVw -cHW -cHW +cWD +lkE +pRg +pfh +aVu +aOp mxU oIQ mxU @@ -78290,14 +99074,14 @@ mxU mnf fxj fxj -wfb +uvF odL efR efR -vnP -vnP -vnP -vnP +kjP +efR +usy +dWO efR efR oRx @@ -78305,8 +99089,11 @@ oRx oRx oRx oRx +hCs "} (94,1,2) = {" +hCs +bzC bzC nlt xvS @@ -78344,14 +99131,14 @@ mma mma mma mma -mma +eSs bsP bsP hzt bsP bsP bsP -wqi +bsP bsP mma skE @@ -78389,7 +99176,7 @@ ndU bBc jyE bsP -wqi +bsP bsP bsP mma @@ -78400,7 +99187,7 @@ mma mma mma mma -mma +eSs bsP bsP bsP @@ -78412,7 +99199,7 @@ dkY dkY dkY dkY -lLB +jRo lLB bsP kkC @@ -78427,20 +99214,20 @@ ykj djf lzW ect -bjW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -kbg -ksB -cHW +pmQ +lYY +iEC +qzI +xIp +vnu +nBP +xIp +kDI +ifo +nVp +hsS cHW +lzJ mxU fxj pFr @@ -78450,13 +99237,13 @@ mxU xGW mxU mxU -mxU +bKG fxj mxU oXF efR efR -vnP +efR oRx efR efR @@ -78467,8 +99254,11 @@ oRx oRx oRx oRx +hCs "} (95,1,2) = {" +hCs +bzC bzC nlt nlt @@ -78479,7 +99269,7 @@ sqS kMJ kMJ htW -htW +drR rUa hCj hCj @@ -78503,18 +99293,18 @@ mvM lLB bsP bsP -bsP -mma -mma +vRA +bfY +irM nEY bsP lLB -lLB +jRo bsP lLB -lLB +jRo bsP -mma +eSs mma skE vHW @@ -78531,14 +99321,14 @@ xsl xsl xsl xsl -vHW +qwb vHW xsl xsl xsl xsl -ons -ons +gEt +gEt xsl xsl wnU @@ -78558,7 +99348,7 @@ bsP bsP bsP bsP -mma +eSs mma mma mma @@ -78575,9 +99365,9 @@ dkY dkY dkY qSP -lLB -bsP +jRo bsP +hbL kkC kkC bsP @@ -78590,22 +99380,22 @@ fjm tve tAg mkN -kWZ +jAP lqt -pdy -pdy -pdy -pdy -pdy -pdy -kbg -ksB +ngR +rIl +eTB +bOw +cCu +aLS +txT +wNc lzJ cHW mxU mxU fxj -mxU +wYW fxj xGW xGW @@ -78629,8 +99419,11 @@ oRx oRx oRx oRx +hCs "} (96,1,2) = {" +hCs +bzC bzC nlt oZN @@ -78665,8 +99458,8 @@ dkY aOu ckN ckN -rof -uTr +uqg +rlZ uTr rof ckN @@ -78674,8 +99467,8 @@ ckN ckN ckN ckN -meY -lLB +bvL +jRo bsP bsP aoO @@ -78684,7 +99477,7 @@ coD coD klL xsl -hqU +asV bJt uCw vKa @@ -78696,12 +99489,12 @@ fvZ sip sip msQ -ons +gEt mSt fnO jkY qCP -ons +gEt kex rDM sip @@ -78718,8 +99511,8 @@ hzt bsP cOE bsP -bsP -bsP +irp +kkC bsP bsP bsP @@ -78741,7 +99534,7 @@ bsP bsP bsP bsP -bsP +mOW bsP qvF tve @@ -78751,33 +99544,33 @@ qJv iCs tve tAg +rUO cHW -cHW -mkN +cpp kWZ lqt -pdy -pdy -pdy -pdy +laG +spL +rbQ +nao dVw -cHW -cHW -cHW -mxU -wfb -mxU +xEo +aOp +lzJ mxU +uvF +hOf +uwu mxU xGW -xGW +lIb mxU mxU cCn oWb fzo mxU -mxU +kgr rsY rsY uzk @@ -78791,8 +99584,11 @@ oRx oRx oRx oRx +hCs "} (97,1,2) = {" +hCs +bzC bzC nlt iZc @@ -78823,7 +99619,7 @@ qSP qSP dkY dkY -lLB +jRo gNu ryc qCz @@ -78858,12 +99654,12 @@ cKg sip sip kDH -ons +gEt fGF uhd mXK gSC -ons +gEt giF sCu sip @@ -78878,20 +99674,20 @@ ugj bsP nCq nCq +hbL bsP +kkC bsP bsP -bsP -bsP -bsP +hzt bsP bsP bsP mma mma mma -bsP -bsP +mRo +wPy bsP bsP dkY @@ -78903,8 +99699,8 @@ dlC qpj ghB bsP -bsP -bsP +azH +mVk qvF lzW wlg @@ -78914,23 +99710,23 @@ wlg lzW tAg pBz -cHW -cHW -cHW -mkN -bjW -pdy -pdy +ahk +aOp +lzJ +qIY +pmQ +gwA +lIg pdy -iuH +hdz rIb -cHW -cHW +uFJ +vQw mxU wfb -wfb +uvF +mxU mxU -mnf xGW mxU xGW @@ -78953,8 +99749,11 @@ oRx oRx oRx oRx +hCs "} (98,1,2) = {" +hCs +bzC bzC nlt nlt @@ -78978,12 +99777,12 @@ uzD rEN bRy bsP -bsP +cOE lLB qSP qSP bsP -bsP +iDR cOE lLB gNu @@ -78999,7 +99798,7 @@ uzD uzD rEN dxf -lLB +jRo bsP kgg bsP @@ -79025,7 +99824,7 @@ mYz qpD sip jkY -ons +gEt nQp sip sip @@ -79049,11 +99848,11 @@ itG bsP bsP bsP -mma +eSs mma mma bsP -bsP +idB bsP dkY dkY @@ -79077,18 +99876,18 @@ lzW ona pBz pBz -cHW +lzJ cHW cHW mkN lqt -pdy -pdy -pdy -iuH +bTi +fUP +cVR +aCi rIb cHW -cHW +lzJ lMz lMz mxU @@ -79115,8 +99914,11 @@ oRx oRx oRx oRx +hCs "} (99,1,2) = {" +hCs +bzC bzC nlt piq @@ -79139,15 +99941,15 @@ ahq uzD rEN bRy -pDI +gCJ bsP bsP kLT bsP -bsP +mOW wqi bsP -lLB +jRo gNu rEN uzD @@ -79189,7 +99991,7 @@ dRq jkY xsl xsl -sip +wOk sip xsl nCq @@ -79215,7 +100017,7 @@ bsP kkC mma mma -wqi +bsP bsP dkY dkY @@ -79226,7 +100028,7 @@ fAq dlh iew fpK -bsP +mOW hzt bsP qvF @@ -79243,11 +100045,11 @@ pBz pBz lzJ cHW -pZW -pdy -pdy -pdy -pdy +yab +nME +jzp +cCu +pkz iuH eeH cHW @@ -79277,8 +100079,11 @@ oRx oRx oRx oRx +hCs "} (100,1,2) = {" +hCs +bzC bzC nlt hEW @@ -79298,10 +100103,10 @@ lvZ enu cBB nlt -oqM +kRG rEN bRy -pDI +mkr bsP bsP kLT @@ -79349,7 +100154,7 @@ jiB hIw oCD fRj -ons +gEt aOW sip sip @@ -79400,19 +100205,19 @@ wlg tve ona pBz +gTc +emN pBz -pBz -pBz -cHW +aOp cHW mkN -lqt -pdy -pdy -pdy -pdy +dzz +tra +wqU +jlE +dRh dVw -cHW +aOp mxU mxU mxU @@ -79425,7 +100230,7 @@ mxU mxU mxU mxU -wfb +uvF wfb agk agk @@ -79439,8 +100244,11 @@ oRx oRx oRx oRx +hCs "} (101,1,2) = {" +hCs +bzC bzC nlt nlt @@ -79464,7 +100272,7 @@ qCz ryc bRy pDI -pDI +ygV bsP bsP kLT @@ -79480,10 +100288,10 @@ vHW acd aoO wbr -bJt -bJt -uCw -uCw +hAI +hAI +rtf +oAl yfu yfu yfu @@ -79511,18 +100319,18 @@ mYz qpD coD hUh -ons +gEt rjN sip sip mVe fVR -xyK +qXy xyK xyK xyK nlA -tVZ +xaf bqJ hlU itG @@ -79549,11 +100357,11 @@ abu iew iew iew -fpK +bPL kkC kkC kkC -nxi +qvF lzW wlg ykj @@ -79561,19 +100369,19 @@ qJv wCG lzW ona -vRr -pBz -gTc +atp +uFZ +vyp rEe pBz cHW -cHW +gqP pZW -pdy -pdy -pdy -pdy -dVw +lmA +tKj +wqU +voD +cGl cHW cHW mxU @@ -79582,11 +100390,11 @@ xGW mxU xny xGW -xGW +lIb mxU mxU fxj -wfb +uvF lMz lMz agk @@ -79601,32 +100409,35 @@ oRx oRx oRx oRx +hCs "} (102,1,2) = {" +hCs +bzC bzC bzC bzC bzC bzC -ddS -vkO -vkO vkO vkO vkO +ddS +sqS +ahs vkO vkO vkO ddS -obF +vkO obF obF obF hsu -hsu +dWg nzL -bsP -bsP +urW +bpp bsP qSP qSP @@ -79636,16 +100447,16 @@ bsP bsP kLT kLT -aoO +lOP iTN djM djM xsl mWE -bJt -uCw -uCw -uCw +hAI +sge +sge +xEM tJp yfu yfu @@ -79673,7 +100484,7 @@ jiB uhd sip ivL -ons +gEt vKR sip sip @@ -79698,7 +100509,7 @@ itG itG bsP bsP -mma +eSs bsP mma bsP @@ -79712,7 +100523,7 @@ gbW pZf iew fpK -lLB +bsP kkC bsP nxi @@ -79723,20 +100534,20 @@ qJv wCG lzW jlA -vRr -vRr +pBz +atp pBz pBz pBz pBz cHW pZW -pdy -pdy -pdy -pdy -iuH -rIb +gXh +tra +euf +jyj +iMN +hBz lzJ mxU mxU @@ -79750,7 +100561,7 @@ mxU fxj fxj wfb -wfb +uvF agk agk oRx @@ -79763,38 +100574,41 @@ oRx oRx oRx oRx +hCs "} (103,1,2) = {" +hCs bzC -ead -ead -ead -ead -cjq -rED -rED -rED -rED -rED -iOH -iOH -iOH +bzC +bzC +bzC +bzC +bzC +hfX +hfX +hfX oBW -iOH -obF +hfX +hfX +hfX +hfX +hfX +oBW +aNL +rNP obF obF obF -pDI -cOE -bsP +qyv +lLB +mRe obF dkY qSP bsP bsP bsP -bsP +kkC dkY qSP bsP @@ -79804,16 +100618,16 @@ jkY oaK xsl ofY -uCw +pBx ofY -bJt +sFN ofY iCq qyR yfu vKr -iCq -ons +sJY +gEt sip sip xsl @@ -79862,7 +100676,7 @@ bsP bsP mma mma -mma +eSs bsP dkY dkY @@ -79874,9 +100688,9 @@ eBp aAN iew fpK -lLB +xab bsP -lLB +jRo dTp tve nGt @@ -79886,32 +100700,32 @@ wCG tve jlA vRr -sdn +xGh pBz pBz aDJ pBz -cHW -pZW -pdy -pdy -pdy -pdy -cZp +lzJ +qul +obQ +rpL +oIY +wDE +mPL dVw -cHW +lzJ mxU mxU mxU -xGW +lIb xGW mxU xGW mxU mnf -mxU +bKG fxj -wfb +uvF wfb agk agk @@ -79925,25 +100739,28 @@ oRx oRx oRx oRx +hCs "} (104,1,2) = {" +hCs bzC -ead -ead -ead -rED -cjq -rED -iOH -iOH -iOH -iOH -nmm -cmX -iiB -fvf -iiB -iiB +bzC +bzC +bzC +bzC +nCZ +njr +rJV +jCM +uKY +rXf +rXf +rXf +rXf +rXf +sVi +jCM +afC obF obF obF @@ -79954,7 +100771,7 @@ obF dkY dkY dkY -bsP +kkC bsP dkY bsP @@ -79965,17 +100782,17 @@ sip sip xsl xsl +gvb +sFN ofY -bJt -ofY -bJt +sFN jYe -iCq +utG qyR nlq vKr rCw -ons +gEt sip sip uss @@ -80033,12 +100850,12 @@ iew wBR gbW wTy -gbW +mZF iew fpK -lLB -lLB -oot +bsP +xab +bsP dTp tve vPj @@ -80047,22 +100864,22 @@ ykj vOz tve jlA -vRr +atp pBz pBz -vRr +atp vRr pBz pBz -mkN -lqt -pdy -pdy -pdy -pdy +cpp +sdX +syN +euf +tEp +qSF dVw -cHW -cHW +aOp +lzJ mxU fxj mxU @@ -80087,26 +100904,29 @@ oRx oRx oRx oRx +hCs "} (105,1,2) = {" -ead -ead -ead -ead -rED -cjq -iOH -iOH -klo -klo -qzh -iOH -iiB +hCs +bzC +bzC +bzC +bzC +bzC +aBJ +dQo +qJH +jub +bjo +jub +cIq +fpi +tef ajM cCd lid ajK -sqI +gDr obF obF obF @@ -80116,10 +100936,10 @@ nmm iOH iOH dkY +kuq +kkC bsP -wqi -bsP -bsP +mOW dkY qFw aoO @@ -80175,7 +100995,7 @@ qGy yij bQU itG -gDG +qVt mCY esh fgn @@ -80199,7 +101019,7 @@ eNl iew iqF wku -bTc +dlC bTc fyD tve @@ -80211,20 +101031,20 @@ tve jlA cRQ vRr -vRr -vRr -vRr +atp vRr pBz +atp pBz -aiD -pdy -pdy -pdy -pdy +pBz +psz +own +nYF +tsA +sjH dVw cHW -cHW +uFJ mxU fxj mxU @@ -80235,7 +101055,7 @@ xGW mxU mxU lQG -wfb +uvF agk agk agk @@ -80249,31 +101069,34 @@ oRx oRx oRx oRx +hCs "} (106,1,2) = {" -ead -ead -ead -rED -rED -cjq -iOH -iOH -klo -klo -iOH -iOH -iiB -vgH +hCs +bzC +bzC +bzC +bzC +iys +vRr +atp +vRr +faj +sjx +iSq +vRr +pBz +cHW +qTH wsL -ajI -vhq -iiB +qip +dVw +vHL ajz obF obF obF -iOH +fPV iOH iOH dkY @@ -80285,9 +101108,9 @@ cOE bsP kLT aoO +mTn sip -sip -ons +gEt qiC abW fQE @@ -80299,7 +101122,7 @@ abW kSu gRw tHg -ons +gEt sip coD xsl @@ -80380,12 +101203,12 @@ lzW tve tve pZW -pdy -pdy -pdy -pdy +tXh +nBP +cCu +xrr iuH -rIb +lGJ cHW mxU mxU @@ -80394,7 +101217,7 @@ mxU xGW mxU xGW -xGW +lIb fxj mxU mxU @@ -80411,27 +101234,30 @@ oRx oRx oRx oRx +hCs "} (107,1,2) = {" -ead -ead -rED -agu -rED -vOo -rED -iOH -iOH -iOH -iOH -iOH -iiB -kMs -bpU -qoh -vhq +hCs +bzC +bzC +bzC +uVO +vRr +vRr +sdn +uhn +cio +iVW +dQa +uhn +pBz +rOT +pZW +ifg +rvL +dVw ajH -iiB +kRb obF dkY dkY @@ -80440,16 +101266,16 @@ dkY iOH iOH dkY -iOH +gav dkY dkY dkY kLT qSP aoO +jgk sip -sip -ons +gEt qiC abW whm @@ -80461,7 +101287,7 @@ abW kWJ gRw qiC -ons +gEt aHH sHm xsl @@ -80474,11 +101300,11 @@ jaZ xsl aep vlo -mXK -sip -sip -mXK -vlo +dQr +fxD +efg +muQ +ifJ vlo vlo qiC @@ -80488,7 +101314,7 @@ xsl qbp sip mVe -bQU +mEu ofo jSG hhD @@ -80542,14 +101368,14 @@ lka iJW tve pZW -pdy -pdy -pdy -pdy -pdy -dVw -cHW -cHW +nWy +mUh +gKn +xrF +urt +geM +cHW +rUO mxU mxU mxU @@ -80557,7 +101383,7 @@ mxU xGW xny xGW -xGW +lIb chE agk agk @@ -80573,35 +101399,38 @@ oRx oRx oRx oRx +hCs "} (108,1,2) = {" -ead -ead -ead -rED -rED -cjq -rED -iOH -ajT -nmm -iOH -iiB -iiB +hCs +bzC +bzC +bzC +bzC +sho +hHl +obt +mrW +otW +xLp +hka +atp +pBz +tpA ajN -bpU -qoh -oQH -wGb -iiB -ajB +uwJ +tkI +qOI +rIb +lzJ +kRb dkY dkY dkY dkY iOH iOH -iOH +qzh iOH iOH dkY @@ -80636,13 +101465,13 @@ uss uss oVW oVW -oVW -jkY -jkY -oVW -oVW +dQr +kVQ +ydW +dWC oVW oVW +sra oVW uss uss @@ -80704,13 +101533,13 @@ fNX rPt tve pZW -pdy -pdy -pdy -pdy -pdy -iuH -rIb +rWA +jzp +tKj +cCu +rPk +hky +mJy cHW mxU mxU @@ -80735,37 +101564,40 @@ ftl ftl ftl ftl +hCs "} (109,1,2) = {" -ead -ead -ead -ead -ead -cIq -rED -iOH -nmm -iOH -iOH -iiB -vgH +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC +atp +vRr +vRr +atp +pBz +lzJ +fDj thE -bpU -qoh -qoh +wMs +efI +tLT oQH -wGb -iiB +rIb +qqg qSP +dNB rED -rED -rED +dNB iOH iOH dkY -qzh iOH +sJR dkY dkY qSP @@ -80796,16 +101628,16 @@ uss oVW oVW oVW +sra +sra +ihm +nCQ +vTh +wCh oVW oVW oVW -jkY -jkY -oVW -oVW -oVW -oVW -oVW +sra oVW oVW vHW @@ -80865,17 +101697,17 @@ bGK vOz fNX tve -pZW -pdy -pdy -pdy -pdy -pdy -pdy +gOO +aDF +tKj +iOt +tKj +qKE +pGl iuH rIb -cHW -cHW +ahk +rUO mxU mxU mxU @@ -80889,7 +101721,7 @@ agk lvo eek yiR -wfb +agi unM tZm tZm @@ -80897,29 +101729,32 @@ tZm tZm ftl ftl +hCs "} (110,1,2) = {" -ead -ead -ead -ead -ead -cIq -ead -iOH -qzh -iOH -iiB -ajQ -kMs -qoh -bpU -qoh -qoh -qoh -vhq -iiB -hRw +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +sqc +sUs +pBz +lzJ +ahn +hpj +nJt +wZL +sgP +fZd +ruj +xOg +fwz +aah hRw ama iOH @@ -80935,7 +101770,7 @@ qSP aoO coD sip -ons +gEt qYr vlo vlo @@ -80947,23 +101782,23 @@ lHR izT gRw vlo -ons +gEt mXK mXK xsl qYr qiC -cKg +oxo dTK oWY vlo xsl vlo vlo -mXK -sip -mXK -mXK +aex +dQr +dQr +aex vlo qiC xmX @@ -81005,11 +101840,11 @@ cER cER cER lsy -gjA +lhQ wUO gjA -lsy -cER +bPU +kIV cER eYt lzW @@ -81027,17 +101862,17 @@ owU ykj fNX tve -pZW -cZp -pdy -pdy -pdy -pdy -pdy -pdy +uLC +fpS +cAj +oES +mfV +cCu +wob +mUN iuH -yec -rIb +bKA +nEO cHW lQG mxU @@ -81059,29 +101894,32 @@ vUj tZm ftl ftl +hCs "} (111,1,2) = {" -ead -ead -ead -ead -ead -cIq -ead -iOH -iOH -iOH -iiB -iiB -kMs -qoh +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +pBz +pBz +pBz +pBz +cHW +pZW +xOG bpU -qoh -qoh -ajI -vhq +mKI +oES +kQt +lpa ajC -iOH +vUN vWJ iOH iOH @@ -81095,9 +101933,9 @@ nmm dkY kLT aoO -coD +cCV sip -ons +gEt xkB qiC qiC @@ -81109,7 +101947,7 @@ lHR tHk gRw vlo -ons +gEt sip sip xsl @@ -81140,7 +101978,7 @@ wyc wyc wyc itG -uLQ +riQ uLQ itG itG @@ -81163,7 +102001,7 @@ bsP iew iew iew -nMw +gMN iew xLP iew @@ -81190,20 +102028,20 @@ ykj lsz tve pZW -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy -pdy +dwm +gAB +gDW +tKj +fIw +oXJ +dRh +rlj +pae dVw cHW mxU mxU -xGW +lIb xGW mxU mxU @@ -81221,33 +102059,36 @@ bzv tZm tZm ftl +hCs "} (112,1,2) = {" -ead -ead -ead -ead -rED -cIq -rED -iOH -iOH -iOH -iiB +hCs +bzC +bzC +bzC +bzC +bzC +ttN +bzC +atp +pBz +pBz +pBz +aOp ajR -kMs -ajI -bpU -qoh -qoh -qoh -vhq -iiB -iiB +hEq +lLx +egz +vgF +hDY +hGW +dVw +uFJ +vUN hRw iOH iOH -rED +dNB qzh iOH iOH @@ -81283,7 +102124,7 @@ rfD rfD ftw ftw -sVW +vuw sVW iBO iVO @@ -81342,8 +102183,8 @@ fNX aaI lzW tve -bcZ -bcZ +pNC +pNC tve ufF nHq @@ -81351,19 +102192,19 @@ tkF ykj fNX tve -mkN -kWZ -bjW -pdy -pdy -pdy -pdy -pdy -pdy -cZp +hlL +rxX +pmQ +xtN +cAj +cYc +nEH +kRB +iKc +egX dVw -cHW -cHW +aOp +lzJ mxU mxU xGW @@ -81371,8 +102212,8 @@ xny xGW dyd kqO -wfb -wfb +uvF +agi rHs rHs wfb @@ -81383,39 +102224,42 @@ oKg xai tZm ftl +hCs "} (113,1,2) = {" -ead -ead -ead -ead -rED -cjq -rED -rED +hCs +bzC +bzC +bzC +bzC +bzC +cfh +uhn +vRr +atp xUB -iiB -iiB -iiB -kMs -qoh -bpU -qoh -qoh -qoh -ajD -iiB -ajz -iOH -hRw +qqg +lzJ +qTH +aCB +dnw +ojo +fow +tKj +led +xOg +fwz +hyA iOH +rMv +gwW rED -rED +dNB iOH iOH dkY dkY -iOH +iPf dkY kLT nJh @@ -81434,7 +102278,7 @@ xsl xgQ beN xsl -sip +wOk coD uss veu @@ -81446,11 +102290,11 @@ jCa jCa ftw ftw -ons +gEt xsl -ons +gEt xsl -ons +gEt xsl hUF pkD @@ -81491,7 +102335,7 @@ lkv nbA hjv hiY -nMw +jkN rwT gAn hiY @@ -81505,7 +102349,7 @@ bZt cIM ghR bcZ -bcZ +pNC tve tve aaN @@ -81517,16 +102361,16 @@ tve tve fzA iHY -pdy -pdy -pdy -pdy -pdy -pdy +lRf +lLU +nLt +tKj +eca +siL dVw -cHW -cHW -mxU +lzJ +aOp +cMN mxU xGW xGW @@ -81545,33 +102389,36 @@ lba byO tZm ftl +hCs "} (114,1,2) = {" -ead -ead -ead -ead -rED -cIq -rED -iOH -iOH -iiB -iiB -iiB -kMs -qoh -bpU -qoh -qoh +hCs +bzC +bzC +bzC +bzC +bzC +eiv +bzC +nrU +pBz +pBz +lzJ +uFJ +mUS +vwn +dsU +eDR +tra qoh -vhq -iiB -iiB -iOH -hRw +aXL +pOz +fwz +jAh rED +hRw rED +dNB rED iOH eQz @@ -81585,7 +102432,7 @@ djM jkY oaK xsl -pAN +wqZ pAN ikY pAN @@ -81600,7 +102447,7 @@ dkq coD xsl ftw -kqL +gnX kqL dZb dZb @@ -81619,7 +102466,7 @@ pkD pkD xsl xsl -coD +oNh coD aoO rwC @@ -81666,30 +102513,30 @@ rqM bZt cIM hev -ygP +gcR pPn bcZ lzW dbj gaS -hXr -hXr +fNX +fNX chO lzW rgS rgS wEQ -pdy -pdy -pdy -pdy -pdy -pdy +edr +ukt +lIf +hIk +tKj +nHu dVw cHW qqg agk -mxU +eWS mxU xny xGW @@ -81707,35 +102554,38 @@ pjE hvl tZm ftl +hCs "} (115,1,2) = {" -ead -ead -ead -ead -ead -cIq -ead -iOH -iOH -ajB -iiB -iiB -kMs -qoh -bpU -qoh -qoh -qoh -vhq -iiB -iiB +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +ybn +pBz +qqg +kRb +mWZ +sjC +oTV +dZw +dMQ +deh +qWs +ajD +cHW +hyA iOH iOH jAI jAI hRw -hRw +rMv iOH iOH ama @@ -81746,7 +102596,7 @@ aoO jkY djM djM -ons +gEt qCR nvi nvi @@ -81790,11 +102640,11 @@ mhk tJO suW ame -abI +lvC owu esh esh -abI +lvC mEt fgn bGA @@ -81804,9 +102654,9 @@ itG itG kkC bsP +eSs mma -mma -mma +eSs bsP hzt iew @@ -81816,7 +102666,7 @@ hiY eAy hiY can -bLQ +ksx iYU vXf bLQ @@ -81830,23 +102680,23 @@ cIM hev eHe eHe -ygP +gcR lzW dbj dbj -hXr -hXr +fNX +fNX dbj lzW rgS pdy pdy -pdy -pdy -pdy -pdy -pdy -pdy +vqy +oES +xUZ +wqU +qSa +teJ dVw cHW cHW @@ -81869,29 +102719,32 @@ pUz bSJ tZm ftl +hCs "} (116,1,2) = {" -ead -ead -ead -ead -ead -cIq -ead -aea -iOH -nmm -iiB -iiB +hCs +bzC +bzC +bzC +bzC +bzC +bzC +bzC +bzC +adZ +pBz +pBz +cHW +lzJ ajO ajI -bpU +bvH mBF -yhs -yhs -vZO -ajB -iOH +wFv +kWd +juA +aOp +iry iOH iOH klo @@ -81920,7 +102773,7 @@ xsl lyM fkg xsl -sip +kvZ sip rXR sdm @@ -81963,7 +102816,7 @@ bGA gkY itG bsP -bsP +mRj kkC bsP mma @@ -81996,23 +102849,23 @@ eHe tve ybL eJn -hXr -hXr +fNX +fNX afa lzW rgS rgS rgS -pdy -pdy -pdy -pdy -pdy -pdy +sVv +pZj +wqU +oES +nUU +xRx dVw +aOp cHW -cHW -mxU +mnf agk pem mxU @@ -82031,39 +102884,42 @@ vCA eKM tZm ftl +hCs "} (117,1,2) = {" -ead -ead -ead -ead -ead -cjq -rED -iOH -iOH -nmm +hCs +bzC +bzC +bzC +bzC +bzC +bzC +sdn +atp +pBz +pBz +ybn ajS -iiB -tpq -yhs +kRb +aib +kWZ aHj -vZO +ksB ajL -iiB -iiB -iiB -iOH +uzG +uZx +lzJ +iry iOH nmm -rED -rED +dNB +mHc iOH iOH -rED +dJL iOH qSP -iOH +nmm dkY dkY bsP @@ -82112,7 +102968,7 @@ itG itG itG itG -uLQ +kEK uLQ itG bpB @@ -82125,13 +102981,13 @@ bGA pYl itG kkC -bsP wqi bsP +bsP mma mma bsP -wqi +bsP kkC iew luF @@ -82144,7 +103000,7 @@ msM xnt hiY hiY -msM +mJv xUc hrg bZt @@ -82158,26 +103014,26 @@ eHe tve iZm kxh -nxD -hXr +rPt +fNX cHQ tve tve tve tve -pdy -pdy -pdy -pdy -pdy -iHY +nBP +tNt +hJB +tKj +cSS +oEC dVw lzJ -cHW -mxU +pPC +wRd agk mxU -xGW +lIb xGW xGW kCi @@ -82193,36 +103049,39 @@ vCA vCA tZm ftl +hCs "} (118,1,2) = {" -ead -ead -ead -rED -rED -cjq -iOH -iOH -iOH -iOH -iOH -iiB -iiB -iiB +hCs +bzC +bzC +bzC +bzC +hHl +nIU +fZo +apU +apU +apU +nvc +qTd +xKw +qTd +mAa fvf -iiB +deL ajC -iiB -iiB -iOH -iOH +cHW +uFJ +kRb +vUN iOH nmm -rED -rED +pJE +dNB iOH wHd -rED +qci iOH dkY dkY @@ -82239,7 +103098,7 @@ bsP bsP bsP lLB -lLB +jRo lLB lLB cOE @@ -82267,7 +103126,7 @@ vlo sip xsl xsl -sip +wOk sip aoO gdL @@ -82287,7 +103146,7 @@ itG itG itG bsP -bsP +iJA hzt bsP mma @@ -82320,21 +103179,21 @@ eHe tve vHI wGR -nxD -hXr +rPt +fNX lJM lzW rgS rgS wEQ -pdy -pdy -pdy -pdy -kbg +tKj +slS +cKc +aVk +xdN kWZ ksB -cHW +ahk fxj mxU agk @@ -82348,42 +103207,45 @@ xuM lJs wsA oxx -unM +tZm wOV wOV wOV tZm tZm ftl +hCs "} (119,1,2) = {" -ead -rED -rED -rED -rED -cjq -rED -iOH -iOH -qzh -iOH -fXi -ajP -fXi -fvf -iiB -iiB -iiB +hCs +bzC +bzC +jVH +jVH +vRr +atp +mfi +vRr +pBz +pBz +sUs +pBz +vRr +hnk +kRb +oxO +kRb +cKQ +cKQ ajF +kRb +iry iOH iOH -iOH -iOH -iOH +iPf rED iOH -rED +dNB iOH iOH iOH @@ -82392,12 +103254,12 @@ dkY bsP bsP bsP -lLB +jRo lLB lLB bsP lLB -lLB +jRo bsP bsP lLB @@ -82451,7 +103313,7 @@ itG itG bsP bsP -mma +eSs mma mma bsP @@ -82476,34 +103338,34 @@ rqM bZt cIM hev -ygP +gcR eHe eHe lzW fzA pmI afc -hXr +fNX uKt lzW rgS pdy pdy +xBr +uwE pdy -pdy -pdy -kbg -ksB -cHW +bbl +hsS cHW cHW +rUO mxU lMz agk mxU xGW mxU -xGW +lIb kCi wfb rHs @@ -82517,36 +103379,39 @@ nEG tZm ftl ftl +hCs "} (120,1,2) = {" -ead -rED -rED -rED -rED +hCs +bzC +bzC +gly +atp +uhn +vRr +jxu +vRr +atp +pBz +pBz +vRr +atp +vRr +atp cjq -wHd -rED -iOH -iOH -iOH -wHd -rED -fXi -fZo -fXi -fXi -iiB -iOH -iOH -ama -iOH +vRr +kRb +lzJ +kRb +pBz +aah iOH iOH iOH iOH iOH iOH +rED iOH dkY dkY @@ -82557,15 +103422,15 @@ bsP lLB bsP lLB -lLB +jRo lLB lLB eRu -lLB +jRo bsP bsP bsP -lLB +jRo lLB nJh coD @@ -82616,7 +103481,7 @@ mma mma bsP mma -mma +eSs bsP bsP iew @@ -82639,24 +103504,24 @@ bZt isM aaa aaa -ygP +gcR eHe lzW fzA ipE -hXr -hXr +fNX +fNX dbj lzW rgS rgS rgS +hnO kWZ -kWZ -kWZ -ksB -cHW -cHW +ffD +fRX +eNV +aOp mxU mxU mxU @@ -82672,43 +103537,46 @@ rHs rHs rHs rHs -unM +tZm tZm tZm tZm tZm ftl ftl +hCs "} (121,1,2) = {" -ead -rED -nmm -rED +hCs +bzC +bzC +atp +ybn +uhn wki sjx iSq -rED -rED -iOH -iOH -rED -rED +vRr +vRr +vRr +pBz +vRr +uhn wki sjx iSq -fXi -ajJ -iOH -ead +atp +kRb +pBz ead -qzh +aFg +rDv iOH iOH klo jAI hRw -hRw +rMv hRw yfb qSP @@ -82716,6 +103584,7 @@ qSP bsP bsP hzt +lLB bsP bsP bsP @@ -82723,8 +103592,7 @@ bsP bsP bsP bsP -bsP -bsP +foo kkC bsP bsP @@ -82735,8 +103603,8 @@ sip lfE sdm pEa -eqJ -oyE +kNe +mCF ftw glr aBv @@ -82806,21 +103674,21 @@ eHe tve oUy dHd -hXr -hXr +fNX +fNX wEX tve tve fzA +rUO +uFJ cHW -cHW -cHW -cHW +vQw cHW cHW fxj chE -mxU +bKG tWS tWS lMz @@ -82841,27 +103709,30 @@ agk ftl ftl ftl +hCs "} (122,1,2) = {" -ead -iOH -nmm -rED +hCs +bzC +bzC +pBz +ybn +vRr cio iVW dQa -rED +uhn nlt kMe kMe nlt -rED +vRr cio iVW dQa -rED -rED -iOH +uhn +atp +uaY ead ead oTM @@ -82869,9 +103740,9 @@ ead klo klo qzh +rED iOH -iOH -iOH +rED ihO pCS bsP @@ -82890,29 +103761,29 @@ gDb gDb aad bsP -lLB +jRo nJh aHH sHm xsl xsl -ons -ons -ons +gEt +gEt +gEt xsl xsl xsl xsl xsl -ons +gEt xsl -ons +gEt xsl -ons +gEt xsl -ons +gEt xsl -ons +gEt xsl xsl mXK @@ -82968,8 +103839,8 @@ eHe tve iZm kxh -hXr -hXr +fNX +fNX eHl tve fxj @@ -82978,8 +103849,8 @@ mxU mxU mxU cHW +rUO lzJ -cHW mxU mxU lQG @@ -83003,43 +103874,46 @@ agk ftl ftl ftl +hCs "} (123,1,2) = {" -ead -ead -iOH -rED -xTI +hCs +bzC +bzC +bzC +pBz +fYf +qkH goq hka -rED +vRr nlt agr hnV -nlt -rED +dMe +vRr xTI goq hka -rED -rED +vRr +tqj ead ead ead oTM +ouL iOH iOH iOH iOH -iOH -iOH +rED iOH jqu bsP +lLB +lLB bsP -bsP -bsP -bsP +lLB bsP gDb dLt @@ -83126,16 +104000,16 @@ cIM hev eHe eHe -ygP +gcR tve vHI wGR -hXr -hXr +fNX +fNX vHo lzW -fxj mxU +smA mxU fxj mxU @@ -83145,7 +104019,7 @@ mxU mxU fxj fxj -wfb +uvF hbS hhn mxU @@ -83165,42 +104039,45 @@ agk ftl ftl ftl +hCs "} (124,1,2) = {" -ead -ead -ead -rED -rED -rED -rED -rED +hCs +bzC +bzC +bzC +bzC +atp +uhn +uhn +vRr +vRr ahq tUL tUL ahq -rED -rED -rED -rED -rED -rED +vRr +vRr +uhn +vRr +atp +uhn ead ead oTM -hRw -cmX -iOH +mfz iOH iOH iOH iOH +rED iOH +dNB ajw -bsP -bsP lLB +bsP lLB +jRo bsP bsP gDb @@ -83212,7 +104089,7 @@ kgF qXe xoA xoA -gDb +rMN lLB bsP aoO @@ -83250,8 +104127,8 @@ bsP bsP fvC cjJ -hQh -hQh +cjJ +cjJ nCq nCq nCq @@ -83292,8 +104169,8 @@ ygP lzW fzA hiT -hXr -hXr +fNX +fNX vHo lzW fxj @@ -83327,30 +104204,33 @@ agk ftl ftl ftl +hCs "} (125,1,2) = {" -ead -ead -klo -iOH -iOH -iOH -rED -rED +hCs +bzC +bzC +bzC +kCV +pBz +atp +pBz +atp +fPH nlt tUL okB nlt -iOH -iOH -iOH -rED -rED -wHd +ybn +pBz +pBz +atp +uhn +vRr ead ead oTM -iOH +aKk iOH iOH iOH @@ -83375,7 +104255,7 @@ duG xoA xoA gDb -lLB +jRo bsP aoO aoO @@ -83454,32 +104334,32 @@ eHe lzW fzA ipE -hXr -hXr +fNX +fNX aEe tve +bKG mxU mxU -mxU -wfb +uvF jBW lMz -mxU +vaz mxU mxU wfb mxU -wfb +uvF wfb dEa mxU xGW mxU -xGW +lIb kCi -wfb -wfb -wfb +agi +agi +rEF agk agk agk @@ -83489,12 +104369,15 @@ nda nda nda nda +hCs "} (126,1,2) = {" +hCs +ead ead klo klo -iOH +dNB iOH nlt nlt @@ -83507,25 +104390,25 @@ nlt nlt nlt nlt -iOH +rED iOH klo -iOH -hRw +ead +jmi iOH iOH iOH iOH +dNB rED -rED -rED +dNB iOH ihO pCS kkC bsP bsP -bsP +lLB bsP gDb ajA @@ -83539,7 +104422,7 @@ tKy gDb bsP bsP -lLB +jRo aoO rnH rnH @@ -83604,7 +104487,7 @@ nUB nUB bLQ iYU -glq +jJU hrg bZt bZt @@ -83616,8 +104499,8 @@ eHe tve oUy hQi -hXr -hXr +fNX +fNX pJc lzW fxj @@ -83629,10 +104512,10 @@ lMz lMz lMz agk +uvF wfb wfb -wfb -wfb +uvF kCi fxj xGW @@ -83651,13 +104534,16 @@ nda nda nda nda +hCs "} (127,1,2) = {" +hCs +ead klo klo iOH iOH -iOH +dNB nlt kUr ljK @@ -83670,7 +104556,7 @@ nAK lCC nlt iOH -iOH +dNB klo klo jAI @@ -83679,7 +104565,7 @@ iOH iOH nmm rED -rED +dNB iOH iOH yfb @@ -83687,7 +104573,7 @@ qSP dkY kkC bsP -bsP +jRo bsP gDb agf @@ -83701,12 +104587,12 @@ dLt gDb bsP lLB -gcZ +gse rEN uzD uzD rEN -xpu +czw mma mma mma @@ -83739,7 +104625,7 @@ bsP bsP bsP nCq -bsP +uWN jXE bsP bsP @@ -83754,7 +104640,7 @@ bsP kgg iew iew -eYt +yfD ppD iYL lsy @@ -83772,14 +104658,14 @@ lVg lVg gTK hev -ygP +gcR eHe eHe tve iZm kxh -hXr -hXr +fNX +fNX afa lzW mxU @@ -83802,7 +104688,7 @@ xny mxU mxU mxU -wfb +uvF agk agk agk @@ -83813,12 +104699,15 @@ nda nda nda nda +hCs "} (128,1,2) = {" +hCs +ead klo -iOH -iOH -iOH +bxg +nRs +rED iOH kMe bgm @@ -83831,7 +104720,7 @@ hsh htW tae kMe -iOH +rED iOH klo klo @@ -83850,8 +104739,8 @@ dkY dkY bsP bsP -bsP -gDb +lLB +rMN cKf xoA adL @@ -83868,7 +104757,7 @@ rEN uzD uzD rEN -xpu +kET mma mma mma @@ -83891,8 +104780,8 @@ mma mma mma bsP -bsP -bsP +lrH +wPy bsP dkY foL @@ -83926,25 +104815,25 @@ hiY vXf vXf hiY -xUc +fHt cRi iew iew +blJ rWW -rWW -rWW +fah aaa aaa -ygP +gcR eHe tve lHt vxM -hXr -hXr +fNX +fNX tve tve -wfb +uvF fxj mxU wfb @@ -83962,9 +104851,9 @@ mxU xGW xny mxU -mxU -lQG -wfb +bnX +jAE +gYx nda nda nda @@ -83975,13 +104864,16 @@ nda nda nda nda +hCs "} (129,1,2) = {" +hCs +ead klo nmm qzh iOH -iOH +rED kMe hCj hCj @@ -83993,9 +104885,9 @@ hsh htW htW kMe -iOH -iOH +dNB rED +dNB klo klo jAI @@ -84052,7 +104944,7 @@ bsP mma buw mma -mma +eSs bsP bsP bsP @@ -84091,25 +104983,25 @@ eAy xUc msM hrg -hev -sQZ -sQZ +hGB +xJe sQZ -hbF -ygP +eWj +upo +gcR eHe eHe -tve -dbj +tJD +koP dbj -hXr -hXr +fNX +fNX tve pNj fzo mxU mxU -wfb +uvF mxU lMz lMz @@ -84126,7 +105018,7 @@ xGW mxU fxj mnf -wfb +uvF nda nda nda @@ -84137,13 +105029,16 @@ nda nda nda nda +hCs "} (130,1,2) = {" +hCs +ead klo nmm -iOH -iOH -iOH +bDU +dNB +rED nlt rDP gRy @@ -84155,17 +105050,17 @@ rqa tUL okB nlt -iOH -iOH rED +iOH rED +dNB klo klo klo iOH iOH iOH -iOH +rED iOH dkY dkY @@ -84191,7 +105086,7 @@ iOD wEH sXi sXi -rNQ +tBE iOD tMP tMP @@ -84220,7 +105115,6 @@ bsP bsP bsP bsP -wqi bsP bsP bsP @@ -84230,7 +105124,8 @@ bsP bsP bsP bsP -mma +bsP +eSs mma mma mma @@ -84242,8 +105137,8 @@ kkC iew sGY wvl -wvl -abw +iew +uag xUc mSo mSo @@ -84254,7 +105149,7 @@ xUc xUc hrg hev -ygP +eHe sQZ eHe sQZ @@ -84264,11 +105159,11 @@ eHe tve wPT dbj -hXr -hXr +fNX +fNX tve pNj -eAl +xhF fzo mxU fxj @@ -84288,7 +105183,7 @@ xGW aar fxj fxj -wfb +uvF nda nda nda @@ -84299,13 +105194,16 @@ nda nda nda nda +hCs "} (131,1,2) = {" +hCs +ead klo klo nmm iOH -iOH +dNB nlt nlt nlt @@ -84319,7 +105217,7 @@ okB nlt iOH iOH -rED +dNB klo klo klo @@ -84327,7 +105225,7 @@ klo aZO exa iOH -iOH +dNB aZO dkY dkY @@ -84379,13 +105277,13 @@ buw bsP mma mma -mma +eSs mma mma mma bsP bsP -mma +eSs mma mma bsP @@ -84396,13 +105294,13 @@ mma mma mma mma -mma +eSs bsP bsP bsP bsP iew -wvl +jSQ wvl wvl abw @@ -84420,7 +105318,7 @@ eHe sQZ eHe eHe -sQZ +aeU eHe eHe tve @@ -84434,15 +105332,15 @@ pNj pNj mxU mxU -wfb +uvF lDQ pNj pNj nda -ygP -ygP -eHe -eHe +gcR +gcR +eBd +rkD eHe eHe xGW @@ -84461,12 +105359,15 @@ nda nda nda nda +hCs "} (132,1,2) = {" +hCs +ead ead klo klo -iOH +dNB iOH nlt qJx @@ -84480,7 +105381,7 @@ tUL tUL kMe iOH -iOH +dNB qzh klo klo @@ -84491,7 +105392,7 @@ dGl rED iOH iOH -dkY +obF dkY dkY dkY @@ -84550,7 +105451,7 @@ bsP bsP mma mma -mma +eSs mma mma mma @@ -84564,7 +105465,7 @@ bsP bsP bsP iew -abD +wvl wvl wvl abw @@ -84603,11 +105504,11 @@ pNj pNj nda nda -ygP -eHe +fYk +kKR bGy bGy -xGW +lIb mxU xGW eHe @@ -84623,13 +105524,16 @@ nda nda nda nda +hCs "} (133,1,2) = {" +hCs +ead ead ead klo ead -iOH +jLG nlt uws ags @@ -84644,17 +105548,17 @@ kMe iOH iOH iOH -iOH +xqT klo klo iOH iOH -rED +dNB rED dGl ama -dkY -dkY +obF +obF dkY dkY dkY @@ -84695,18 +105599,18 @@ rKN ucx acl uzD -abe +uzD aOT kxL mma mma bsP -afK -mma +vma mma mma mma mma +eSs mma bsP bsP @@ -84714,8 +105618,8 @@ bsP mma mma mma -mma -bsP +eSs +pkF bsP bsP mma @@ -84726,28 +105630,28 @@ bsP kkC bsP iew +npB wvl -wvl -hFJ +hjJ abw xUc mSo mSo yfM xUc -eAy +hiY msM okQ iew eHe eHe sQZ -sQZ +aeU eHe sQZ sQZ -xAA eHe +gdK bGy eHe sQZ @@ -84765,10 +105669,10 @@ pNj pNj pNj nda -ygP -ygP +gcR +gcR bGy -xAA +eHe eHe eHe eHe @@ -84779,32 +105683,35 @@ nda nda pNj nda +wwR nda nda nda +wwR nda -nda -nda +hCs "} (134,1,2) = {" +hCs ead ead ead ead -iOH +ead +dNB nlt hpm hCj hCj hCj -hpm +hEa nlt phh tUL fTI nlt iOH -iOH +rED iOH iOH iOH @@ -84815,9 +105722,9 @@ iOH rED dGl iOH -dkY -dkY -dkY +obF +obF +obF dkY dkY tMP @@ -84877,7 +105784,7 @@ bsP bsP bsP bsP -wqi +wPy bFp bsP mma @@ -84890,11 +105797,11 @@ kkC iew qty wvl -wvl +hFJ abx nUB qBE -nUB +eoY qBE nUB vXf @@ -84910,24 +105817,24 @@ sQZ sQZ eHe ePL -eHe +aFE eHe sQZ -sQZ +aeU eHe pNj wPV bcZ -ygP +gcR bGy -ktt eHe +wFc rNg pNj pNj pNj pNj -ygP +gcR eHe doX eHe @@ -84947,8 +105854,11 @@ wwR wwR wwR wwR +hCs "} (135,1,2) = {" +hCs +ead ead ead ead @@ -84965,10 +105875,10 @@ nlt sqS ahs nlt -iOH -iOH -iOH -iOH +rED +cyg +qxK +sGp iOH vvA iOH @@ -84977,9 +105887,9 @@ iOH iOH cmX iOH -dkY -dkY -dkY +obF +obF +obF dkY dkY tMP @@ -85050,9 +105960,9 @@ bsP hzt bsP iew -npB -wvl wvl +jqK +hFJ abx nUB nUB @@ -85069,7 +105979,7 @@ eHe sQZ sQZ sQZ -sQZ +aeU eHe eHe eHe @@ -85084,7 +105994,7 @@ bGy bGy ePL eHe -eHe +ktt bGy wPV wPV @@ -85109,26 +106019,29 @@ gXy gXy gXy wwR +hCs "} (136,1,2) = {" +hCs +ead ead ead ead ead ead -iOH nmm +qzh iOH iOH iOH iOH -iOH -rED +dNB +gwr rED rED rED iOH -iOH +rED iOH eQz iOH @@ -85138,9 +106051,9 @@ iOH iOH iOH aZO -dkY -dkY -dkY +obF +obF +obF dkY dkY dkY @@ -85160,7 +106073,7 @@ tMP tMP tMP iOD -ppm +wgG sXi sXi ppm @@ -85183,7 +106096,7 @@ tMP aIL uzD rEN -eTO +abH mma mma mma @@ -85203,7 +106116,7 @@ jym bsP cOE bsP -mma +eSs mma buw mma @@ -85212,16 +106125,16 @@ bsP bsP bsP iew +qdc wvl -wvl -wvl +bRE abw xUc mSo mSo yfM xUc -eAy +hiY xUc xUc hrg @@ -85236,7 +106149,7 @@ eHe eHe sQZ eHe -sQZ +aeU eHe eHe eHe @@ -85263,7 +106176,7 @@ sQZ eHe eHe eHe -hvd +law gXy gXy gXy @@ -85271,14 +106184,17 @@ gXy gXy gXy hvd +hCs "} (137,1,2) = {" +hCs ead ead ead ead ead ead +klo nmm iOH iOH @@ -85289,25 +106205,25 @@ rED rED rED rED -iOH +dNB qzh iOH iOH iOH jKT ftM -iiB +ciy iOH dGl rED +obF +obF +obF dkY dkY dkY dkY obF -dkY -dkY -obF obF hzt bsP @@ -85340,15 +106256,15 @@ cOE bsP hun mma -mma +gqH xCR rEN uzD rEN -eTO -mma +gcZ mma mma +hiJ buw mma mma @@ -85364,12 +106280,12 @@ gSW iyf bsP bsP -mma +edq mma bsP mma mma -mma +eSs bsP bsP iew @@ -85388,15 +106304,15 @@ msM xUc hrg hev -aUO -obo -wZh -sQZ +aFl +jja +alq +aeU eHe sQZ eHe eHe -sQZ +aeU eHe eHe eHe @@ -85422,7 +106338,7 @@ sQZ sQZ eHe eHe -sQZ +aeU sQZ sQZ hvd @@ -85433,27 +106349,30 @@ xMb xMb xMb hvd +hCs "} (138,1,2) = {" +hCs ead ead ead ead ead -ead -ead -iOH -iOH -iOH +klo +klo +klo +dNB iOH iOH +dNB +rED rED rED rED rED iOH +dNB iOH -cmX iOH iOH iiB @@ -85461,34 +106380,34 @@ wuu iiB iOH rED -rED -dkY +dNB +obF +obF dkY dkY dkY obF obF obF -obF -bsP +foo bsP bsP kkC kkC bsP -bsP -bsP +lLB +jRo hzt +lLB bsP -bsP -bsP -bsP -gcZ +jRo +lLB +gse rEN uzD uzD rEN -xpu +czw mma mma mma @@ -85503,17 +106422,17 @@ mma mma buw buw -xCR +fga rEN uzD aOT dxf -mma +eSs mma buw mma mma -mma +eSs mma cFD aeo @@ -85550,9 +106469,9 @@ msM msM hrg hev -cvw -sdD -jdB +lDQ +eAl +gFp eHe sQZ uCR @@ -85561,7 +106480,7 @@ eHe sQZ aaq eHe -eHe +uwk eHe pNj pNj @@ -85573,7 +106492,7 @@ eHe eHe eHe eHe -sQZ +aeU eHe sQZ sQZ @@ -85595,23 +106514,26 @@ xMb xMb xMb hvd +hCs "} (139,1,2) = {" +hCs ead ead ead ead ead ead -ead +klo +klo rED ama +dNB iOH -iOH -iOH +dNB iOH rED -rED +gwr qcy rED iOH @@ -85619,12 +106541,12 @@ iOH iOH jfH iiB -ftM -iiB +caG +eCO iOH -rED -dkY -dkY +dNB +obF +obF dkY dkY dkY @@ -85639,18 +106561,18 @@ kkC kkC cOE bsP +lLB bsP +hbL +jRo bsP -bsP -bsP -bsP -bsP -gcZ +lLB +sQP rEN uzD uzD rEN -xpu +kET mma mma buw @@ -85662,7 +106584,7 @@ mma mma mma mma -mma +cBe mma rgr uyh @@ -85674,7 +106596,7 @@ bsP mma buw mma -mma +ogX bsP jym jym @@ -85700,8 +106622,8 @@ iew sif wvl wvl -wvl -abw +iew +eTX msM mSo mSo @@ -85712,25 +106634,25 @@ msM msM iew mRp -qDB -sdD -jdB +rNg +eAl +gFp eHe sQZ uCR sQZ eHe -sQZ -eHe +aeU eHe -xAA +sKZ +gyv eHe eHe eHe eHe eHe eHe -sQZ +aeU sQZ sQZ sQZ @@ -85748,7 +106670,7 @@ sQZ sQZ eHe sQZ -sQZ +aeU hvd xMb xMb @@ -85757,31 +106679,34 @@ xMb xMb xMb hvd +hCs "} (140,1,2) = {" +hCs rEu rEu rEu rEu rEu -rEu -rEu -rED +aik +aik +aik +dNB +dNB +gwW rED iOH -iOH -iOH -iOH +oPD vvA rED qcy -rED +dNB iOH iOH dGl snt uzA -ftM +kRE exa iOH iOH @@ -85790,14 +106715,14 @@ dkY dkY dkY dkY -obF +dkY obF obF obF obF kkC bsP -bsP +hbL bsP bsP bsP @@ -85823,7 +106748,7 @@ bsP bsP hzt bsP -bsP +gTo wqi nhq kuu @@ -85836,7 +106761,7 @@ bsP mma buw mma -mma +eSs bsP jym sGI @@ -85849,12 +106774,12 @@ qDM olG cFD mma -mma +eSs bsP mma mma bsP -mma +eSs mma mma bsP @@ -85875,10 +106800,10 @@ iew iew eHe eHe -qDB -iOR +rNg +oDz eHe -sQZ +aeU eHe sQZ eHe @@ -85893,7 +106818,7 @@ sQZ sQZ eHe sQZ -sQZ +aeU sQZ sQZ sQZ @@ -85919,28 +106844,31 @@ gXy gXy gXy hvd +hCs "} (141,1,2) = {" +hCs rEu rEu rEu rEu rEu rEu -rEu -rEu -rED +aik +aik +aik +dNB rED iOH -iOH +sKt cmX iOH rED -rED +gwr rED iOH aZO -lmv +nPv snt uzA ftM @@ -85987,7 +106915,7 @@ dkY bsP kgg bsP -gNu +gUE kEa qCz ryc @@ -86012,13 +106940,13 @@ qlF iyf kgg bsP +vRA +bfY +irM +ujy bsP mma -mma -bsP -bsP -mma -mma +eSs bsP kkC iew @@ -86047,7 +106975,7 @@ sQZ sQZ sQZ eHe -sQZ +aeU sQZ uCR uCR @@ -86059,7 +106987,7 @@ sQZ eHe eHe eHe -xAA +eHe eHe eHe eHe @@ -86081,8 +107009,10 @@ gXy gXy gXy wwR +hCs "} (142,1,2) = {" +hCs rEu rEu rEu @@ -86090,9 +107020,10 @@ rEu rEu rEu rEu -rEu -rED -rED +aik +aik +dNB +dNB iOH iOH iOH @@ -86100,9 +107031,9 @@ iOH rED rED rED -rED +dNB iOH -iiB +ciy gxQ iiB dGl @@ -86115,7 +107046,7 @@ dkY dkY dkY obF -iOH +sJR iOH dkY dkY @@ -86123,7 +107054,7 @@ dkY dkY dkY dkY -bsP +hbL hzt kkC kkC @@ -86149,14 +107080,14 @@ dkY dkY bsP bsP -gNu +wFe krx qCz qCz qCz nXc dxf -wqi +bsP mma mma mma @@ -86175,8 +107106,8 @@ jym jym jym hyJ -abH -abH +qai +pka meY bsP mma @@ -86196,15 +107127,15 @@ bsP eHe eHe eHe -xAA eHe +eHe +aeU sQZ sQZ sQZ sQZ sQZ -sQZ -sQZ +aeU sQZ sQZ sQZ @@ -86243,8 +107174,10 @@ wwR wwR wwR wwR +hCs "} (143,1,2) = {" +hCs rEu rEu rEu @@ -86253,18 +107186,19 @@ rEu rEu rEu rEu -ead +aik klo klo iOH iOH +iOH qzh +dNB rED rED -rED -rED +dNB iOH -iiB +hbW uJs iOH iOH @@ -86273,7 +107207,7 @@ dkY dkY dkY dkY -iOH +sJR iOH iOH iOH @@ -86281,7 +107215,7 @@ dNB iOH klo klo -iOH +sJR iOH dkY dkY @@ -86298,7 +107232,7 @@ dNB iOH iOH iOH -iOH +cLk dkY dkY dkY @@ -86316,7 +107250,7 @@ ran tUv acj ran -gnz +wEG aag bsP mma @@ -86327,7 +107261,7 @@ upE wFi vwP iLO -wJm +bmd uNA oTJ lVJ @@ -86363,16 +107297,16 @@ sQZ sQZ sQZ sQZ -sQZ +loH eHe eHe eHe eHe +aeU sQZ sQZ sQZ -sQZ -sQZ +aeU eHe eHe eHe @@ -86394,19 +107328,22 @@ eHe eHe sQZ uCR -sQZ +aeU bGy bGy eHe -eHe -eHe pNj +wwR pNj pNj pNj +wwR pNj +hCs "} (144,1,2) = {" +hCs +rEu rEu rEu rEu @@ -86436,15 +107373,15 @@ qSP nmm nmm iOH +mEv iOH -iOH -rED rED rED +dNB iOH iOH iOH -rED +dNB iOH ama iOH @@ -86462,7 +107399,7 @@ iOH iOH iOH iOH -iOH +sJR nmm nmm nmm @@ -86486,7 +107423,7 @@ mma mma bsP upE -wJm +bmd iLO iLO iLO @@ -86503,28 +107440,28 @@ uzD aOT dxf mma -mma +eSs bsP mma bsP bsP bsP -mma +eSs mma mma bsP bsP -mma +eSs mma mma sQZ sQZ -sQZ +aeU sQZ sQZ eHe eHe -sQZ +aeU eHe eHe uCR @@ -86532,7 +107469,7 @@ uCR sQZ sQZ sQZ -sQZ +aeU eHe eHe bGy @@ -86546,29 +107483,32 @@ sQZ mgC tAv mGB -kcL +won tuZ qjE aeG fUt iQV sQZ -sQZ +aeU sQZ uCR eHe eHe eHe ePL -eHe -ygP pNj pNj pNj pNj pNj +pNj +pNj +hCs "} (145,1,2) = {" +hCs +rEu rEu rEu rEu @@ -86579,8 +107519,8 @@ rEu rEu ead ead -sYm -gfq +mZL +nzt iiB iOH iOH @@ -86590,16 +107530,16 @@ qcy iOH iOH iOH -rED +dNB dGl dGl hRw hRw nmm nmm -iOH -iOH -iOH +dkr +lbl +tDA qzh iOH iOH @@ -86614,7 +107554,7 @@ iOH iOH iOH iOH -rED +dNB rED dNB iOH @@ -86627,7 +107567,7 @@ iOH iOH iOH iOH -iOH +fad iOH iOH rED @@ -86648,7 +107588,7 @@ mma mma bsP upE -wJm +bmd hzC hzC iLO @@ -86688,21 +107628,21 @@ eHe sQZ eHe eHe -sQZ +aeU sQZ sQZ sQZ sQZ sQZ eHe -xAA +eHe ePL eHe pNj bGy eHe -sQZ -sQZ +aeU +oDU eHe sQZ mgC @@ -86721,16 +107661,18 @@ sQZ eHe sQZ eHe -eHe +rkD bGy aFl -eAl pNj pNj pNj pNj +pNj +hCs "} (146,1,2) = {" +hCs rEu rEu rEu @@ -86740,23 +107682,24 @@ rEu rEu rEu rEu -gXs -gXs +rEu +uYB +gal aIc -gfq +jJx iiB iOH -rED +dNB rED dLs aZO iOH rED -rED +dNB iOH rqz hRw -cmX +iOH eQz iOH iOH @@ -86778,17 +107721,17 @@ iOH nmm nmm iOH -cmX iOH iOH iOH +sJR klo klo iOH iOH -iOH -iOH -iOH +fad +fad +fad hRw jAI klo @@ -86822,7 +107765,7 @@ jym jym jym jym -oqM +kRG uzD aOT dxf @@ -86837,18 +107780,18 @@ buw mma mma mma -mma +eSs bsP bsP bsP -sQZ +aeU sQZ sQZ sQZ sQZ sQZ eHe -sQZ +aeU eHe sQZ sQZ @@ -86881,18 +107824,20 @@ sQZ sQZ eHe sQZ -sQZ +aeU ktt xAA -ygP +amo lDQ eAl wPV pNj pNj pNj +hCs "} (147,1,2) = {" +hCs rEu rEu rEu @@ -86901,19 +107846,20 @@ rEu rEu rEu rEu -jTj -gXs -gXs -gXs -aIc -gfq +rEu +kbI +iHf +gal +gal +kPK +jJx iOH iOH rED qcy -cmX iOH -rED +iOH +dNB rED iOH exa @@ -86941,7 +107887,7 @@ nmm iOH iOH iOH -iOH +qxK iOH jAI klo @@ -86949,11 +107895,11 @@ rED iOH iOH iOH -iOH +fad hRw hRw iOH -iOH +cLk klo iOH klo @@ -86969,7 +107915,7 @@ bsP mma buw mma -mma +eSs bsP upE iLO @@ -86981,7 +107927,7 @@ oTJ iUA aeg iAI -gWX +ukQ rdV upE uzD @@ -86989,7 +107935,7 @@ uzD aOT dxf bsP -mma +eSs mma mma bsP @@ -87007,7 +107953,7 @@ eHe eHe eHe eHe -sQZ +aeU sQZ sQZ sQZ @@ -87023,10 +107969,10 @@ pNj eHe eHe aFl -boE +eAl oDz eHe -sQZ +aeU sQZ sQZ eZo @@ -87039,22 +107985,24 @@ jwZ twf eZo eHe -sQZ +aeU sQZ eHe sQZ sQZ eHe -eHe -ygP +gSD +gcR rNg eAl wPV pNj pNj pNj +hCs "} (148,1,2) = {" +hCs rEu rEu rEu @@ -87063,20 +108011,21 @@ rEu rEu rEu rEu -gXs -gXs +rEu +jTj +gal kpO rEu rEu aIc -fad +gfq iOH rED rED iOH iOH rED -rED +dNB iOH iOH hRw @@ -87091,7 +108040,7 @@ rED dNB iOH iOH -iOH +sJR nmm nmm iOH @@ -87103,7 +108052,7 @@ iOH iOH iOH iOH -iOH +cOt hRw jAI dNB @@ -87158,13 +108107,13 @@ mma gob bFp bsP -esx -daO -daO -daO +cmk +bBc +bBc +bBc mvM lLB -lLB +jRo eHe eHe eHe @@ -87174,25 +108123,25 @@ sQZ sQZ sQZ sQZ -sQZ +aeU doX eHe eHe sQZ sQZ -sQZ +aeU eHe eHe aFl +eAl gFp -ygP -ygP +gcR eHe eHe sQZ sQZ mgC -nEV +dbH mNB fWC uGr @@ -87204,19 +108153,21 @@ sQZ sQZ sQZ sQZ -sQZ +aeU eHe eHe bGy eHe -eHe +wFc rNg wPV pNj pNj pNj +hCs "} (149,1,2) = {" +hCs rEu rEu rEu @@ -87225,13 +108176,14 @@ rEu rEu rEu rEu -gXs -gXs +rEu +yhV +gal wbb rEu rEu rEu -iZT +oQQ iOH rED rED @@ -87243,10 +108195,10 @@ iOH iOH hRw iOH -rED +dNB iOH iOH -rED +dNB klo klo klo @@ -87255,14 +108207,14 @@ dNB iOH iOH iOH -cmX +tSY iOH iOH iOH iOH klo klo -iOH +fBc klo qzh iOH @@ -87271,7 +108223,7 @@ rED dNB dNB dNB -iOH +cLk klo jAI iOH @@ -87280,11 +108232,11 @@ iOH iOH iOH iOH -iOH -wHd +ufN +gOR rED ran -rLM +uLr ery tQU hCt @@ -87299,7 +108251,7 @@ upE iLO tMT mDI -wJm +bmd lPO oTJ wfa @@ -87314,17 +108266,17 @@ aOT dxf bsP mma -mma +eSs bsP mma bsP bsP bsP -gTo -hQh -hQh -hQh -hQh +dHG +ndU +ndU +ndU +ndU mvM dkY pNj @@ -87347,11 +108299,11 @@ sQZ sQZ qDB eAl -alq +gFp eHe dYj eHe -sQZ +aeU sQZ mgC nEV @@ -87373,12 +108325,15 @@ bGy ktt eHe bcZ -ygP +gcR pNj pNj pNj +hCs "} (150,1,2) = {" +hCs +rEu rEu rEu rEu @@ -87388,11 +108343,11 @@ rEu rEu rEu fxW -gXs -gXs +gal +jmn rEu rEu -aiN +cKR aiM ahQ ail @@ -87406,9 +108361,9 @@ ahQ iJY rEu rED -rED -rED -rED +dNB +dNB +pJE klo klo klo @@ -87423,8 +108378,8 @@ klo klo klo klo -iOH -iOH +sJR +nmm klo klo hRw @@ -87470,22 +108425,22 @@ jym jym jym jym -oqM +kRG uzD aOT dxf bsP bsP mma -mma +eSs bsP bsP bsP -lLB +jRo djH dkY -gUE -gUE +jCo +jCo dkY dkY dkY @@ -87516,8 +108471,8 @@ doX bGy sQZ mgC -tAv -hTM +tLB +djn kcL gHe mbW @@ -87525,7 +108480,7 @@ tAv idI mgC sQZ -sQZ +aeU sQZ sQZ sQZ @@ -87539,8 +108494,10 @@ eHe pNj pNj pNj +hCs "} (151,1,2) = {" +hCs rEu rEu rEu @@ -87549,13 +108506,14 @@ rEu rEu rEu rEu -gXs -gXs -gXs -gXs -aiN +rEu +tFq +gal +gal +vRo +tUH aiM -ais +ahQ ahQ ail miq @@ -87568,8 +108526,8 @@ air rEu rEu ead -dNB -dNB +pJE +pJE klo klo klo @@ -87621,7 +108579,7 @@ dkY dkY jym mNH -wJm +bmd iLO aue kbS @@ -87646,9 +108604,9 @@ bsP dkY dkY dkY +bsP lLB -lLB -lLB +jRo dkY dkY eZo @@ -87701,8 +108659,11 @@ bGy pNj pNj pNj +hCs "} (152,1,2) = {" +hCs +rEu rEu rEu rEu @@ -87712,12 +108673,12 @@ rEu rEu rEu bNS -gXs -gXs -aiN +gal +gal +inH fCg ais -fUo +kEe ahQ ail ail @@ -87725,7 +108686,7 @@ ahQ ahQ ahQ ahQ -ahQ +dyR ahS rEu rEu @@ -87764,7 +108725,7 @@ iOH klo klo rED -iOH +rED iOH iOH nmm @@ -87772,18 +108733,18 @@ nmm ran hGF prF -prF +ell elF ran bsP mma mma buw -mma +eSs bsP jym czP -wJm +bmd cJf bIM eFZ @@ -87800,7 +108761,7 @@ aOT dxf bsP bsP -mma +eSs mma bsP bsP @@ -87808,13 +108769,13 @@ kkC bsP dkY dkY -lLB -lLB -lLB +jRo +bsP +tSw dkY dkY eZo -kcL +nzP gHe uiK rKh @@ -87845,16 +108806,16 @@ gpJ kiw kiw agF -xeY +beq iuf eZo idL eHe eHe +aeU sQZ sQZ -sQZ -sQZ +aeU eHe wPV wPV @@ -87863,8 +108824,10 @@ bGy pNj pNj pNj +hCs "} (153,1,2) = {" +hCs rEu rEu rEu @@ -87873,11 +108836,12 @@ rEu rEu rEu rEu -gXs -gXs +rEu +uye +gal aiN aiM -ais +uTC ais ahQ ahQ @@ -87905,14 +108869,14 @@ iOH iOH iOH iOH -iOH +sJR klo klo klo klo klo klo -iOH +nmm iOH iOH rED @@ -87927,9 +108891,9 @@ iOH klo klo iOH +rED iOH -iOH -iOH +cLk nmm ran rxh @@ -87938,7 +108902,7 @@ umt lgD ran hzt -mma +eSs mma buw mma @@ -87965,13 +108929,13 @@ bsP mma bsP bsP -bsP +irp bsP hzt bsP -lLB -lLB -lLB +bsP +tSw +jRo dkY dkY dkY @@ -88018,15 +108982,18 @@ eHe sQZ sQZ eHe -ygP +gcR wPV -ygP +gcR uwn pNj pNj pNj +hCs "} (154,1,2) = {" +hCs +rEu rEu rEu rEu @@ -88042,7 +109009,7 @@ ais ais ahQ ahQ -aif +ahQ aim ail ahQ @@ -88068,14 +109035,14 @@ gfq iOH iOH iOH -iOH +nmm klo klo klo klo klo klo -iOH +nmm iOH dNB rED @@ -88084,8 +109051,8 @@ iOH iOH iOH iOH -iOH cmX +iOH klo klo iOH @@ -88125,15 +109092,15 @@ dxf bsP bsP bsP +lLB +rOA bsP +kkC bsP bsP -kkC +jRo bsP -lLB -lLB -lLB -lLB +tSw dkY eZo eZo @@ -88187,8 +109154,10 @@ uwn pNj pNj pNj +hCs "} (155,1,2) = {" +hCs rEu rEu rEu @@ -88199,7 +109168,8 @@ rEu rEu rEu rEu -ais +rEu +moh aiR aik ahQ @@ -88210,7 +109180,7 @@ ait ahR ahQ ahQ -ail +aio rEu rEu rEu @@ -88225,29 +109195,29 @@ ead ead ead ead -vjG +ngW aIc -gfq -iOH +jJx iOH +qzh iOH klo klo -iOH -iOH +fBc +sJR klo +nmm iOH -iOH -rED +gHD dNB -rED +wDG iOH iOH +ndI iiB -iiB -iiB -iOH -iOH +lmv +nit +qSl klo klo rED @@ -88256,14 +109226,14 @@ iOH iOH klo ran -rLM +uLr gpj tIc pFj ran dkY dkY -mma +bsP mma mma bsP @@ -88279,7 +109249,7 @@ iyf abN jym jym -oqM +kRG eiV uzD aOT @@ -88288,18 +109258,18 @@ bsP bsP bsP bsP -wqi +mVk bsP bsP bsP -lLB -lLB +jRo +tSw lLB dkY dkY eZo eZo -iLb +pKX owY iLb eZo @@ -88327,7 +109297,7 @@ dSq nwX fZy eZo -uGr +heq dVU jWH jWH @@ -88349,8 +109319,11 @@ bGy pNj pNj pNj +hCs "} (156,1,2) = {" +hCs +rEu rEu rEu rEu @@ -88372,7 +109345,7 @@ ail ahQ ahQ ahQ -ail +lyi rEu rEu rEu @@ -88383,25 +109356,25 @@ rEu rEu rEu rEu -vjG +jQe ead ead ead -vjG +wQc vjG aIc -gfq -iOH -cmX +jJx +bkH +pee dNB klo klo -iOH +fBc klo iOH -iOH +qzh dNB -rED +orO ead ead iOH @@ -88425,7 +109398,7 @@ iKH ran dkY bsP -mma +eSs mma mma bsP @@ -88449,22 +109422,22 @@ dxf bsP dkY bsP +lLB bsP bsP bsP -bsP -djN -djN -djN -djN -djN -djN -eZo +hYS +hYS +hYS +hYS +hYS +hYS +hYS fWC lQT shJ owY -bou +wsb owY snH bMc @@ -88500,7 +109473,7 @@ hYS eHe ePL eHe -sQZ +aeU sQZ uCR sQZ @@ -88511,8 +109484,11 @@ bGy pNj pNj pNj +hCs "} (157,1,2) = {" +hCs +rEu rEu rEu rEu @@ -88543,34 +109519,34 @@ rEu rEu rEu rEu -vjG -vjG +mDg +kFE vjG vDY vjG vjG vjG vjG -vjG +mDg oQQ iOH iOH rED -rED +dNB +qzh iOH iOH iOH iOH iOH -cmX ead ead -iiB -iiB +ndI +lmv iiB iiB kfK -iiB +ndI iOH xIf ran @@ -88610,19 +109586,19 @@ aOT dxf bsP bsP +lLB bsP bsP bsP bsP -bsP -djN -djN -djN -djN -djN -djN -eyb -pFW +hYS +uFI +axI +axI +axI +fDb +oUQ +uio jwZ rxD owY @@ -88657,7 +109633,7 @@ fMe fMe agD gHe -rsv +ahJ hYS eHe uwn @@ -88673,8 +109649,11 @@ wPV pNj pNj pNj +hCs "} (158,1,2) = {" +hCs +rEu rEu rEu rEu @@ -88695,7 +109674,7 @@ cRZ cRZ tta tta -aif +ahQ ail jyS rEu @@ -88705,16 +109684,16 @@ rEu rEu ahQ wOo -pAn -pAn +wTw +sOd lSB -vjG +uGB vjG qkg -vjG +tjI vjG gBu -gpV +tnX iOH iOH iOH @@ -88774,17 +109753,17 @@ bsP bsP bsP bsP -lLB +jRo bsP bsP +hYS fjb -fjb -fjb -fjb -fjb +aeY +aeY +aeY fjb xNq -iLb +aeX jwZ rxD xgb @@ -88793,7 +109772,7 @@ xeY udh snH owY -snH +kSX pjK owY tUX @@ -88819,9 +109798,9 @@ fMe fMe agE uGr -rsv +iQm hYS -eHe +oDQ eHe uwn uwn @@ -88835,8 +109814,11 @@ wPV pNj pNj pNj +hCs "} (159,1,2) = {" +hCs +rEu rEu rEu rEu @@ -88870,10 +109852,10 @@ bNM dKc wAB pwO -pAn +wTw lSB vjG -vjG +mXE gBu gpV iOH @@ -88896,14 +109878,14 @@ iOH iOH iOH iOH -rED +dNB rED iLY ohI iLY jxF jxF -jxF +qIu jxF jxF ehb @@ -88935,21 +109917,21 @@ dxf bsP bsP bsP -bsP +lLB lLB kkC bsP -fjb -fjb -fjb -fjb -fjb -fjb hYS -iLb -tJP +aeW +aeY +aeY +aeY +aeW +dBp +aeX +jwZ rxD -owY +jpA vNg xeY snH @@ -88987,7 +109969,7 @@ xAA ktt eHe eHe -sQZ +aeU nJe eHe uwn @@ -88997,8 +109979,10 @@ wPV pNj pNj pNj +hCs "} (160,1,2) = {" +hCs rEu rEu rEu @@ -89010,7 +109994,8 @@ rEu rEu rEu rEu -ahQ +rEu +ybE rEu ahQ ahQ @@ -89019,8 +110004,8 @@ ail ait ahQ hli -ail -ail +aio +lhz rEu rEu rEu @@ -89028,21 +110013,21 @@ rEu rEu ahQ mxA -uqM -uqM -tgW -iRD +aiH +aiH +aiH +bpG lmv -szq +vxD pAn pAn -gpV +eIU iOH iOH iOH iOH iOH -rED +dNB gwr rED rED @@ -89053,7 +110038,7 @@ gwr gwr rED rED -rED +dNB iOH iOH rED @@ -89091,25 +110076,25 @@ uAR uAR uAR gnz -abH -abH -ujy -bsP -bsP +qdb +pka +meY bsP +lLB +lLB hzt bsP bsP dkY -fjb -fjb -fjb -fjb -fjb -fjb hYS -iLb -fhd +aeW +aeY +aeY +aeY +aeW +dBp +aeX +lpp rxD xeY eZo @@ -89145,7 +110130,7 @@ dVU gHe agA lWm -eHe +ben eHe eHe eHe @@ -89159,8 +110144,10 @@ pNj wPV pNj pNj +hCs "} (161,1,2) = {" +hCs rEu rEu rEu @@ -89172,8 +110159,9 @@ rEu rEu rEu rEu -ahQ -ahQ +rEu +mrk +ail ahQ ahP ail @@ -89181,7 +110169,7 @@ ail ail ahQ ahQ -ail +oNA rEu rEu rEu @@ -89190,9 +110178,9 @@ rEu ahQ hli mxA -uqM -uqM -uqM +aiH +aiH +aiH iRD uzA iOH @@ -89248,29 +110236,29 @@ alb jNM vgM uAR -caj +wms caj caj iyl -aab -bsP -bsP -bsP -abG -bsP +qSh +lCJ +ihN +wHg +ajJ bsP +jRo lLB kkC feP dHu -fjb -fjb -fjb -fjb -fjb -fjb +hYS +aeW +ttT +kUs +aeY +aeW dBp -iLb +aeX lpp rxD xeY @@ -89308,21 +110296,24 @@ gHe agB lWm jue -eHe +eyb eHe eHe eHe sQZ sQZ -sQZ +aeU eHe pNj pNj pNj pNj pNj +hCs "} (162,1,2) = {" +hCs +rEu rEu rEu rEu @@ -89341,7 +110332,7 @@ ahQ aim ail ail -ail +aio ahQ rEu rEu @@ -89352,9 +110343,9 @@ ahQ ahQ ahQ mxA -ahT -uqM -uqM +aiH +aiH +aiH jmz iOH iOH @@ -89375,8 +110366,8 @@ rED iOH iOH rED -rED -rED +dNB +dNB rED rED gwr @@ -89391,7 +110382,7 @@ wrY kqM iwU mdS -uir +ldx paA agY wrY @@ -89414,25 +110405,25 @@ caj uPC sXe iyl -aab -bsP -bsP +meY bsP +lLB bsP bsP bsP lLB +jRo vOQ pXE dHu -fjb -fjb -fjb -fjb -fjb -fjb hYS -iLb +cVa +bkx +bkx +bkx +wsD +nns +yhr lpp rxD owY @@ -89471,20 +110462,22 @@ eZo eZo pNj pNj -ygP +gcR ygP eHe sQZ sQZ nJe -xAA +eHe eHe pNj pNj pNj pNj +hCs "} (163,1,2) = {" +hCs rEu rEu rEu @@ -89496,11 +110489,12 @@ rEu rEu rEu rEu +rEu +bfl ahQ ahQ ahQ -ahQ -ail +aio ail ail ail @@ -89509,7 +110503,7 @@ ahQ rEu rEu rEu -ail +kWR ail ahQ ahP @@ -89530,9 +110524,8 @@ rED rED gwr rED +dNB rED -rED -iOH iOH iOH iOH @@ -89544,6 +110537,7 @@ iOH iOH iOH iOH +rED gwr rED iLY @@ -89566,7 +110560,7 @@ bsP iyl frb hyn -gCv +njA hmu hmu ccW @@ -89576,7 +110570,7 @@ hzV tDp ezh iyl -aab +meY bsP bsP cmk @@ -89587,14 +110581,14 @@ lLB grS fzH mTp -fjb -fjb -fjb -fjb -fjb -fjb hYS -tfE +hYS +hYS +hYS +hYS +hYS +hYS +pyb lpp rxD aJX @@ -89634,7 +110628,7 @@ pNj pNj pNj pNj -ygP +gcR eHe sQZ sQZ @@ -89645,12 +110639,15 @@ pNj pNj pNj pNj +hCs "} (164,1,2) = {" +hCs rEu rEu rEu -rEu +aik +aik rEu rEu rEu @@ -89670,10 +110667,10 @@ ail hli ahQ rEu +aio ail -ail -ail -ail +aio +aio ahQ ahQ ahQ @@ -89699,7 +110696,6 @@ iOH iOH iOH iOH -vvA iOH iOH iOH @@ -89707,6 +110703,7 @@ iOH iOH iOH iOH +rED ran ran ahV @@ -89738,7 +110735,7 @@ uAR uAR uAR uAR -lLB +wks bsP cmk ndU @@ -89749,15 +110746,15 @@ grS grS kvB mTp -fjb -fjb -fjb -fjb -fjb -fjb -dBp -jwZ +hYS +hYS +bsq +bsq +bsq +bZn +pFW jwZ +tKd lvb rRj cBf @@ -89778,7 +110775,7 @@ eZo wPV ygP ygP -ygP +gcR eHe eZo eZo @@ -89793,27 +110790,30 @@ eZo eZo eZo eHe -eHe -ygP +rkD ygP +gcR ygP eHe -sQZ +aeU sQZ eHe eHe eHe -ygP +gcR pNj pNj pNj +hCs "} (165,1,2) = {" +hCs rEu rEu -rEu -rEu -rEu +aik +aik +aik +aik rEu rEu rEu @@ -89833,13 +110833,13 @@ ail ahQ ahQ ail -ail +aio ail bHE aik ahQ ahQ -aif +ahQ ahQ ail cRZ @@ -89853,7 +110853,7 @@ iOH iOH iOH iOH -wFy +qJD sYm gfq iOH @@ -89861,13 +110861,13 @@ iOH nmm iOH iOH -iiB +oXa iQu -iiB -iOH +ndI iOH iOH iOH +rED ycr ran ran @@ -89893,31 +110893,31 @@ lEY uAR jKF nMq -nUe +oHb nUe fPb aWj nxa ygJ iyl -aab +meY cmk ndU ugj -lLB +jRo bsP -lLB +jRo grS grS kvB grS -fjb -fjb -fjb -fjb -fjb -fjb hYS +hYS +bsq +bsq +bsq +gSK +iLb jwZ lpp lpp @@ -89938,13 +110938,13 @@ wTY fCc eZo bcZ -ygP +gcR eHe bGy eHe eHe ygP -ygP +gcR ygP pmM ijs @@ -89956,7 +110956,7 @@ bGy kCv eHe eHe -ygP +gcR ygP eHe eHe @@ -89969,16 +110969,19 @@ ygP pNj pNj pNj +hCs "} (166,1,2) = {" +hCs rEu -rEu -rEu -ahQ -ahQ +aik +aik +aik +vUQ +afO ahQ xkG -aif +ahQ ahP ahQ aik @@ -89986,16 +110989,16 @@ aik aik ahQ ahQ -ail +aio ail ail aim aim ail -ail +aio ahQ -aif -ail +ahQ +aio ail aik aik @@ -90014,29 +111017,29 @@ iQu lmv iOH iOH -wFy +xyh ixJ -vjG +xtH aIc gfq iOH iOH iOH -iiB -iiB +ndI +pBu hGC sBz -iiB -iOH -iOH +hbW iOH iOH iOH +rED iOH iOH +rED iOH ran -iOH +cLk iOH ran ama @@ -90047,7 +111050,7 @@ bsP bsP mma mma -mma +eSs bsP abV blZ @@ -90062,7 +111065,7 @@ pAS hTh uJM iyl -aab +meY dHG ndU ndU @@ -90073,13 +111076,13 @@ grS kvB grS grS -fjb -fjb -fjb -fjb -fjb -fjb hYS +hYS +hYS +hYS +hYS +hYS +nYk rBi rBi rBi @@ -90108,7 +111111,7 @@ eHe eHe mIV ygP -ygP +gcR ygP ePL eHe @@ -90127,21 +111130,24 @@ sQZ eHe eHe eHe -ygP -ygP +gcR +gcR pNj pNj +hCs "} (167,1,2) = {" +hCs rEu +aik +bxR +afO +ahS ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -ahQ -hli +ahS +jMG +jMG +pdV ahQ xkG aik @@ -90151,7 +111157,7 @@ ait ail ail ail -ait +vFG ait ail ail @@ -90162,7 +111168,7 @@ aik ahQ ahQ ahQ -ait +vFG ail aim ail @@ -90174,11 +111180,11 @@ rKX dKc dKc aDC -iiB +kSg wFy -ixJ -vjG -vjG +nPp +bzy +ukS vjG aIc gfq @@ -90186,15 +111192,15 @@ iOH iOH iiB gKk -iiB +kSg ftM iiB -iiB -iOH +ndI iOH iOH iOH iOH +rED iOH iOH emO @@ -90224,18 +111230,18 @@ pAS pAS tCd iyl -aab -wRd +meY +djH ndU ndU -iPd +ijq bsP kvB yal aNQ dDe gQf -fjb +eZo eZo eZo eZo @@ -90261,10 +111267,10 @@ uiK lWm eZo eZo -ygP +gcR bGy eHe -mOe +hKj ePL eHe eHe @@ -90275,7 +111281,7 @@ isC isC pPn eHe -eHe +fKZ bGy kCv eHe @@ -90286,32 +111292,35 @@ eHe eHe sQZ sQZ -sQZ +aeU eHe ktt bGy ygP pNj pNj +hCs "} (168,1,2) = {" +hCs rEu +aik +uZT ahQ ahQ ahQ ahQ ahQ ahQ -ahQ -ahQ -ahQ +jMG +jMG ahQ xkG ahQ -ail +aio bHE ail -ail +aio xkG aik ahQ @@ -90327,14 +111336,14 @@ ail bHE ail ait -ait +vFG ahQ ahQ ahQ mxA -uqM -uqM -tgW +aiH +aiH +aiH iRD gOr ano @@ -90342,21 +111351,21 @@ vjG vjG vjG qkg -vjG +pBC aIc gfq -iiB -iiB +ndI +ciy gxQ ead -iiB -iiB +yet +kSg iiB iOH iOH iOH acJ -cmX +iOH iOH iOH emO @@ -90367,7 +111376,7 @@ nmm nmm emO bsP -mma +eSs mma buw mma @@ -90388,8 +111397,8 @@ uAR uAR qcH bsP -wRd -iPd +djH +ijq bsP aNQ aNQ @@ -90402,7 +111411,7 @@ kCX ika kwM wDD -gXx +rhg eZo tVV tVV @@ -90411,7 +111420,7 @@ tVV iLb bBX jwi -jwi +nOg deH pFW pFW @@ -90425,8 +111434,8 @@ eZo pNj eHe ygP -eHe -xAA +jsO +sZu eHe eHe ktt @@ -90451,14 +111460,17 @@ uCR sQZ eHe eHe -eHe +rkD bGy pNj pNj +hCs "} (169,1,2) = {" +hCs rEu -ahQ +aik +afO ahQ qCT qCT @@ -90482,37 +111494,37 @@ ail ait ahQ ahQ +aio ail ail ail ail -ail -ail +mQn ahQ ahQ -ahR +cWp ahQ ahQ mxA -uqM -uqM -uqM +aiH +aiH +aiH iRD -ftM +iwl ano vjG +uca +ngW +asF vjG -vjG -vjG -vjG -vjG +ejV oQQ -iiB -iiB +cUe +tBp snt ead ead -iiB +ndI iOH iOH iOH @@ -90531,7 +111543,7 @@ emO bsP bsP mma -mma +eSs bsP bsP kkC @@ -90556,7 +111568,7 @@ mTp grS grS grS -vOQ +pCu vOQ grS dDe @@ -90581,29 +111593,29 @@ jWH jWH oqW eZo -uHt +nYg ykT eZo pNj eHe eHe -ygP +gcR eHe bGy pNj eHe eHe -ygP +gcR wPV eHe -eHe +fKZ pNj nVK -wUN -bjz +oPk bjz fmG fmG +rFj bjz quz nVK @@ -90617,8 +111629,11 @@ bGy bGy pNj pNj +hCs "} (170,1,2) = {" +hCs +rEu rEu ahQ ahP @@ -90631,41 +111646,41 @@ fKs ahQ ahQ ahQ -ail +aio ait ail ahQ -ahQ +paZ ahQ ahQ ait ail ail -ail +aio ait ail ail ail ail -ait +vFG ahQ ahQ dNg -aif +kWR rEu ahQ ahQ mxA -ahT -uqM -uqM +aiH +aiH +aiH jKo ftM ano -vjG -vjG +mEx +jQe ead -vjG +mMu vjG vjG oQQ @@ -90679,7 +111694,7 @@ iOH iOH iOH iOH -iOH +cLk dHu iOH iOH @@ -90719,7 +111734,7 @@ jIj grS grS grS -vOQ +pCu grS dDe ika @@ -90758,15 +111773,15 @@ tDr uFt fmU eHe -eHe +bGy pNj nVK -vDd -dVl +oXp +bZQ wHy iAj iAj -iAj +vPv iAj wfV sQZ @@ -90774,13 +111789,16 @@ sQZ sQZ sQZ sQZ -eHe +eyb bGy bGy pNj pNj +hCs "} (171,1,2) = {" +hCs +rEu rEu ahQ ahQ @@ -90791,7 +111809,7 @@ pHf qCT dNg ahQ -ail +aio ail ait ail @@ -90800,7 +111818,7 @@ ahQ aif iXZ ahQ -ait +vFG ail ail ail @@ -90827,12 +111845,12 @@ szq ead ead ead -vjG -vjG +ust +oMG gBu -gpV -iiB -iiB +rxS +cUe +lmv iiB iOH ead @@ -90870,8 +111888,8 @@ oBv vgM gtq uAR -grS -grS +eeE +eeE dDe grS grS @@ -90879,14 +111897,14 @@ dHu dHu dHu hNj +eeE grS -grS -grS +bDW grS ajt vOQ vOQ -vOQ +bhY wDD dEo eZo @@ -90920,17 +111938,17 @@ vJA eAl eAl alq -xAA eHe +bGy nVK -cWg -cWg +qPW +vDd aat -eHb +bHZ eqX eBe -xyO -wfV +aeM +gUB sQZ sQZ sQZ @@ -90941,8 +111959,11 @@ bGy eHe pNj pNj +hCs "} (172,1,2) = {" +hCs +rEu rEu ahQ qCT @@ -90960,7 +111981,7 @@ kBT ail xkG ahQ -ahQ +lDm xkG ahQ ait @@ -90974,7 +111995,7 @@ ahQ ahQ ahQ ais -aiv +jHC aik aik aik @@ -90985,15 +112006,15 @@ ahS ahP krQ iOH -iiB +ndI ead ead ead ead -vjG +umb oQQ iiB -iiB +cUe iiB iOH ama @@ -91032,18 +112053,18 @@ qWV tdi gtq uAR -grS +eeE grS dDe grS grS dHu -grS +aAJ hNj hNj grS -grS -gKt +eeE +vVZ grS dDe vOQ @@ -91085,32 +112106,35 @@ gFp eHe aae nVK -vDd +jEq cWg aat -xyO -xyO +aeM +aeM iRH -eHb -wfV +aeM +seF sQZ uCR sQZ nJe -sQZ +aeU eHe eHe -ygP +gcR pNj pNj +hCs "} (173,1,2) = {" +hCs +rEu rEu ahQ qCT rYX pHf -pHf +lZT pHf qlo qCT @@ -91133,11 +112157,11 @@ ail bHE ahQ ahQ -ais -ais +xay +ipv aiv aai -gXs +rEu aik rEu ahQ @@ -91155,8 +112179,8 @@ ead ead ead uzA -iiB -iiB +pBu +ndI iOH iOH iOH @@ -91165,8 +112189,8 @@ iOH iOH iOH iOH -ead -grS +oTM +kvB grS grS grS @@ -91180,7 +112204,7 @@ aYf jIj grS grS -mNo +feP vuy dHu dHu @@ -91194,7 +112218,7 @@ acT acT acT iyl -grS +eeE grS dDe grS @@ -91208,7 +112232,7 @@ abA grS grS dDe -vOQ +pCu jIj grS vOQ @@ -91241,7 +112265,7 @@ flJ eZo wPV eHe -cvw +lDQ eAl eAl alq @@ -91250,9 +112274,9 @@ aaA fWX dVl aau -aao -aao -aao +rwd +rwd +rwd aao wfV sQZ @@ -91265,8 +112289,11 @@ eHe ygP pNj pNj +hCs "} (174,1,2) = {" +hCs +rEu rEu ahQ uzf @@ -91277,7 +112304,7 @@ pHf qlo cET nPx -ear +nPx fly wqz hHI @@ -91288,19 +112315,19 @@ aik aik aik aiK +aio ail ail ail -ail -ait +vFG ahQ -ais +oIx aiB -aiv -aai -gXs -gXs -gXs +xVI +oNv +qZy +eSU +rEu rEu ahQ ahQ @@ -91317,17 +112344,17 @@ ead ead ead ead -iiB -iOH -iOH -iOH +ndI iOH iOH iOH iOH +ptc iOH iOH iOH +hRw +hRw lYR grS grS @@ -91338,12 +112365,12 @@ dHu dHu dHu dHu -tfG +vuy aYf grS abA pXE -tfG +vuy dHu dHu dHu @@ -91356,14 +112383,14 @@ dTW acT acT iyl -grS +eeE grS dDe grS grS grS hNj -grS +eeE lYR grS grS @@ -91371,9 +112398,9 @@ grS grS dDe grS +pCu vOQ vOQ -bhY lWm tlx wBI @@ -91404,35 +112431,38 @@ eZo pNj pNj qDB -mRo +boE sdD jdB eHe nVK -rxE -qPW -bjz -bjz +jkT +fmG bjz bjz +fmG +fmG rFl nVK eHe sQZ sQZ -sQZ +aeU eHe eHe -ygP +gcR ygP pNj pNj +hCs "} (175,1,2) = {" +hCs +rEu rEu ahQ qCT -qlo +kTc pHf pHf pHf @@ -91459,10 +112489,10 @@ ahR aiF aiy aiz -gXs -gXs -gXs -gXs +ePB +gal +fUj +rEu rEu ahQ ahQ @@ -91482,18 +112512,18 @@ ead iOH iOH iOH -cmX -iOH -iOH iOH +bSc +bzX iOH iOH iOH +hRw iOH +eeE grS -gKt grS -hNj +iZT hNj hNj dHu @@ -91522,20 +112552,20 @@ grS grS dDe grS +eeE grS -grS -grS +eeE grS grS dqe -grS +eeE grS gQf eZo -eZo -eZo -eZo -eZo +grS +grS +pCu +bhY eZo eZo qIJ @@ -91566,9 +112596,9 @@ eZo eZo pNj pNj -ygP -qDB -iOR +eHe +rNg +oDz nVK nVK nVK @@ -91586,13 +112616,16 @@ sQZ eHe eHe ygP -ygP +gcR pNj pNj +hCs "} (176,1,2) = {" +hCs rEu -ahQ +aik +afO qCT qCT lkz @@ -91606,11 +112639,11 @@ yba aim yba ail -xkG +ahQ ahQ ahQ aik -aif +ahQ ahQ ail ail @@ -91620,11 +112653,11 @@ ahQ ahQ aiG bOI -aiz -gXs -gXs -gXs -gXs +ahu +gal +gal +gal +ied rEu rEu krQ @@ -91649,15 +112682,15 @@ iOH iOH iOH iOH -iOH -nmm -iOH -grS -grS -grS +cLk +onj +hRw grS +eeE +eeE +eeE hNj -hNj +iZT lYR grS dHu @@ -91671,35 +112704,35 @@ dHu dHu dHu uAR -acT +rSu cLj jYC opw uAR abA grS -grS +owB grS grS grS dDe grS grS +eeE +eeE grS +eeE +eeE grS grS grS -grS -grS -grS -grS -eZo -eZo -eZo -eZo -eZo -eZo -eZo +hYS +hYS +hYS +hYS +hYS +hYS +hYS eRK pUI xMW @@ -91728,11 +112761,11 @@ uiK dOw xOl rqd -ygP +gcR ygP eHe nVK -qJQ +naJ jpt nVK nUk @@ -91742,7 +112775,7 @@ beB nVK eHe eHe -sQZ +aeU sQZ sQZ sQZ @@ -91751,17 +112784,20 @@ ygP ygP pNj pNj +hCs "} (177,1,2) = {" +hCs rEu -ahQ -dNg +aik +vUQ +mNo qCT mdw trB -wer +wEd qCT -ahQ +vBS ahQ ail ail @@ -91779,13 +112815,13 @@ aim ait ahQ ahQ -agi +aiX hKD qVQ aiz -gXs +vrh egw -gXs +uWC rEu rEu ahQ @@ -91796,7 +112832,7 @@ dHu mVW iOH iOH -cmX +qxK iOH iOH oTM @@ -91813,18 +112849,18 @@ iOH iOH nmm nmm -nmm -grS -grS -grS +onj grS grS +eeE +eeE +eeE hNj grS grS dHu dHu -grS +aAJ grS grS hNj @@ -91842,26 +112878,26 @@ grS hNj hNj hNj -mNo -tfG +feP +vuy dDe grS grS +byr grS -grS -grS -grS +eeE +afK grS grS grS feP hYS -hYS -hYS -hYS -hYS -hYS -eyb +uFI +axI +axI +axI +fDb +oUQ dtV snv aJX @@ -91907,25 +112943,28 @@ eHe eHe sQZ sQZ -sQZ +aeU eHe -ygP +gcR pNj pNj pNj +hCs "} (178,1,2) = {" +hCs rEu -rEu -dNg +aik +aik +mNo qCT eQV rRV sTU qCT -dNg +vBS ahQ -ail +aio ail ail ail @@ -91941,13 +112980,13 @@ ail ail ahQ ahQ -ais -ais +uTC +bWd aiC -aiz -gXs -gXs -gXs +ahu +jUu +sWn +sVC rEu aio ahQ @@ -91974,13 +113013,13 @@ nmm qzh dHu dHu -dHu +mTp grS jIj grS grS wme -grS +eeE grS grS grS @@ -91988,15 +113027,15 @@ grS vOQ grS lYR -grS -hNj +eeE +iZT grS dHu dHu dHu uAR uAR -lvU +fPj lvU lvU uAR @@ -92011,24 +113050,24 @@ grS grS gKt jIj -hNj -hNj +iZT +iZT hNj grS -grS +pCu pXE +hYS fjb -fjb -fjb -fjb -fjb +nEq +ttT +aeY fjb xNq -etc +aeX lpp lpp -fhd -mvY +lpp +twY owY owY xeY @@ -92071,15 +113110,18 @@ eHe sQZ sQZ eHe -ygP +gcR pNj pNj pNj +hCs "} (179,1,2) = {" +hCs rEu -rEu -dNg +aik +aik +mNo qCT qCT qCT @@ -92106,9 +113148,9 @@ ahQ ahQ ahQ ahQ -aiz -gXs -gXs +gGA +mnZ +gal rEu rEu aio @@ -92150,8 +113192,8 @@ pCu grS grS grS -hNj -hNj +iZT +iZT grS dHu dHu @@ -92167,30 +113209,30 @@ jjj kdG fuf fuf -kvB +jjj aNQ grS grS grS -grS +nYY hNj -hNj -grS +iZT +eeE grS grS pXE -fjb -fjb -fjb -fjb -fjb -fjb hYS -etc +aeW +aeY +aeY +aeY +aeW +dBp +aeX jCS dVU -wPt -rxD +jwZ +twY owY dVU aop @@ -92237,12 +113279,15 @@ pNj pNj pNj pNj +hCs "} (180,1,2) = {" +hCs rEu -rEu -rEu -ahQ +aik +aik +aik +afO ahQ ahQ ahQ @@ -92256,9 +113301,9 @@ ail aim aim ait -ail +aio ahQ -ait +vFG ahQ ail ail @@ -92278,7 +113323,7 @@ aik ahQ ahQ grS -gKt +grS dHu dHu dHu @@ -92293,7 +113338,7 @@ hRw iOH iOH iOH -iOH +cLk dHu dHu dHu @@ -92306,16 +113351,16 @@ grS hNj grS grS -vOQ +grS vOQ pCu grS grS -grS +eeE hNj grS grS -bWr +fzH jnn dHu dHu @@ -92329,30 +113374,30 @@ jjj dHu dHu dHu -kvB +jjj aNQ grS grS +eeE grS grS grS +eeE grS -grS -grS -mNo +feP vuy -fjb -fjb -fjb -fjb -fjb -fjb hYS -etc +aeW +aeY +aeY +aeY +aeW +dBp +aeX jwZ dVU -wPt -rxD +jwZ +twY owY dVU dVU @@ -92373,7 +113418,7 @@ lOH eZo eZo pNj -eHe +fKZ rNg eAl pNj @@ -92399,12 +113444,15 @@ pNj pNj pNj pNj +hCs "} (181,1,2) = {" +hCs rEu rEu -rEu -rEu +aik +aik +aik ahQ ahQ ahQ @@ -92414,12 +113462,12 @@ ahP ahQ ahQ ahR -ail +aio ail ail ail ait -ail +aio ahQ ahQ ail @@ -92469,7 +113517,7 @@ grS grS pCu vOQ -vOQ +grS grS vOQ grS @@ -92479,9 +113527,9 @@ grS lYR grS grS -fzH -dHu -dHu +nzu +mTp +mTp dHu dHu dHu @@ -92501,21 +113549,21 @@ grS grS grS grS -onU +pXE vuy -fjb -fjb -fjb -fjb -fjb -fjb +hYS +aeW +aeY +kUs +aeY +aeW dBp -etc +aeX dmz -lZu +dSq fgZ -nwX -xeY +gUr +bHH owY owY jpA @@ -92551,24 +113599,27 @@ nVK nVK nVK nVK +hQh eHe -eHe -sQZ +aeU sQZ sQZ -xAA +eHe pNj pNj pNj pNj +hCs "} (182,1,2) = {" +hCs +rEu rEu rEu rEu rEu nmt -ais +uCs aix ahQ ahQ @@ -92589,7 +113640,7 @@ ahQ ahQ ahQ ahQ -ahQ +bfl aik aik ail @@ -92611,7 +113662,7 @@ iOH iOH iOH dNB -rED +iOH dNB dNB iOH @@ -92632,7 +113683,7 @@ lYR vOQ vOQ grS -grS +kvB dHu dHu hNj @@ -92640,9 +113691,9 @@ grS grS grS grS -grS -grS -fzH +kvB +kvB +nzu jnn dHu dHu @@ -92663,21 +113714,21 @@ dHu dHu grS grS -onU +pXE vuy -fjb -fjb -fjb -fjb -fjb -fjb hYS -dVU -mvY +cVa +bkx +bkx +bkx +wsD +nns +hMb +rxD ngZ ngZ -pFW -xeY +dbN +bHH xeY owY owY @@ -92717,14 +113768,17 @@ eHe sQZ sQZ sQZ -sQZ +aeU eHe eHe pNj pNj pNj +hCs "} (183,1,2) = {" +hCs +rEu rEu rEu rEu @@ -92733,12 +113787,12 @@ rEu bOf ugd aiW -ais +yjJ mAm aik aik ahQ -ahQ +jMG ahQ hli ahQ @@ -92748,7 +113802,7 @@ aim ail ahQ ain -aif +ahQ ahQ ahQ aik @@ -92757,7 +113811,7 @@ ail aio ahQ aiw -aif +oEO ahQ aiq vOQ @@ -92765,16 +113819,16 @@ pCu dHu jIj grS -grS +aMv dHu dHu dHu dHu iOH rED +iOH rED -wHd -rED +iOH dNB rED iOH @@ -92794,21 +113848,21 @@ vOQ grS grS pCu -grS -dHu +kvB +mTp dHu grS grS grS feP hNZ -gVN -grS +yhn +kvB grS grS grS dHu -grS +aAJ grS hNj dHu @@ -92825,20 +113879,20 @@ dHu dHu grS grS -bWr +fzH vuy -fjb -fjb -fjb -fjb -fjb -fjb hYS -etc -snv -uLs +hYS +hYS +hYS +hYS +hYS +hYS +gDY +fFp gHe -dVU +hjc +uiK dVU wTO wTO @@ -92861,7 +113915,7 @@ eZo pNj pNj eHe -eHe +wFc bGy bGy eHe @@ -92885,14 +113939,17 @@ bGy bGy wwR pNj +hCs "} (184,1,2) = {" +hCs rEu rEu -gXs -gXs +rEu +xCc +tIq aja -aiY +rrm ais aiX nmC @@ -92901,8 +113958,8 @@ ugd ahQ ahP ahQ -ahQ -ahQ +jMG +jMG ahQ ahQ ait @@ -92910,8 +113967,8 @@ ahQ ail ahQ ahQ -ahQ -ahQ +mSg +aif ahQ xPx ail @@ -92944,8 +114001,8 @@ mVW mVW dHu jIj -grS -grS +eeE +eeE dHu dHu dHu @@ -92956,15 +114013,15 @@ grS grS hNj hNj -dHu -dHu -grS +mTp +mTp +kvB grS jIj dHu dHu -dHu -afj +mTp +tFL grS grS grS @@ -92984,21 +114041,21 @@ feP hJk mTp dHu +aAJ grS grS grS -grS -dHu -fjb -fjb -fjb -fjb -fjb -fjb -dBp -etc -wPt -hjc +pCu +hYS +hYS +bsq +bsq +bsq +bZn +pFW +tfE +jwZ +gHe gHe uHL ltz @@ -93028,52 +114085,55 @@ bGy bGy aae nVK +drn cWg -cWg -aat -eHb -eHb -eHb +tym +gNb +xyO +xyO eHb -eLH +oCG sQZ sQZ usd sQZ eHe eHe -eHe +wFc eHe bGy wwR pNj +hCs "} (185,1,2) = {" +hCs rEu -gXs -gXs -gXs -gXs +rEu +bkM +fpQ +gal +gal aja aiu aiY -ais +uCs bOI aiU fUo ahQ ahQ ahQ +jMG ahQ ahQ -ahQ -ait +vFG ahQ ail ail ahQ ahQ -ahQ +ava ahQ ahQ ahQ @@ -93086,40 +114146,40 @@ ahQ aiq hNj grS +eeE +eeE grS grS -grS -grS -grS +efx dHu dHu -grS +aAJ grS vOQ pCu hNj dHu -vOQ +grS vOQ grS hNj mVW grS grS -grS -grS -dHu +owB +eeE dHu dHu dHu dHu dHu -grS +mTp +kvB lYR grS grS dHu -grS +kvB hNj grS pCu @@ -93151,15 +114211,15 @@ grS grS hNj jIj -fjb -fjb -fjb -fjb -fjb -fjb hYS +hYS +bsq +bsq +bsq +gSK +iLb etc -pxL +lpp gHe llU eZo @@ -93193,42 +114253,45 @@ nVK pRu cWg aat -eHb -xyO +aeM +fgT +npc xyO -eHb -eLH +rrK sQZ uCR sQZ -sQZ -eHe +aeU eHe eHe eHe +bGy wwR wwR pNj +hCs "} (186,1,2) = {" +hCs rEu rEu rEu rEu -gXs -gXs -gXs +rEu +gal +gal +gal aiZ rEu -nmt +nKW aiV kTG -aiP +rOp aiP nJL rnq ahQ -ail +aio ail aim ail @@ -93243,13 +114306,13 @@ fhY ahQ ahQ aix -ais +bWd ahR air hNj grS -gKt -grS +vVZ +eeE grS grS grS @@ -93260,7 +114323,7 @@ grS pCu pCu pCu -vOQ +grS vOQ grS grS @@ -93277,10 +114340,10 @@ dHu dHu dHu grS -abA -hNj -grS -dHu +eil +urk +kvB +mTp grS grS lYR @@ -93295,7 +114358,7 @@ vOQ grS grS hNj -hNj +iZT hNj grS grS @@ -93313,15 +114376,15 @@ abF kvB hNj hNj -fjb -fjb -fjb -fjb -fjb -fjb hYS -cPL -snv +hYS +hYS +hYS +hYS +hYS +hYS +eZo +eZo uGr gHe uiK @@ -93348,17 +114411,17 @@ pNj pNj pNj pNj -ktt -eHe +voa +lmV ePL nVK -vDd +ylN cWg aat -xyO -xyO -eHb +fgT +aeM eHb +xyO eLH sQZ sQZ @@ -93368,22 +114431,25 @@ eHe ktt ePL eHe -eHe +fKZ wwR pNj +hCs "} (187,1,2) = {" +hCs rEu rEu rEu -gXs -gXs rEu -gXs +lCt +cQW rEu +cxX rEu rEu -ais +rEu +wUR szk aiH aiH @@ -93403,16 +114469,16 @@ aiH aiH cJX ahQ -ugd +xFQ aiy -ugd -ais +tJJ +lDS rEu grS grS grS grS -grS +eeE lYR dHu dHu @@ -93422,7 +114488,7 @@ hNj grS vOQ vOQ -grS +aAJ pCu grS grS @@ -93442,7 +114508,7 @@ grS grS grS grS -gKt +grS grS grS vOQ @@ -93453,13 +114519,13 @@ dHu dHu tfG rFa +lIk grS grS grS grS -grS -grS -grS +eeE +eeE grS grS grS @@ -93475,19 +114541,19 @@ jbb lYR hNj grS -hYS -hYS -hYS -hYS eZo eZo eZo eZo eZo +eZo +grS +kPu +mNF uGr gHe lWm -qfM +wXF cNj tAv qfM @@ -93495,7 +114561,7 @@ fWC qfM tAv tAv -qfM +xfa lWm ePb uGr @@ -93510,11 +114576,11 @@ pNj eHe mOe eHe -xAA -eHe +gdK +ebJ eHe nVK -cWg +vDk dVl aau aao @@ -93529,19 +114595,22 @@ eHe eHe eHe eHe -xAA +eHe bGy wwR pNj +hCs "} (188,1,2) = {" +hCs rEu rEu rEu rEu rEu rEu -gXs +rEu +uhO rEu rEu rEu @@ -93557,7 +114626,7 @@ ail ail ail ail -ail +aio ahQ mxA aiH @@ -93565,9 +114634,9 @@ aiH aiH cJX ahQ -ais +uTC aiv -aiu +wGe rEu rEu rEu @@ -93582,13 +114651,13 @@ dHu hNj grS grS -grS +gKt vOQ grS grS grS grS -grS +eeE kvB grS grS @@ -93610,12 +114679,12 @@ vOQ dHu vOQ grS -grS +aAJ dHu dHu dHu niM -gKt +lat vOQ grS grS @@ -93637,19 +114706,19 @@ grS grS grS grS -grS -onU -tfG -tfG -tfG -gVN -aMv -aMv +pCu +pXE +vuy +vuy +vuy +aYf +pCu +hNj eZo -uGr +kvM gHe lWm -wso +naa mNB tAv qfM @@ -93657,7 +114726,7 @@ owY qfM nnx mNB -qfM +xfa lWm lQT uVi @@ -93668,8 +114737,8 @@ rPi prO pNj pNj -ygP -ygP +gcR +bPa eHe eHe eHe @@ -93685,18 +114754,21 @@ fmG rFl nVK eHe -sQZ +vSr sQZ eHe -sQZ +aeU bGy bGy bGy wwR wwR pNj +hCs "} (189,1,2) = {" +hCs +rEu rEu rEu rEu @@ -93713,24 +114785,24 @@ aiH aiH aiH oqU +aio ail +bHE ail ail -ail -ail -ail -ail +aio +ahQ ahP mxA aiH aiH aiH aiE -ais +gLb lMd aiz -gXs -gXs +jpx +whl rEu rEu dHu @@ -93741,17 +114813,17 @@ grS grS grS grS -gKt -grS grS +eeE +eeE grS grS grS dqe grS -grS -grS -kvB +eeE +eeE +afh grS grS pCu @@ -93775,7 +114847,7 @@ grS dHu dHu dHu -grS +efx grS vOQ jBH @@ -93791,27 +114863,27 @@ mTp dHu dHu dHu -grS +eeE grS hNj hNj -grS +eeE dHu dHu grS grS -bWr -tfG -tfG -tfG -tfG -gcR +fzH +vuy +vuy +vuy +vuy +aYf eZo eZo foI gHe lWm -qfM +wXF tAv tAv qfM @@ -93819,7 +114891,7 @@ owY wso nnx cNj -qfM +xfa lWm lpp lvb @@ -93829,9 +114901,9 @@ dlU dlU prO ygP +gcR ygP -ygP -ygP +gcR eHe eHe eHe @@ -93853,12 +114925,15 @@ eHe sQZ eHe bGy -ygP +gcR ygP wwR pNj +hCs "} (190,1,2) = {" +hCs +rEu rEu rEu rEu @@ -93891,8 +114966,8 @@ sVJ bQF jaf aiz -gXs -gXs +fFS +ear rEu rEu rEu @@ -93903,8 +114978,8 @@ pCu grS hNj grS -grS -grS +eeE +eeE grS hNj grS @@ -93913,8 +114988,8 @@ grS grS kvB mTp -grS -grS +eeE +eeE grS grS pCu @@ -93953,27 +115028,27 @@ mTp dHu dHu dHu -grS -grS +eeE +eeE hNj grS grS -grS -grS +eeE +eeE grS hNj grS -bWr -sLm -tfG -tfG -uxA +fzH +jnn +vuy +vuy +vuy lWm sUb hjc gHe lWm -qfM +wXF tAv cNj qfM @@ -93981,11 +115056,11 @@ fWC qfM tAv tAv -qfM +xfa lWm lpp jCS -qid +gbQ eZo dlU dlU @@ -93995,7 +115070,7 @@ ygP mIV eHe ePL -ygP +gcR ygP eHe eHe @@ -94004,23 +115079,25 @@ bGy bGy bGy eHe +gcR ygP -ygP -ygP +gcR eHe eHe sQZ sQZ sQZ -sQZ +aeU eHe eHe ygP -ygP +gcR wwR pNj +hCs "} (191,1,2) = {" +hCs rEu rEu rEu @@ -94032,12 +115109,13 @@ rEu rEu rEu rEu -ahQ +rEu +vBo ahQ hli ahQ ahR -ahQ +dNg ail ail ail @@ -94048,14 +115126,14 @@ ahR ahQ ahQ ahQ -ais -aiv +bWd +xVI aiu aiu aiA -gXs -gXs -gXs +fFS +dDb +iGg rEu rEu rEu @@ -94076,22 +115154,22 @@ kvB kvB grS grS -grS -hNj -grS +eeE +iZT grS grS grS grS grS -jIj grS +wOU +eeE grS dHu dHu grS grS -grS +aAJ pCu grS grS @@ -94126,10 +115204,10 @@ grS hNj hNj grS -gKt -bWr -sLm -aAJ +grS +fzH +jnn +jID eZo ePb gHe @@ -94181,8 +115259,10 @@ qWP wwR wwR pNj +hCs "} (192,1,2) = {" +hCs rEu rEu rEu @@ -94194,36 +115274,37 @@ rEu rEu rEu rEu -ahQ +rEu +bxs ain ahQ -aif ahQ ail +cWp aim ail ail ail ail aim -ait +vFG ahQ ahQ -ais -ais -aiz -gXs -gXs -gXs -gXs -gXs -gXs -gXs +xay +mKO +aai +fFS +fFS +fFS +fFS +fFS +xEd +gxi rEu rEu -hNj -grS +pCu grS +aMv pCu pCu pCu @@ -94240,15 +115321,15 @@ grS grS hNj grS -grS +umv lYR grS jIj grS -grS -hNj -grS -gKt +obo +iZT +fqD +kfY grS grS grS @@ -94289,9 +115370,9 @@ grS hNj hNj grS +efx grS grS -aMv lWm bkr gHe @@ -94333,9 +115414,9 @@ afU hFB kvm eOy -ldp -ldp -ldp +gMy +wuK +wuK ldp vWX hUU @@ -94343,8 +115424,10 @@ ccA ohU wwR pNj +hCs "} (193,1,2) = {" +hCs rEu rEu rEu @@ -94356,10 +115439,11 @@ rEu rEu rEu rEu -ahQ rEu +hTA rEu -ahQ +rEu +pQE aiL bTW qLO @@ -94373,47 +115457,47 @@ ahQ rEu rEu rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs +vxb +fFS +dDb +fFS +fFS +fFS +ear rEu rEu rEu rEu -grS +pCu grS hNj grS pCu grS -grS +aAJ dHu pCu vOQ grS -mNo -xay -xay -gVN -grS -grS +feP +hNZ +hNZ +aYf grS grS grS grS grS grS +kvB +kvB hNj grS grS grS lYR -grS -grS +eeE +eeE grS dHu dHu @@ -94434,21 +115518,21 @@ uoZ grS hNj grS -grS +ogZ dHu dHu dHu dHu jID +uAi grS -grS -mNo +feP mTp mTp mTp grS grS -grS +aAJ hNj dqe eZo @@ -94505,8 +115589,10 @@ qXz ohU wwR pNj +hCs "} (194,1,2) = {" +hCs rEu rEu rEu @@ -94525,29 +115611,30 @@ rEu rEu rEu rEu +vFX +ail +nvm +ail +nvm +ail rEu rEu rEu rEu rEu rEu +qlJ +fFS +fFS +dDb +fFS +eLL rEu rEu rEu rEu -rEu -gXs -gXs -gXs -egw -gXs -gXs -rEu -rEu -rEu -rEu -grS -grS +noS +sOM grS grS grS @@ -94556,18 +115643,18 @@ dHu vOQ pCu grS -mNo -tfG -tfG -dHu +feP +vuy +vuy dHu dHu dHu dHu -grS -grS -grS -grS +mTp +afh +afh +afh +afh dHu dHu grS @@ -94575,7 +115662,7 @@ hNj grS grS grS -grS +eeE grS dHu dHu @@ -94584,8 +115671,8 @@ grS grS eeE eeE -eeE -eeE +xsY +xsY eeE eeE grS @@ -94595,19 +115682,19 @@ grS grS grS grS -mNo +feP dHu dHu dHu niM -grS +aAJ grS gKt grS -onU +pXE dHu dHu -grS +eeE grS grS lYR @@ -94622,7 +115709,7 @@ gHe gHe kNS qfM -afh +qfM fuv fuv fuv @@ -94667,8 +115754,10 @@ aEH wwR wwR pNj +hCs "} (195,1,2) = {" +hCs rEu rEu rEu @@ -94687,6 +115776,11 @@ rEu rEu rEu rEu +qlZ +nvm +ear +nvm +qxO rEu rEu rEu @@ -94694,23 +115788,19 @@ rEu rEu rEu rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -rEu +ear +fFS +fFS +fFS +fFS +eBA rEu rEu rEu rEu rEu -vOQ -vOQ +hKM +pCu grS grS grS @@ -94718,10 +115808,8 @@ hNj hNj grS grS -onU -tfG -dHu -dHu +pXE +vuy dHu dHu dHu @@ -94729,18 +115817,20 @@ dHu dHu dHu dHu +mTp +mTp dHu dHu dHu grS vOQ -vOQ -grS -grS +pCu grS grS +eeE grS grS +efx grS grS grS @@ -94755,17 +115845,17 @@ grS grS grS grS +eeE grS -grS -onU +pXE dHu dHu jID -vOQ +pCu grS lYR grS -mNo +feP dHu dHu dHu @@ -94774,7 +115864,7 @@ aYf grS abA grS -grS +hNj eZo sjB wys @@ -94786,9 +115876,9 @@ kNS qfM jQh uHt -lIM +abe nWc -xfa +drb vPe nWc nWc @@ -94829,8 +115919,10 @@ gwp ohU wwR pNj +hCs "} (196,1,2) = {" +hCs rEu rEu rEu @@ -94850,6 +115942,9 @@ rEu rEu rEu rEu +qSx +qSx +qSx rEu rEu rEu @@ -94859,20 +115954,18 @@ rEu rEu rEu rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs +ear +fFS +xMj +cdm +sQl +ear rEu rEu rEu rEu rEu -vOQ +pCu vOQ grS grS @@ -94880,34 +115973,34 @@ abA grS grS grS -onU +pXE dHu dHu dHu dHu dHu -grS -hNj +eeE +iZT hNj hNj -grS +eeE dHu dHu dHu dHu -vOQ -vOQ +hNZ +aYf vOQ grS grS -grS +eeE hNj hNj hNj hNj grS dHu -vYR +afd vYR vYR eeE @@ -94916,17 +116009,17 @@ grS grS grS lYR +eeE +eeE grS -grS -grS -bWr +fzH jnn jID vOQ vOQ -vOQ +pCu grS -mNo +feP dHu dHu dHu @@ -94947,7 +116040,7 @@ gHe kNS qfM jQh -lIM +abe eWG eua sNc @@ -94991,8 +116084,10 @@ gwp ohU wwR pNj +hCs "} (197,1,2) = {" +hCs rEu rEu rEu @@ -95012,6 +116107,9 @@ rEu rEu rEu rEu +ear +fFS +ear rEu rEu rEu @@ -95021,46 +116119,44 @@ rEu rEu rEu rEu +eLL +fFS rEu rEu -gXs -gXs -gXs -rEu -rEu -gXs -gXs +fFS +oJi +ear rEu rEu rEu rEu rEu -vOQ +pCu grS grS grS grS grS grS -onU -tfG +pXE +vuy dHu dHu dHu dHu dHu grS +eeE grS grS -grS -grS +eeE dHu dHu dHu -vOQ +vuy +vuy +aYf pCu -vOQ -vOQ grS grS grS @@ -95076,19 +116172,19 @@ eeE eeE grS hNj -grS -grS +eeE +eeE grS lYR grS -vOQ -vOQ +grS +pCu grS grS grS vOQ vOQ -onU +pXE dHu dHu dHu @@ -95097,8 +116193,8 @@ vuy mTp afj grS -grS -grS +lYR +hNj lWm sjv qIJ @@ -95112,16 +116208,16 @@ jQh vFk rBS rBS +aSc rBS -rBS -pKm +xBm qRh sNc dFK -xfa -xfa -xfa -xfa +sNc +sNc +sNc +sNc fhF rPS wMb @@ -95153,8 +116249,10 @@ gwp wwR wwR pNj +hCs "} (198,1,2) = {" +hCs rEu rEu rEu @@ -95174,6 +116272,10 @@ rEu rEu rEu rEu +ear +dDb +fFS +eLL rEu rEu rEu @@ -95182,16 +116284,13 @@ rEu rEu rEu rEu +bGw +fFS +hBT rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs +ear +fFS +eLL rEu rEu rEu @@ -95199,36 +116298,36 @@ iJY kvB kvB grS -lYR +bhD grS dHu dHu grS bWr -tfG -tfG +vuy +vuy dHu dHu +aMv grS grS -grS -grS -grS +eeE +eeE grS grS dHu dHu dHu dHu +vuy +vuy +afj pCu -pCu -vOQ -vOQ grS grS grS dHu -grS +efx dHu grS eeE @@ -95238,29 +116337,29 @@ eeE grS grS grS -hNj -hNj +iZT +iZT grS grS kvB kvB -vOQ +grS grS grS utR -vOQ +pCu mTp dHu dHu dHu -grS +faE grS bWr qzM -niM -grS +jID grS grS +aAJ eZo qcm grz @@ -95315,8 +116414,10 @@ rXH ohU wwR pNj +hCs "} (199,1,2) = {" +hCs rEu rEu rEu @@ -95335,6 +116436,10 @@ rEu rEu rEu rEu +fNi +iLT +fFS +ear rEu rEu rEu @@ -95344,31 +116449,28 @@ rEu rEu rEu rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs +lIt gXs +fFS +uCX +fFS +fFS +fFS +fPN rEu rEu grS grS -kvB -kvB +afh +afh +grS grS grS -gKt dHu +aAJ grS -gKt -bWr -tfG +fzH +vuy dHu grS grS @@ -95383,8 +116485,8 @@ dHu dHu dHu dHu -pCu -pCu +vuy +afj vOQ grS grS @@ -95409,15 +116511,15 @@ grS mTp dHu grS -vOQ +pCu grS mTp dHu dHu dHu -grS +qBH hNj -gKt +grS kvB grS grS @@ -95436,7 +116538,7 @@ jQh sVz rBS rBS -rBS +aSc rBS rBS dWD @@ -95477,8 +116579,10 @@ gwp ohU wwR pNj +hCs "} (200,1,2) = {" +hCs rEu rEu rEu @@ -95493,7 +116597,15 @@ rEu rEu rEu rEu +rLF +hjd rEu +ear +bru +fFS +fFS +fFS +tBS rEu rEu rEu @@ -95503,20 +116615,13 @@ rEu rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -rEu -gXs -gXs -gXs +ear +fFS +fFS +fFS +dDb +fFS +szo rEu rEu pCu @@ -95530,8 +116635,8 @@ vOQ pCu grS grS -bWr -niM +fzH +jID grS grS pCu @@ -95546,8 +116651,8 @@ dHu dHu dHu dHu -vOQ -vOQ +jID +pCu grS grS dHu @@ -95556,8 +116661,8 @@ dHu grS grS grS -grS -dHu +kvB +mTp mTp grS grS @@ -95595,7 +116700,7 @@ ePb uiK qfM jQh -awX +mMN fGq oVe sNc @@ -95639,8 +116744,10 @@ gwp wwR wwR pNj +hCs "} (201,1,2) = {" +hCs rEu rEu rEu @@ -95654,34 +116761,35 @@ rEu rEu rEu rEu +eLL +fFS +fFS +ear +fFS +dDb +fFS +fFS +fFS +fFS +eLL rEu +gxi +eLL rEu rEu rEu +gxi +ear +fFS +fFS +fFS +fFS +fFS +fFS +eLL rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -rEu -rEu -gXs -gXs -rEu -pCu -vOQ +vuy +aYf pCu grS grS @@ -95709,17 +116817,17 @@ dHu dHu dHu vOQ -grS +aAJ lYR grS -grS +eeE dHu grS grS jIj grS dHu -dHu +mTp mTp aYf grS @@ -95728,7 +116836,7 @@ grS grS mTp grS -grS +aAJ grS dHu grS @@ -95758,9 +116866,9 @@ uiK qfM jQh uHt -awX +mMN arN -xfa +drb arN arN arN @@ -95801,8 +116909,10 @@ gwp ohU wwR pNj +hCs "} (202,1,2) = {" +hCs rEu rEu rEu @@ -95815,41 +116925,42 @@ rEu rEu rEu rEu +cmK +xBT +fFS +fFS +fFS +fFS +fFS +fFS +fFS +dDb +bru +fFS +ear +kOa +fFS +ear rEu +rGk +fFS +fFS +dDb +fFS +fFS +ear +ear +fFS +ear rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -rEu -gXs -gXs -rEu -vOQ -pCu -vOQ +vuy +vuy +aYf grS dHu dHu grS -grS +eeE grS grS grS @@ -95862,7 +116973,7 @@ vOQ vOQ kvB kvB -grS +eeE grS hNj dHu @@ -95873,17 +116984,17 @@ dHu hNj grS grS -grS -grS +eeE +eeE dHu grS grS -grS +eeE hNj dHu dHu mTp -afj +tFL grS grS grS @@ -95963,8 +117074,10 @@ pdj ohU wwR pNj +hCs "} (203,1,2) = {" +hCs rEu rEu rEu @@ -95976,43 +117089,44 @@ rEu rEu rEu rEu +uQc +fVT +fFS +hKL +fFS +kEu +ear +eLL +fFS +fFS +fFS +fFS +fFS +fFS +dDb +fFS +fFS +ear +fFS +fFS +fFS +fFS +fFS +lxG rEu rEu +fFS +ear rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -rEu -rEu -rEu -pCu +vuy dHu dHu grS grS grS -grS +eeE hNj dHu grS @@ -96025,7 +117139,7 @@ grS mTp grS grS -grS +djT grS hNj dHu @@ -96035,17 +117149,17 @@ dHu hNj grS grS -gKt -grS +eeE +eeE grS grS -lYR +bhD grS hNj hNj dHu fuf -afj +tFL vOQ grS dHu @@ -96068,7 +117182,7 @@ mTp mTp mTp vOQ -vOQ +pCu eZo goI uHt @@ -96079,15 +117193,15 @@ axI axI fDb oUQ -qfM +pDa iJn -qfM +wso qfM qfM laF qfM qfM -qfM +wso qfM laF qfM @@ -96125,8 +117239,10 @@ ccA wwR wwR pNj +hCs "} (204,1,2) = {" +hCs rEu rEu rEu @@ -96137,34 +117253,35 @@ rEu rEu rEu rEu +aoo +wcn +fVT +fFS +fFS +fFS +gxi +rEu +rEu +wiw +fFS +fFS +fFS +sEZ +ear +fFS +fFS +fFS +dDb +fFS +fFS +ear +fFS +fFS rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs +dDb +ear rEu rEu rEu @@ -96185,30 +117302,30 @@ grS grS grS dHu -grS -grS -gKt +eeE +xoD +oUZ grS grS hNj grS -grS -vOQ +efx +pCu hNj jIj grS grS +eeE +eeE grS grS -grS -grS -grS +aAJ hNj hNj dHu fuf afj -vOQ +pCu grS kvB mTp @@ -96229,18 +117346,18 @@ grS kvB kvB grS -vOQ +pCu vOQ eZo uHt uHt hYS iRo -uHt -uHt -uHt -wuj -kYE +aeY +aeY +aeY +fjb +dBp xci xci xci @@ -96287,8 +117404,10 @@ qXz ohU wwR pNj +hCs "} (205,1,2) = {" +hCs rEu rEu rEu @@ -96299,35 +117418,36 @@ rEu rEu rEu rEu +pTI +jtn +ahh +fFS +fFS +fFS +eLL rEu rEu rEu +ear +fFS +fFS +ear rEu +lxG +fFS +fFS +fFS +eLL +ear rEu +ear +fFS +jex rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -rEu -rEu -gXs -gXs gXs +fFS +xJz rEu rEu dHu @@ -96348,10 +117468,10 @@ tNi grS dHu dHu +eeE grS grS -grS -grS +eeE grS grS grS @@ -96360,16 +117480,16 @@ hNj grS hNj grS +eeE grS grS grS -grS -vOQ +pCu dHu dHu mTp mTp -jID +dbQ grS lYR urk @@ -96387,10 +117507,10 @@ aYf grS grS grS -vOQ +pCu jjj grS -grS +aAJ grS vOQ eZo @@ -96398,11 +117518,11 @@ jSy uHt hYS bxi -uHt -hvh -uHt -uHt -sES +aeY +aeY +aeY +aeW +dBp tUX tUX tUX @@ -96449,8 +117569,10 @@ aCZ ohU wwR pNj +hCs "} (206,1,2) = {" +hCs rEu rEu rEu @@ -96464,33 +117586,34 @@ rEu rEu rEu rEu +rOq +bru +fFS +ear rEu rEu +pOn +phC +fFS +pmJ +ear rEu rEu +aDW +fFS +ear rEu rEu rEu +ear +fFS +fFS +fOn rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -rEu -rEu -rEu -gXs -gXs -gXs -gXs +fFS +fFS +hBT rEu dHu dHu @@ -96505,17 +117628,17 @@ dHu dHu grS hNj -hNj -grS +iZT +eeE grS dHu dHu dHu +aAJ grS -grS -grS -grS -grS +eeE +eeE +eeE grS hNj grS @@ -96530,14 +117653,14 @@ dHu dHu dHu dHu -dHu -grS +mTp +kvB grS grS kdG hNZ mTp -grS +eeE urk kvB mTp @@ -96546,7 +117669,7 @@ vuy dHu dHu dHu -vOQ +jri hNj grS kvB @@ -96556,15 +117679,15 @@ grS grS vOQ eZo -uHt +hCX uHt hYS iRo -uHt -hvh -uHt -uHt -sES +aeY +aeY +aeY +aeW +dBp jWH jWH spW @@ -96611,8 +117734,10 @@ clc wwR wwR pNj +hCs "} (207,1,2) = {" +hCs rEu rEu rEu @@ -96627,32 +117752,33 @@ rEu rEu rEu rEu +eLL +fFS +fFS +ear +eLL +fFS +fFS +eLL +nrW rEu rEu rEu rEu +gxi rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -rEu -rEu -gXs -gXs -gXs +fXV +fFS +dDb +fFS +fFS +sPs +fFS +fFS +dDb +eLL rEu dHu dHu @@ -96665,10 +117791,10 @@ grS pCu dHu dHu +aAJ grS grS -grS -grS +eeE grS grS dHu @@ -96678,10 +117804,10 @@ grS grS grS grS -grS +eeE grS lYR -grS +eeE grS grS grS @@ -96695,11 +117821,11 @@ dHu dHu grS grS -vOQ +pCu wMD mTp mTp -hNj +iZT urk hNj urk @@ -96722,11 +117848,11 @@ tqt uHt hYS iRo -uHt -sfR -uHt -uHt -sES +aeY +kUs +aeY +aeW +dBp loX loX loX @@ -96773,8 +117899,10 @@ ccA ohU wwR pNj +hCs "} (208,1,2) = {" +hCs rEu rEu rEu @@ -96789,6 +117917,13 @@ rEu rEu rEu rEu +ear +dDb +fFS +fFS +fFS +fFS +ear rEu rEu rEu @@ -96799,22 +117934,16 @@ rEu rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs +pOn +tIr +fFS +fFS +fFS +fFS +fFS +fFS +fFS +ear rEu dHu dHu @@ -96831,6 +117960,7 @@ dHu dHu grS grS +eeE grS grS grS @@ -96841,10 +117971,9 @@ grS grS grS grS -grS -grS -grS -grS +eeE +eeE +eeE grS grS grS @@ -96877,7 +118006,7 @@ mTp dHu grS hNj -vOQ +pCu vOQ eZo afA @@ -96935,8 +118064,10 @@ qXz ohU wwR pNj +hCs "} (209,1,2) = {" +hCs rEu rEu rEu @@ -96949,6 +118080,15 @@ rEu rEu rEu rEu +uuR +ahh +fFS +fFS +fFS +fFS +dDb +fFS +uwr rEu rEu rEu @@ -96960,22 +118100,14 @@ rEu rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs +aDW +fFS +fFS +fFS +fFS +dDb +fFS +ear rEu rEu dHu @@ -97004,12 +118136,12 @@ pCu grS grS grS +eeE grS grS -grS -grS +efx jIj -grS +jDv grS hNj dHu @@ -97024,11 +118156,11 @@ dHu dHu dHu grS -grS -vOQ +aAJ +pCu grS grS -kvB +afh mTp dHu dHu @@ -97097,8 +118229,10 @@ pdj wwR wwR pNj +hCs "} (210,1,2) = {" +hCs rEu rEu rEu @@ -97111,6 +118245,14 @@ rEu rEu rEu rEu +bLP +ahh +ear +eLL +bru +fFS +ear +eLL rEu rEu rEu @@ -97124,20 +118266,13 @@ rEu rEu rEu rEu -rEu -rEu -rEu -rEu -rEu -rEu -gXs -gXs +aOt ejR iBK -gXs -gXs -gXs -gXs +fFS +fFS +fFS +mYS rEu dHu dHu @@ -97151,7 +118286,7 @@ kvB dHu dHu dHu -dHu +mTp dHu dHu dHu @@ -97160,7 +118295,7 @@ grS grS vOQ pCu -hNj +grS hNj vOQ grS @@ -97170,7 +118305,7 @@ grS grS grS grS -grS +owB gKt hNj hNj @@ -97190,7 +118325,7 @@ vOQ jjj vOQ grS -grS +eeE mTp dHu dHu @@ -97202,7 +118337,7 @@ dHu dHu grS vOQ -vOQ +pCu eZo hvh uHt @@ -97216,7 +118351,7 @@ eZo qfM jQh uHt -hbJ +fpC uHt uHt uHt @@ -97259,8 +118394,10 @@ gwp ohU wwR pNj +hCs "} (211,1,2) = {" +hCs rEu rEu rEu @@ -97278,6 +118415,7 @@ rEu rEu rEu rEu +ndy rEu rEu rEu @@ -97292,29 +118430,29 @@ rEu rEu rEu rEu -wQY -wQY +qFi +vLQ aBk mBh iBK -gXs -gXs -gXs -wcn +reC +fFS +rEu +rEu dHu dHu dHu dHu -grS +aAJ grS lYR -grS +eeE grS dHu -dHu -pCu -pCu -vOQ +mTp +daO +daO +jjj dHu dHu dHu @@ -97323,12 +118461,12 @@ grS pCu vOQ hNj -hNj -hNj grS +hNj grS grS -vOQ +efx +pCu grS grS grS @@ -97344,11 +118482,11 @@ mnA mnA mnA dHu -grS +efx grS lYR grS -kvB +qao jjj grS grS @@ -97363,11 +118501,11 @@ dHu dHu dHu grS -vOQ +pCu vOQ eZo qYD -uHt +qYD uHt sfR uiK @@ -97378,7 +118516,7 @@ uiK qfM jQh uHt -gXT +rjI tVS uHt hbJ @@ -97403,9 +118541,9 @@ ekO ekO jtN aPh -hQz -hQz -pLW +pde +iiy +wda pNc ekO ekO @@ -97421,8 +118559,11 @@ gwp ohU wwR pNj +hCs "} (212,1,2) = {" +hCs +rEu rEu rEu rEu @@ -97456,41 +118597,41 @@ rEu dHu dHu rqb -rqb -rqb +oJL +oJL mBh wQY wQY wQY -aBk +lmg dHu dHu grS hNj grS grS -grS -grS +eeE +paL grS grS hNj -grS -grS -pCu +kvB +kvB +daO dHu dHu dHu dHu grS vOQ -hNj -hNj +grS +aAJ hNj grS grS +eeE dHu -dHu -vOQ +pCu vOQ grS grS @@ -97503,7 +118644,7 @@ dHu dHu mnA mnA -fse +iJp mnA mnA grS @@ -97525,7 +118666,7 @@ dHu dHu dHu grS -vVZ +vOQ vOQ eZo eZo @@ -97562,15 +118703,15 @@ uPp jYm mqV nAj -wda +slX jOD -wWG +sHn wWG wWG wWG fha -hQz -hQz +otE +otE vgG uPp uPp @@ -97583,8 +118724,10 @@ gwp wwR wwR pNj +hCs "} (213,1,2) = {" +hCs rEu rEu rEu @@ -97609,8 +118752,9 @@ rEu rEu rEu rEu -izc -rqb +rEu +wbT +tYA rEu rEu rEu @@ -97618,27 +118762,27 @@ rEu dHu rqb rqb -rqb -rqb +oJL +oJL nXi +oJL rqb -rqb -grS -grS -grS grS grS grS +lYR grS grS grS +eeE +pLw gKt +eeE grS grS +mTp grS -dHu -grS -dHu +mTp dHu dHu dHu @@ -97649,24 +118793,24 @@ hNj hNj hNj grS -grS +eeE dHu dHu dHu -vOQ -vOQ +pCu +pCu grS grS grS vOQ vOQ -vOQ +pCu dHu dHu mnA doo -fse -aQt +lmX +fGt dhH grS vOQ @@ -97675,7 +118819,7 @@ kvB lYR grS grS -grS +afK mTp dHu dHu @@ -97688,10 +118832,10 @@ dHu mTp grS grS +pCu vOQ vOQ -vOQ -vOQ +pCu vOQ vOQ dJC @@ -97699,7 +118843,7 @@ pSz fse fse eZo -qfM +lMC jQh uHt uHt @@ -97726,13 +118870,13 @@ oOu oOu oOu rRF -hQz +mtu hQz hQz mtu -otE -otE -otE +pLW +mtu +mtu mtu uPp uPp @@ -97745,8 +118889,10 @@ gwp ohU wwR pNj +hCs "} (214,1,2) = {" +hCs rEu rEu rEu @@ -97766,26 +118912,27 @@ rEu rEu rEu rEu -agp -agp -ago +rEu +net +ihd +oPP agl agj iZJ -lTn -lTn -izc -grS -grS -rqb -rqb -rqb -rqb -rqb -rqb -rqb -rqb +fol +jTJ +rfB +grS +lYn +tYA +tuA +tYA +oNZ rqb +uFp +omr +iwZ +tYA grS grS abA @@ -97796,22 +118943,22 @@ grS hNj hNj grS -dqe +wGF grS hNj -grS +kvB dHu dHu dHu +efx grS grS +eeE +eeE +eeE grS grS -grS -grS -grS -grS -grS +eeE dHu dHu dHu @@ -97821,23 +118968,23 @@ vOQ grS lYR grS -vOQ +pCu dHu dHu dHu mnA mnA cKb -aQt +xbC eQT vOQ -vOQ +pCu jjj jjj grS grS hNj -kvB +afh mTp dHu dHu @@ -97851,10 +118998,10 @@ mTp mTp grS hNj -vOQ -vOQ +pCu +uUW ime -vOQ +pCu vOQ tWZ hZD @@ -97865,11 +119012,11 @@ jbz jQh uHt uHt -uHt wts uHt uHt uHt +uHt vkr uHt uHt @@ -97885,14 +119032,14 @@ uPp uPp uPp dxe -xtY +fba nAj -wda -wda -wda -bUq -bUq -otE +slX +sHn +wWG +wWG +wWG +cOD otE otE mtu @@ -97907,8 +119054,10 @@ gwp ohU wwR pNj +hCs "} (215,1,2) = {" +hCs rEu rEu rEu @@ -97926,24 +119075,25 @@ rEu rEu rEu rEu -agp -agp -agp +rEu +rpK +hxT +qLi agq agp agm -msN -msN -msN -msN -iZK -grS +eci +qMR +hTQ +xct +jQc +lYn grS qrT -lTn +yio izc rqb -rqb +tLD mVW mVW mVW @@ -97959,7 +119109,7 @@ dHu dHu grS grS -grS +eeE grS grS hNj @@ -97968,11 +119118,11 @@ mTp kvB grS grS +eeE +eeE grS grS -grS -grS -grS +efx dHu dHu dHu @@ -97988,9 +119138,9 @@ dHu dHu dHu mnA +hbF tKk -tKk -fse +nxw sel vOQ vOQ @@ -97998,7 +119148,7 @@ jjj grS hNj urk -urk +pyD dHu dHu dHu @@ -98023,14 +119173,14 @@ hZD jpc fse eZo -qfM +vJu jQh uHt uHt -uHt gaT +tfd uHt -uHt +qYD uHt tnu kpU @@ -98038,7 +119188,7 @@ kpU kpU uHt vJs -hbJ +lTI rPS jMw uPp @@ -98049,11 +119199,11 @@ uPp dxe aej nAj +slX +iiy wda -wda -wda -bUq -bUq +qZK +xtY cbg oOu oOu @@ -98069,8 +119219,11 @@ gwp wwR wwR pNj +hCs "} (216,1,2) = {" +hCs +rEu rEu rEu rEu @@ -98091,18 +119244,18 @@ rEu agp agp agp -agj +njH ago agn -bsA -bsA +piR +bko kbH -msN +rwH cCI lTn -lTn +wKE gve -msN +lFg iZK rqb mVW @@ -98110,7 +119263,7 @@ mVW mVW mVW rqb -rqb +tYA grS grS pCu @@ -98118,27 +119271,27 @@ vOQ pCu dHu dHu +efx grS grS -grS -grS -grS -grS +eeE +eeE +eeE grS grS grS kvB grS -abA +uIy +eeE grS grS -gKt dHu dHu dHu dHu dHu -vOQ +grS pCu pCu vOQ @@ -98154,12 +119307,12 @@ gnB ucq aQt eOO -vOQ +pCu vOQ wme grS -kvB -kvB +afh +afh dHu dHu dHu @@ -98189,18 +119342,18 @@ qfM jQh uHt uHt -uHt jrf uHt xaO +mye uHt niq uHt -uHt -uHt +xGw +xGw uHt ign -gXT +gcW rPS jMw uPp @@ -98231,8 +119384,11 @@ gwp ohU wwR pNj +hCs "} (217,1,2) = {" +hCs +rEu rEu rEu rEu @@ -98253,24 +119409,24 @@ agp agp agp agp -agp +efC rEu rEu rEu grS -vbU -bsA -kbH -msN -msN +rSl +pvr +oQs +oCA +xtc msN -msN -iZK -rqb +tnE +kIK +cKj mVW mVW -rqb -rqb +frc +fBj rqb grS grS @@ -98282,15 +119438,15 @@ dHu grS grS grS +eeE grS grS grS grS grS grS -grS -kvB kvB +afh kvB grS grS @@ -98299,8 +119455,8 @@ dHu dHu dHu dHu -vOQ -vOQ +tHd +pCu vOQ vOQ grS @@ -98314,7 +119470,7 @@ dHu mnA ekV etm -aQt +xbC qLS grS hNj @@ -98337,31 +119493,31 @@ dHu dHu dHu mTp -grS +aAJ hNj grS grS -vOQ +pCu dJC hZD fse fse -eZo +uiK qfM wso gYw gYw gYw gYw -gYw +mRY uGY gYw -gYw +aob sVP vuc sVP kqm -gYw +czE lqq qfM jMw @@ -98393,8 +119549,11 @@ pdj ohU wwR pNj +hCs "} (218,1,2) = {" +hCs +rEu rEu rEu rEu @@ -98421,19 +119580,19 @@ rEu rEu rEu grS -grS +mcH vbU bsA -bsA -bsA -bsA +fbg +pQZ +xOt qQw rqb rqb +tpp rqb rqb -rqb -rqb +tYA grS dHu dHu @@ -98464,9 +119623,9 @@ dHu dHu jIj grS -afO grS grS +aAJ dHu dHu dHu @@ -98479,8 +119638,8 @@ qlm mnA nsp mTp -lfU -kvB +wNI +afh mTp dHu dHu @@ -98499,12 +119658,12 @@ dHu dHu dHu mTp -kvB -grS +afh +eeE jIj grS hNj -vOQ +tLe hZD fse wPb @@ -98515,11 +119674,11 @@ qfM qfM ppC qfM -qfM xul -qfM -qfM -tUV +xBc +kRT +qEE +brH yaz tUV nUi @@ -98555,8 +119714,11 @@ vbm wwR wwR pNj +hCs "} (219,1,2) = {" +hCs +rEu rEu rEu rEu @@ -98588,15 +119750,15 @@ rEu grS grS grS -rqb -rqb -rqb -grS +tYA +oNZ +tYA grS grS grS grS grS +hNj dHu dHu dHu @@ -98606,7 +119768,7 @@ dHu dHu dHu grS -vOQ +pCu vOQ vOQ dHu @@ -98717,8 +119879,11 @@ qXz idL wwR pNj +hCs "} (220,1,2) = {" +hCs +rEu rEu rEu rEu @@ -98752,9 +119917,9 @@ mVW dHu dHu dHu +hNj grS -grS -grS +lYR dHu dHu dHu @@ -98827,8 +119992,8 @@ dHu mTp mTp dHu -grS -vOQ +aAJ +pCu vOQ vOQ vOQ @@ -98879,8 +120044,11 @@ idL idL wwR pNj +hCs "} (221,1,2) = {" +hCs +rEu rEu rEu rEu @@ -99041,168 +120209,172 @@ wwR wwR wwR pNj +hCs "} (222,1,2) = {" -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs "} (1,1,3) = {" @@ -99366,26 +120538,31 @@ hCs hCs hCs hCs +hCs +hCs +hCs "} (2,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -99528,19 +120705,22 @@ cit cit cit cit +hCs "} (3,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kuQ kuQ @@ -99690,19 +120870,22 @@ cit cit cit cit +hCs "} (4,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kuQ kuQ @@ -99852,157 +121035,11 @@ cit cit cit cit +hCs "} (5,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -kuQ -kuQ -kuQ -kuQ -kuQ -kuQ -kuQ -tAB -tAB -tAB -tAB -tAB -tAB -tAB -tAB -kuQ -kuQ -kuQ -kuQ -kuQ -kuQ -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -cit -cit -cit -cit -cit -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -xeE -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -cit -cit -cit -cit -xeE -xeE -xeE -cit -cit -cit -cit -cit -cit -cit -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -cit -cit -cit -cit -cit -cit -cit -cit -cit +hCs +vnP cit cit cit @@ -100014,19 +121051,6 @@ cit cit cit cit -"} -(6,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE kuQ kuQ kuQ @@ -100092,11 +121116,10 @@ cit cit cit cit -xeE -xeE -pNL -pNL -pNL +cit +cit +cit +cit pNL pNL pNL @@ -100113,8 +121136,9 @@ cit cit cit cit -pNL -pNL +xeE +xeE +xeE pNL pNL pNL @@ -100134,9 +121158,9 @@ cit cit cit cit -cit -cit -cit +xeE +xeE +xeE cit cit cit @@ -100176,12 +121200,140 @@ cit cit cit cit +hCs "} -(7,1,3) = {" +(6,1,3) = {" +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +kuQ +kuQ +kuQ +kuQ +kuQ +kuQ +kuQ +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +kuQ +kuQ +kuQ +kuQ +kuQ +kuQ +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +xeE +xeE +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +cit +cit +cit +cit +cit +pNL +pNL +pNL +pNL +pNL +pNL +pNL +xeE xeE xeE xeE xeE +pNL +pNL +pNL +pNL +pNL +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +xeE xeE xeE xeE @@ -100189,6 +121341,46 @@ xeE xeE xeE xeE +xeE +xeE +xeE +xeE +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +hCs +"} +(7,1,3) = {" +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kuQ kuQ @@ -100338,16 +121530,19 @@ cit cit cit cit +hCs "} (8,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -100500,16 +121695,19 @@ cit cit cit cit +hCs "} (9,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -100662,16 +121860,19 @@ cit cit cit cit +hCs "} (10,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -100824,16 +122025,19 @@ cit cit cit cit +hCs "} (11,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -100986,13 +122190,16 @@ cit cit cit cit +hCs "} (12,1,3) = {" -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit tAB tAB tAB @@ -101148,44 +122355,47 @@ cit cit cit cit +hCs "} (13,1,3) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb tAB tAB tAB @@ -101204,7 +122414,7 @@ cit cit pNL pNL -pNL +kbk cit cit cit @@ -101310,45 +122520,48 @@ cit cit cit cit +hCs "} (14,1,3) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb tAB tAB tAB @@ -101366,11 +122579,11 @@ cit pNL pNL pNL -pNL -pNL -pNL -pNL -pNL +brx +aac +aac +aac +aac cit pNL pNL @@ -101472,50 +122685,53 @@ cit cit cit cit +hCs "} (15,1,3) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -101528,12 +122744,12 @@ cit pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aac +jLB +jms +aac +fxx pNL pNL cit @@ -101634,12 +122850,52 @@ cit cit cit cit +hCs "} (16,1,3) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb tAB pNL pNL @@ -101653,49 +122909,12 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +vpO +bwm +bwm +nFi +fxx pNL pNL pNL @@ -101796,12 +123015,52 @@ cit cit cit cit +hCs "} (17,1,3) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb tAB pNL pNL @@ -101815,49 +123074,12 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +vIw +tqr +dLa +vIw +fxx pNL pNL pNL @@ -101958,12 +123180,52 @@ cit cit cit cit +hCs "} (18,1,3) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +tAB +kHb +kHb +kHb +kHb +kHb +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +obT +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb tAB pNL pNL @@ -101977,49 +123239,12 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +jPi +dYa +aQb +tVE +ulk +mZX pNL pNL pNL @@ -102120,35 +123345,21 @@ cit cit cit cit +hCs "} (19,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -tAB -tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -102171,16 +123382,33 @@ pNL pNL pNL pNL +yaI +kHb +kHb +kHb +kHb +tAB +tAB +kHb +kHb +tAB pNL pNL pNL pNL pNL +tAB +wEF +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -102268,48 +123496,38 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(20,1,3) = {" -tAB -tAB -tAB -tAB -tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +xeE +xeE +xeE +xeE +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +hCs +"} +(20,1,3) = {" +hCs +ahO +tAB +tAB +tAB +tAB +tAB +kHb +kHb +kHb +kHb +lEd +pNL +pNL +pNL pNL pNL pNL @@ -102325,24 +123543,37 @@ pNL pNL pNL pNL -iTI -wEF -wEF -wEF -wEF -wEF -wEF -wEF -vjh pNL pNL pNL pNL +yaI +kHb +kHb +kHb +kHb +tAB +tAB +kHb +kHb +tAB +tAB +tAB +wEF +wEF +wEF +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx xeE pNL pNL @@ -102444,27 +123675,21 @@ cit cit cit cit +hCs "} (21,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -102492,19 +123717,28 @@ kHb kHb kHb kHb +tAB +tAB kHb kHb -kHb -lEd -pNL -pNL -pNL -pNL +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx xeE pNL pNL @@ -102606,27 +123840,21 @@ cit cit cit cit +hCs "} (22,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -102657,16 +123885,25 @@ kHb kHb kHb kHb -lEd -pNL -pNL -pNL -pNL +kHb +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -102768,27 +124005,21 @@ cit cit cit cit +hCs "} (23,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -102819,16 +124050,25 @@ kHb kHb kHb kHb -lEd -pNL -pNL -pNL -pNL +kHb +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -102930,27 +124170,21 @@ cit cit cit cit +hCs "} (24,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -102981,16 +124215,25 @@ kHb kHb kHb kHb -lEd -pNL -pNL -pNL -pNL +kHb +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -103092,27 +124335,21 @@ cit cit cit cit +hCs "} (25,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -103143,16 +124380,25 @@ kHb kHb kHb kHb -lEd -pNL -pNL -pNL -pNL +kHb +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -103254,27 +124500,21 @@ cit cit cit cit +hCs "} (26,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -103305,16 +124545,25 @@ kHb kHb kHb kHb -lEd -pNL -pNL -pNL -pNL +kHb +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -103416,27 +124665,21 @@ cit cit cit cit +hCs "} (27,1,3) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -103464,19 +124707,28 @@ kHb kHb kHb kHb +tAB +tAB kHb kHb -kHb -lEd -pNL -pNL -pNL -pNL +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -103578,13 +124830,21 @@ cit cit cit cit +hCs "} (28,1,3) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -103607,38 +124867,33 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -crL -obT -obT -obT -obT +yaI +kHb +kHb +kHb +kHb +tAB +tAB +kHb +kHb +tAB +tAB +tAB obT obT obT -xSw -pNL -pNL -pNL -pNL +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -103740,15 +124995,21 @@ cit cit cit cit +hCs "} (29,1,3) = {" -xeE -tAB -tAB +hCs +vnP +cit tAB tAB tAB tAB +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -103771,36 +125032,33 @@ pNL pNL pNL pNL +yaI +kHb +kHb +kHb +kHb +tAB +tAB +kHb +kHb +tAB pNL pNL pNL pNL pNL +tAB +obT +tAB pNL pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -103902,13 +125160,53 @@ cit cit cit cit +hCs "} (30,1,3) = {" -xeE +hCs +vnP +cit tAB tAB tAB tAB +kHb +kHb +kHb +kHb +kHb +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +tAB pNL pNL pNL @@ -103922,47 +125220,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -104064,13 +125325,53 @@ cit cit cit cit +hCs "} (31,1,3) = {" -xeE +hCs +vnP +cit tAB tAB tAB tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +tAB pNL pNL pNL @@ -104084,47 +125385,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -104226,13 +125490,53 @@ cit cit cit cit +hCs "} (32,1,3) = {" -xeE +hCs +vnP +cit tAB tAB tAB tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +tAB pNL pNL pNL @@ -104245,6 +125549,12 @@ pNL pNL pNL pNL +kbk +oah +aQb +tVE +gTQ +lzI pNL pNL pNL @@ -104255,55 +125565,12 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kbk cit cit cit cit -pNL +lzI pNL cit cit @@ -104388,13 +125655,53 @@ cit cit cit cit +hCs "} (33,1,3) = {" -xeE +hCs +vnP +cit tAB tAB tAB tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +tAB pNL pNL pNL @@ -104407,65 +125714,28 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +vIw +gUq +kzK +vIw +gTQ +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +thm +vIw +aac +aac +aac +fxx pNL pNL pNL @@ -104550,84 +125820,87 @@ cit cit cit cit +hCs "} (34,1,3) = {" -xeE +hCs +vnP +cit tAB tAB tAB tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +tAB pNL pNL pNL pNL pNL +tAB +tAB +tAB pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aac +xWz +xWz +mxf +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +tsZ +xWz +hYq +eRR +fxx pNL xeE xeE @@ -104693,87 +125966,12 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -cit -cit -pNL -pNL -pNL -pNL -pNL -pNL -pNL -cit -cit -cit -cit -cit -cit -"} -(35,1,3) = {" -xeE -tAB -tAB -tAB -tAB -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +xeE +xeE +xeE +xeE +cit +cit pNL pNL pNL @@ -104781,15 +125979,93 @@ pNL pNL pNL pNL +cit +cit +cit +cit +cit +cit +hCs +"} +(35,1,3) = {" +hCs +vnP +cit +tAB +tAB +tAB +tAB +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +tAB +tAB +tAB +tAB +tAB +tAB +tAB pNL pNL pNL pNL pNL +tAB +tAB +tAB pNL pNL pNL pNL +brx +aac +xWz +xWz +vKI +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +upr +xWz +wdY +eRR +fxx pNL pNL xeE @@ -104874,67 +126150,48 @@ cit cit cit cit +hCs "} (36,1,3) = {" -xeE +hCs +vnP +cit +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB +tAB tAB tAB tAB tAB -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -vjh -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -104952,6 +126209,28 @@ pNL pNL pNL pNL +brx +vIw +gUq +kzK +vIw +ulk +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +fld +vIw +tqr +dLa +vIw +fxx pNL pNL pNL @@ -105036,57 +126315,48 @@ cit cit cit cit +hCs "} (37,1,3) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB obT obT +tAB +tAB obT obT obT obT obT obT +tAB +tAB obT obT obT obT +tAB +tAB obT obT obT obT obT obT +tAB +tAB obT obT obT obT -obT -obT -obT -obT -obT -obT -obT -obT -obT -xSw -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +tAB +tAB pNL pNL pNL @@ -105104,6 +126374,12 @@ pNL pNL pNL pNL +jPi +dYa +aQb +tVE +ulk +mZX pNL pNL pNL @@ -105114,6 +126390,12 @@ pNL pNL pNL pNL +jPi +fld +aQb +tVE +ulk +mZX pNL pNL pNL @@ -105198,35 +126480,48 @@ cit cit cit cit +hCs "} (38,1,3) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB pNL pNL +tAB +tAB pNL pNL pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB pNL pNL pNL @@ -105245,6 +126540,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105257,24 +126556,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105360,10 +126645,13 @@ cit cit cit cit +hCs "} (39,1,3) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB @@ -105417,6 +126705,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105429,14 +126721,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105522,25 +126810,15 @@ cit cit cit cit +hCs "} (40,1,3) = {" +hCs +vnP +cit +cit xeE xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -105578,15 +126856,24 @@ pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB +tAB pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105599,6 +126886,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105684,22 +126975,18 @@ cit cit cit cit +hCs "} (41,1,3) = {" +hCs +vnP +cit +cit xeE xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL +tAB +tAB pNL pNL pNL @@ -105728,23 +127015,30 @@ pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB +tAB xeE xeE pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105757,10 +127051,10 @@ pNL xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105846,21 +127140,18 @@ cit cit cit cit +hCs "} (42,1,3) = {" +hCs +vnP +cit +cit +cit xeE xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +tAB +tAB pNL pNL pNL @@ -105889,24 +127180,30 @@ pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB pNL pNL pNL pNL +tAB +tAB xeE xeE xeE xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -105919,10 +127216,10 @@ xeE xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106008,11 +127305,14 @@ cit cit cit cit +hCs "} (43,1,3) = {" -xeE -xeE -xeE +hCs +vnP +cit +cit +cit xeE xeE xeE @@ -106065,10 +127365,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106081,10 +127381,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106170,29 +127470,86 @@ cit cit cit cit +hCs "} (44,1,3) = {" +hCs +vnP +cit +cit +cit +cit xeE xeE xeE +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL xeE xeE -xeE -xeE pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx +pNL pNL pNL pNL +xeE +xeE pNL pNL pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106262,6 +127619,63 @@ pNL pNL pNL pNL +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +hCs +"} +(45,1,3) = {" +hCs +vnP +cit +cit +cit +cit +cit +xeE +xeE +xeE +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL pNL pNL pNL @@ -106275,130 +127689,16 @@ pNL pNL pNL xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(45,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +pNL +pNL +pNL +pNL +pNL +pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106411,6 +127711,12 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx +pNL +pNL pNL pNL pNL @@ -106494,24 +127800,19 @@ cit cit cit cit +hCs "} (46,1,3) = {" +hCs +vnP +cit +cit +cit +cit +cit xeE xeE xeE -xeE -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -106559,6 +127860,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106571,6 +127876,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106656,25 +127965,20 @@ cit cit cit cit +hCs "} (47,1,3) = {" +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE -xeE -xeE -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -106721,6 +128025,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106733,6 +128041,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106818,14 +128130,17 @@ cit cit cit cit +hCs "} (48,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE @@ -106875,6 +128190,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106887,14 +128206,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -106980,14 +128295,17 @@ cit cit cit cit +hCs "} (49,1,3) = {" -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE @@ -107035,6 +128353,17 @@ pNL pNL pNL pNL +kbk +rcE +thm +aQb +tVE +gTQ +rcE +rcE +rcE +rcE +lzI pNL pNL pNL @@ -107042,21 +128371,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -107142,32 +128460,20 @@ cit cit cit cit +hCs "} (50,1,3) = {" +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE -xeE -xeE -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -107212,6 +128518,17 @@ pNL pNL pNL pNL +brx +tow +yfp +afB +afB +yfp +yfp +yfp +aac +vIw +fxx pNL pNL pNL @@ -107219,6 +128536,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -107304,14 +128625,17 @@ cit cit cit cit +hCs "} (51,1,3) = {" +hCs +ahO tAB tAB tAB tAB tAB -xeE +cit iTI wEF wEF @@ -107359,29 +128683,29 @@ pNL pNL pNL pNL +brx +aQb +afB +afB +afB +afB +afB +afB +aac +aac +fxx pNL pNL pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +kbk +oah +aQb +tVE +gTQ +lzI pNL pNL pNL @@ -107466,8 +128790,11 @@ cit cit cit cit +hCs "} (52,1,3) = {" +hCs +ahO tAB tAB tAB @@ -107521,44 +128848,44 @@ pNL pNL pNL pNL -pNL -pNL -iTI -wEF -wEF -vjh -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -iTI -wEF -wEF -wEF -wEF -wEF -vjh +brx +aQb +aac +neg +neg +uuu +aac +afB +aac +aac +gTQ +rcE +rcE +rcE +rcE +rcE +rcE +thm +vIw +gUq +kzK +vIw +gTQ +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +tqW +oLa +ahG +ahG +ahG +ahG +mrB pNL pNL pNL @@ -107628,8 +128955,11 @@ cit cit cit cit +hCs "} (53,1,3) = {" +hCs +ahO tAB tAB tAB @@ -107683,44 +129013,44 @@ pNL pNL pNL pNL -pNL -pNL -yaI -kHb -kHb -lEd -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -lEd +brx +aQb +aac +phq +phq +oGN +aac +afB +afB +afB +yfp +yfp +yfp +yfp +yfp +yfp +yfp +afB +mxf +xWz +xWz +mxf +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +aac +aac +aac +aac +aac +iQy pNL pNL pNL @@ -107790,8 +129120,11 @@ cit cit cit cit +hCs "} (54,1,3) = {" +hCs +ahO tAB tAB tAB @@ -107845,44 +129178,44 @@ pNL pNL pNL pNL -pNL -pNL -yaI -kHb -kHb -lEd -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -lEd +brx +aQb +aac +phq +phq +rjX +aac +afB +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +afB +vKI +xWz +xWz +vKI +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +afB +afB +ohO +bAh +oBj +bwm +aac +iQy pNL pNL pNL @@ -107952,8 +129285,11 @@ cit cit cit cit +hCs "} (55,1,3) = {" +hCs +ahO tAB tAB tAB @@ -108007,47 +129343,47 @@ pNL pNL pNL pNL -pNL -pNL -crL -obT -obT -xSw -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -iTI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -vjh -pNL -pNL +brx +aQb +aac +neg +neg +aac +aac +tVE +ulk +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +fld +vIw +eRR +eRR +vIw +ulk +eEO +eEO +eEO +eEO +eEO +eEO +dYa +aQb +afB +aac +iaU +lez +khh +aac +aac +mrB +pNL +pNL pNL pNL pNL @@ -108114,8 +129450,11 @@ cit cit cit cit +hCs "} (56,1,3) = {" +hCs +ahO tAB tAB tAB @@ -108169,6 +129508,15 @@ pNL pNL pNL pNL +brx +vSE +gRj +afB +afB +gRj +gRj +uEQ +pZG pNL pNL pNL @@ -108177,37 +129525,28 @@ pNL pNL pNL pNL -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +jPi +eEO +eEO +eEO +eEO +mZX pNL pNL pNL pNL pNL -xeE pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd +brx +aQb +afB +neg +beh +oAI +khh +mji +neg +iQy pNL pNL pNL @@ -108276,8 +129615,11 @@ cit cit cit cit +hCs "} (57,1,3) = {" +hCs +ahO tAB tAB tAB @@ -108331,15 +129673,15 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE +jPi +eEO +dYa +aQb +tVE +ulk +eEO +eEO +ahE pNL pNL pNL @@ -108358,18 +129700,18 @@ pNL xeE xeE xeE -xeE -xeE pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd +pNL +brx +aQb +afB +aac +aac +aac +qpf +mji +neg +iQy pNL pNL pNL @@ -108438,8 +129780,11 @@ cit cit cit cit +hCs "} (58,1,3) = {" +hCs +ahO tAB tAB tAB @@ -108495,10 +129840,10 @@ xeE xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -108522,16 +129867,16 @@ pNL pNL pNL pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd +brx +aQb +afB +neg +beh +oAI +khh +mji +neg +iQy pNL pNL pNL @@ -108600,8 +129945,11 @@ cit cit cit cit +hCs "} (59,1,3) = {" +hCs +ahO tAB tAB tAB @@ -108657,6 +130005,10 @@ xeE pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -108680,182 +130032,181 @@ pNL pNL pNL pNL +brx +aQb +afB +aac +veJ +kOz +khh +aac +aac +iQy pNL pNL pNL pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd -pNL -pNL -pNL -pNL -xeE -xeE -pNL -pNL -pNL -pNL -pNL -iTI -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -vjh -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -iTI -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -wEF -vjh -cit -cit -cit -cit -cit -cit -cit -cit -"} -(60,1,3) = {" -tAB -tAB -tAB -tAB -tAB -yaI -kHb -kHb -kHb -kHb -lEd -yaI -kHb -kHb -kHb -kHb -lEd -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +xeE +xeE pNL pNL pNL pNL pNL +iTI +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +vjh pNL pNL pNL pNL pNL pNL -xeE pNL pNL pNL -crL -obT +iTI +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +wEF +vjh +cit +cit +cit +cit +cit +cit +cit +cit +hCs +"} +(60,1,3) = {" +hCs +ahO +tAB +tAB +tAB +tAB +tAB +yaI kHb kHb kHb kHb +lEd +yaI kHb -obT -xSw +kHb +kHb +kHb +lEd +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +brx +aQb +tVE +fxx +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +xeE +pNL +pNL +brx +aQb +afB +ohO +fEd +oBj +bwm +aac +aac +frt pNL pNL pNL @@ -108924,8 +130275,11 @@ cit cit cit cit +hCs "} (61,1,3) = {" +hCs +ahO tAB tAB tAB @@ -108981,10 +130335,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109008,14 +130362,14 @@ xeE xeE xeE xeE -pNL -pNL -pNL -yaI -kHb -kHb -kHb -lEd +brx +aQb +afB +aac +aac +aac +aac +aac pNL pNL pNL @@ -109086,8 +130440,11 @@ cit cit cit cit +hCs "} (62,1,3) = {" +hCs +ahO tAB tAB tAB @@ -109143,10 +130500,10 @@ xeE pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109170,14 +130527,14 @@ xeE pNL pNL xeE -pNL -pNL -pNL -crL -obT -obT -obT -xSw +brx +aQb +afB +atY +atY +atY +atY +atY pNL pNL pNL @@ -109248,8 +130605,11 @@ cit cit cit cit +hCs "} (63,1,3) = {" +hCs +ahO tAB tAB tAB @@ -109305,10 +130665,10 @@ xeE xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109332,13 +130692,13 @@ pNL pNL pNL pNL -xeE -pNL -pNL -pNL -kHb +pfW +aQb +tVE +fxx +atY pNL -kHb +atY pNL pNL pNL @@ -109410,8 +130770,11 @@ cit cit cit cit +hCs "} (64,1,3) = {" +hCs +ahO tAB tAB tAB @@ -109467,10 +130830,10 @@ xeE xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109494,10 +130857,10 @@ pNL pNL pNL pNL -pNL -xeE -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109572,8 +130935,11 @@ cit cit cit cit +hCs "} (65,1,3) = {" +hCs +ahO tAB tAB tAB @@ -109629,10 +130995,10 @@ pNL xeE pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109656,10 +131022,10 @@ pNL pNL pNL pNL -pNL -xeE -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109734,8 +131100,11 @@ cit cit cit cit +hCs "} (66,1,3) = {" +hCs +ahO tAB tAB tAB @@ -109791,6 +131160,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109814,14 +131187,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -xeE -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109896,8 +131265,11 @@ cit cit cit cit +hCs "} (67,1,3) = {" +hCs +ahO tAB tAB tAB @@ -109953,6 +131325,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -109976,14 +131352,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -xeE -xeE -pNL -pNL +pfW +aQb +tVE +fxx pNL pNL pNL @@ -110058,8 +131430,11 @@ cit cit cit cit +hCs "} (68,1,3) = {" +hCs +aaj xeE xeE xeE @@ -110115,6 +131490,10 @@ xeE pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110137,15 +131516,11 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -xeE xeE -pNL -pNL -pNL +pfW +aQb +tVE +fxx pNL pNL pNL @@ -110220,8 +131595,11 @@ cit cit cit cit +hCs "} (69,1,3) = {" +hCs +aaj xeE xeE xeE @@ -110277,10 +131655,10 @@ xeE pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110304,10 +131682,10 @@ pNL pNL xeE xeE -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110382,8 +131760,11 @@ cit cit cit cit +hCs "} (70,1,3) = {" +hCs +vnP xeE xeE xeE @@ -110439,10 +131820,10 @@ xeE pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110466,10 +131847,10 @@ xeE xeE xeE pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110544,8 +131925,11 @@ cit cit cit cit +hCs "} (71,1,3) = {" +hCs +vnP xeE xeE xeE @@ -110601,10 +131985,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110628,10 +132012,10 @@ xeE pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL xeE pNL @@ -110706,10 +132090,13 @@ cit cit cit cit +hCs "} (72,1,3) = {" -xeE -xeE +hCs +vnP +cit +cit xeE xeE xeE @@ -110763,10 +132150,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -110790,10 +132177,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx xeE xeE pNL @@ -110868,96 +132255,17 @@ cit cit cit cit +hCs "} (73,1,3) = {" +hCs +vnP +cit +cit xeE xeE xeE xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE -xeE -xeE -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE -pNL pNL pNL pNL @@ -110968,70 +132276,6 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -crL -obT -obT -obT -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -obT -obT -obT -xSw -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd -cit -cit -cit -cit -cit -cit -cit -cit -cit -"} -(74,1,3) = {" xeE xeE xeE @@ -111048,30 +132292,6 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL pNL pNL pNL @@ -111092,24 +132312,23 @@ pNL pNL pNL pNL -xeE -xeE -pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL xeE xeE -xeE -xeE -xeE pNL pNL pNL pNL pNL pNL +xeE pNL pNL pNL @@ -111123,6 +132342,11 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx +xeE pNL pNL pNL @@ -111144,14 +132368,22 @@ crL obT obT obT -obT kHb kHb kHb kHb kHb kHb -obT +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb obT obT obT @@ -111167,10 +132399,6 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL yaI kHb kHb @@ -111192,9 +132420,12 @@ cit cit cit cit +hCs "} -(75,1,3) = {" -xeE +(74,1,3) = {" +hCs +vnP +cit xeE xeE xeE @@ -111211,6 +132442,9 @@ pNL pNL pNL xeE +xeE +xeE +xeE pNL pNL pNL @@ -111246,21 +132480,18 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL +xeE +xeE pNL pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE xeE xeE xeE @@ -111276,6 +132507,10 @@ pNL pNL pNL pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -111298,26 +132533,22 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -yaI +crL +obT +obT +obT +obT kHb kHb kHb kHb -lEd -pNL -pNL -pNL -pNL -pNL +kHb +kHb +obT +obT +obT +obT +xSw pNL pNL pNL @@ -111354,9 +132585,12 @@ cit cit cit cit +hCs "} -(76,1,3) = {" -xeE +(75,1,3) = {" +hCs +vnP +cit xeE xeE xeE @@ -111372,6 +132606,7 @@ pNL pNL pNL pNL +xeE pNL pNL pNL @@ -111410,13 +132645,10 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aQb +tVE +fxx pNL pNL pNL @@ -111425,7 +132657,9 @@ pNL pNL pNL xeE -pNL +xeE +xeE +xeE xeE xeE pNL @@ -111436,6 +132670,14 @@ pNL pNL pNL pNL +kbk +rcE +thm +aQb +tVE +gTQ +rcE +lzI pNL pNL pNL @@ -111461,20 +132703,12 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -crL -obT -obT -obT -obT -xSw +yaI +kHb +kHb +kHb +kHb +lEd pNL pNL pNL @@ -111516,34 +132750,17 @@ cit cit cit cit +hCs "} -(77,1,3) = {" -xeE -xeE -xeE +(76,1,3) = {" +hCs +vnP +cit +cit xeE xeE xeE xeE -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL xeE pNL pNL @@ -111591,10 +132808,25 @@ pNL pNL pNL pNL +kbk +rcE +oah +aQb +tVE +gTQ +rcE +rcE +rcE +rcE +rcE +lzI pNL pNL pNL +xeE pNL +xeE +xeE pNL pNL pNL @@ -111603,6 +132835,14 @@ pNL pNL pNL pNL +brx +vIw +bfc +afB +afB +aNr +vIw +fxx pNL pNL pNL @@ -111628,15 +132868,12 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +crL +obT +obT +obT +obT +xSw pNL pNL pNL @@ -111678,13 +132915,37 @@ cit cit cit cit +hCs "} -(78,1,3) = {" +(77,1,3) = {" +hCs +vnP cit cit +cit +xeE xeE xeE xeE +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL xeE pNL pNL @@ -111712,6 +132973,67 @@ pNL pNL pNL pNL +brx +vIw +aac +afB +afB +yfp +yfp +yfp +yfp +yfp +aNr +gTQ +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +thm +tow +afB +aac +aac +afB +rzy +fxx +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL pNL pNL pNL @@ -111737,12 +133059,43 @@ pNL pNL pNL pNL +yaI +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +kHb +lEd +cit +cit +cit +cit +cit +cit +cit +cit +cit +hCs +"} +(78,1,3) = {" +hCs +vnP +cit +cit +xeE +xeE +xeE +xeE +pNL +pNL +pNL +pNL pNL -iTI -wEF -wEF -wEF -vjh pNL pNL pNL @@ -111770,6 +133123,58 @@ pNL pNL pNL pNL +kbk +rcE +rcE +rcE +rcE +lzI +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +brx +aac +aac +ygq +aac +aac +neg +neg +aac +aac +afB +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +afB +aac +aac +aac +aac +tVE +fxx +pNL +pNL pNL pNL pNL @@ -111840,8 +133245,11 @@ cit cit cit cit +hCs "} (79,1,3) = {" +hCs +vnP cit cit cit @@ -111880,57 +133288,56 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -iTI -wEF -wEF -wEF -kHb -kHb -kHb -kHb -vjh -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aac +qrJ +tdj +vIw +gTQ +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +thm +aac +aac +xXb +khh +mji +phq +phq +vdq +aac +afB +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +afB +aac +aac +aac +aac +tVE +fxx pNL pNL pNL @@ -111979,6 +133386,7 @@ pNL pNL pNL pNL +uIH pNL pNL pNL @@ -112002,8 +133410,11 @@ cit cit cit cit +hCs "} (80,1,3) = {" +hCs +vnP cit cit cit @@ -112042,56 +133453,56 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +aac +aac +bwm +mxf +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +yfp +afB +neg +bwm +bwm +aQH +ilz +ilz +nVQ +neg +tVE +ulk +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +fld +vSE +afB +aac +aac +afB +uEQ +fxx pNL pNL pNL @@ -112164,8 +133575,11 @@ cit cit cit cit +hCs "} (81,1,3) = {" +hCs +vnP cit cit cit @@ -112204,6 +133618,33 @@ pNL pNL pNL pNL +brx +aac +aac +bwm +vKI +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +gRj +afB +ohO +bwm +bwm +oBj +oBj +oBj +oBj +ohO +tVE +fxx pNL pNL pNL @@ -112219,41 +133660,14 @@ pNL pNL pNL pNL -pNL -pNL -yaI -kHb -kHb -kHb -kHb -kHb -kHb -kHb -lEd -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +brx +vIw +pEb +gRj +gRj +ldP +vIw +fxx xeE xeE pNL @@ -112326,8 +133740,11 @@ cit cit cit cit +hCs "} (82,1,3) = {" +hCs +vnP cit cit cit @@ -112366,6 +133783,33 @@ pNL pNL pNL pNL +brx +aac +oWD +oCd +vIw +ulk +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +fld +aac +aac +xoY +bwm +hQy +ihp +ihp +iaU +aac +aac +fxx pNL pNL pNL @@ -112381,41 +133825,14 @@ pNL pNL pNL pNL -pNL -pNL -crL -kHb -kHb -kHb -kHb -kHb -kHb -kHb -xSw -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +jPi +eEO +eEO +eEO +eEO +eEO +eEO +mZX xeE xeE pNL @@ -112488,8 +133905,11 @@ cit cit cit cit +hCs "} (83,1,3) = {" +hCs +vnP cit cit cit @@ -112528,6 +133948,12 @@ pNL pNL pNL pNL +jPi +eEO +eEO +eEO +eEO +mZX pNL pNL pNL @@ -112537,24 +133963,18 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -crL -obT -obT -obT -obT -obT -xSw -pNL -pNL +brx +vIw +aac +aac +aac +aac +neg +neg +aac +aac +vIw +fxx pNL pNL pNL @@ -112650,8 +134070,11 @@ cit cit cit cit +hCs "} (84,1,3) = {" +hCs +vnP cit cit cit @@ -112705,18 +134128,18 @@ pNL pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +jPi +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +eEO +mZX pNL pNL pNL @@ -112812,8 +134235,11 @@ cit cit cit cit +hCs "} (85,1,3) = {" +hCs +vnP cit cit cit @@ -112974,8 +134400,11 @@ cit cit cit cit +hCs "} (86,1,3) = {" +hCs +vnP cit cit cit @@ -113136,8 +134565,11 @@ cit cit cit cit +hCs "} (87,1,3) = {" +hCs +vnP cit cit cit @@ -113298,8 +134730,11 @@ cit cit cit cit +hCs "} (88,1,3) = {" +hCs +vnP cit cit cit @@ -113460,8 +134895,11 @@ cit cit cit cit +hCs "} (89,1,3) = {" +hCs +vnP cit cit cit @@ -113622,8 +135060,11 @@ cit cit cit cit +hCs "} (90,1,3) = {" +hCs +vnP cit cit cit @@ -113784,8 +135225,11 @@ cit cit cit cit +hCs "} (91,1,3) = {" +hCs +vnP cit cit cit @@ -113946,8 +135390,11 @@ cit cit cit cit +hCs "} (92,1,3) = {" +hCs +vnP cit iTI wEF @@ -114108,8 +135555,11 @@ cit cit cit cit +hCs "} (93,1,3) = {" +hCs +vnP cit yaI kHb @@ -114270,8 +135720,11 @@ cit cit cit cit +hCs "} (94,1,3) = {" +hCs +vnP cit yaI kHb @@ -114432,8 +135885,11 @@ cit cit cit cit +hCs "} (95,1,3) = {" +hCs +vnP cit yaI kHb @@ -114594,8 +136050,11 @@ cit cit cit cit +hCs "} (96,1,3) = {" +hCs +vnP cit yaI kHb @@ -114756,8 +136215,11 @@ cit cit cit cit +hCs "} (97,1,3) = {" +hCs +vnP cit yaI kHb @@ -114918,8 +136380,11 @@ cit cit cit cit +hCs "} (98,1,3) = {" +hCs +vnP cit yaI kHb @@ -115080,8 +136545,11 @@ cit cit cit cit +hCs "} (99,1,3) = {" +hCs +vnP cit yaI kHb @@ -115242,8 +136710,11 @@ cit cit cit cit +hCs "} (100,1,3) = {" +hCs +vnP cit yaI kHb @@ -115404,8 +136875,11 @@ cit cit cit cit +hCs "} (101,1,3) = {" +hCs +vnP cit crL obT @@ -115566,8 +137040,11 @@ cit cit cit cit +hCs "} (102,1,3) = {" +hCs +vnP cit cit cit @@ -115728,8 +137205,11 @@ cit cit cit cit +hCs "} (103,1,3) = {" +hCs +vnP cit cit cit @@ -115890,8 +137370,11 @@ cit cit cit cit +hCs "} (104,1,3) = {" +hCs +vnP cit cit cit @@ -116052,8 +137535,11 @@ cit cit cit cit +hCs "} (105,1,3) = {" +hCs +vnP cit cit cit @@ -116214,8 +137700,11 @@ cit cit cit cit +hCs "} (106,1,3) = {" +hCs +vnP cit cit cit @@ -116376,8 +137865,11 @@ cit cit cit cit +hCs "} (107,1,3) = {" +hCs +vnP cit cit pNL @@ -116538,8 +138030,11 @@ cit cit cit cit +hCs "} (108,1,3) = {" +hCs +vnP cit cit cit @@ -116700,8 +138195,11 @@ cit cit cit cit +hCs "} (109,1,3) = {" +hCs +vnP cit cit cit @@ -116862,8 +138360,11 @@ wEF vjh cit cit +hCs "} (110,1,3) = {" +hCs +vnP cit cit cit @@ -117024,8 +138525,11 @@ kHb lEd cit cit +hCs "} (111,1,3) = {" +hCs +vnP cit cit cit @@ -117186,8 +138690,11 @@ kHb kHb vjh cit +hCs "} (112,1,3) = {" +hCs +vnP cit cit cit @@ -117348,8 +138855,11 @@ kHb kHb lEd cit +hCs "} (113,1,3) = {" +hCs +vnP cit cit cit @@ -117510,8 +139020,11 @@ kHb kHb lEd cit +hCs "} (114,1,3) = {" +hCs +vnP cit cit cit @@ -117672,8 +139185,11 @@ kHb kHb lEd cit +hCs "} (115,1,3) = {" +hCs +vnP cit cit cit @@ -117834,8 +139350,11 @@ kHb kHb lEd cit +hCs "} (116,1,3) = {" +hCs +vnP cit cit cit @@ -117996,8 +139515,11 @@ kHb kHb lEd cit +hCs "} (117,1,3) = {" +hCs +vnP cit cit cit @@ -118158,8 +139680,11 @@ kHb kHb lEd cit +hCs "} (118,1,3) = {" +hCs +vnP cit cit cit @@ -118320,8 +139845,11 @@ kHb kHb xSw cit +hCs "} (119,1,3) = {" +hCs +vnP cit pNL pNL @@ -118482,8 +140010,11 @@ kHb lEd cit cit +hCs "} (120,1,3) = {" +hCs +vnP cit pNL pNL @@ -118644,8 +140175,11 @@ obT xSw cit cit +hCs "} (121,1,3) = {" +hCs +vnP cit pNL pNL @@ -118806,8 +140340,11 @@ cit cit cit cit +hCs "} (122,1,3) = {" +hCs +vnP cit pNL pNL @@ -118968,8 +140505,11 @@ cit cit cit cit +hCs "} (123,1,3) = {" +hCs +vnP cit cit pNL @@ -119130,8 +140670,11 @@ cit cit cit cit +hCs "} (124,1,3) = {" +hCs +vnP cit cit cit @@ -119292,8 +140835,11 @@ cit cit cit cit +hCs "} (125,1,3) = {" +hCs +vnP cit cit xeE @@ -119454,8 +141000,11 @@ cit cit cit cit +hCs "} (126,1,3) = {" +hCs +vnP cit xeE xeE @@ -119616,8 +141165,11 @@ cit cit cit cit +hCs "} (127,1,3) = {" +hCs +vnP xeE xeE pNL @@ -119778,8 +141330,11 @@ cit cit cit cit +hCs "} (128,1,3) = {" +hCs +vnP xeE pNL pNL @@ -119940,8 +141495,11 @@ cit cit cit cit +hCs "} (129,1,3) = {" +hCs +vnP xeE pNL pNL @@ -120102,8 +141660,11 @@ cit cit cit cit +hCs "} (130,1,3) = {" +hCs +vnP xeE pNL pNL @@ -120264,8 +141825,11 @@ cit cit cit cit +hCs "} (131,1,3) = {" +hCs +vnP xeE xeE pNL @@ -120426,8 +141990,11 @@ cit cit cit cit +hCs "} (132,1,3) = {" +hCs +vnP cit xeE xeE @@ -120588,8 +142155,11 @@ cit cit cit cit +hCs "} (133,1,3) = {" +hCs +vnP cit cit xeE @@ -120744,14 +142314,17 @@ cit cit xeE cit +xlm cit cit cit +xlm cit -cit -cit +hCs "} (134,1,3) = {" +hCs +vnP cit cit cit @@ -120905,15 +142478,18 @@ pNL xeE xeE xeE -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (135,1,3) = {" +hCs +vnP cit cit cit @@ -121066,16 +142642,19 @@ pNL pNL pNL xeE -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (136,1,3) = {" +hCs +vnP cit cit cit @@ -121228,16 +142807,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (137,1,3) = {" +hCs +vnP cit cit cit @@ -121390,16 +142972,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (138,1,3) = {" +hCs +vnP cit cit cit @@ -121552,16 +143137,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (139,1,3) = {" +hCs +vnP cit cit cit @@ -121714,16 +143302,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (140,1,3) = {" +hCs +vnP cit cit cit @@ -121876,16 +143467,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (141,1,3) = {" +hCs +vnP cit cit cit @@ -122038,16 +143632,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (142,1,3) = {" +hCs +vnP cit cit cit @@ -122201,15 +143798,18 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (143,1,3) = {" +hCs +vnP cit cit cit @@ -122364,14 +143964,17 @@ pNL pNL pNL pNL -pNL -xeE +xlm xeE xeE xeE +xlm xeE +hCs "} (144,1,3) = {" +hCs +vnP cit cit cit @@ -122532,8 +144135,11 @@ xeE xeE xeE xeE +hCs "} (145,1,3) = {" +hCs +vnP cit cit cit @@ -122694,8 +144300,11 @@ xeE xeE xeE xeE +hCs "} (146,1,3) = {" +hCs +vnP cit cit cit @@ -122856,8 +144465,11 @@ xeE xeE xeE xeE +hCs "} (147,1,3) = {" +hCs +vnP cit cit cit @@ -123018,8 +144630,11 @@ xeE xeE xeE xeE +hCs "} (148,1,3) = {" +hCs +vnP cit cit cit @@ -123180,8 +144795,11 @@ xeE xeE xeE xeE +hCs "} (149,1,3) = {" +hCs +vnP cit cit cit @@ -123342,8 +144960,11 @@ xeE xeE xeE xeE +hCs "} (150,1,3) = {" +hCs +vnP cit cit cit @@ -123504,8 +145125,11 @@ xeE xeE xeE xeE +hCs "} (151,1,3) = {" +hCs +vnP cit cit cit @@ -123666,8 +145290,11 @@ xeE xeE xeE xeE +hCs "} (152,1,3) = {" +hCs +vnP cit cit cit @@ -123828,8 +145455,11 @@ xeE xeE xeE xeE +hCs "} (153,1,3) = {" +hCs +vnP cit cit cit @@ -123990,8 +145620,11 @@ xeE xeE xeE xeE +hCs "} (154,1,3) = {" +hCs +vnP cit cit cit @@ -124152,8 +145785,11 @@ xeE xeE xeE xeE +hCs "} (155,1,3) = {" +hCs +vnP cit cit cit @@ -124314,8 +145950,11 @@ xeE xeE xeE xeE +hCs "} (156,1,3) = {" +hCs +vnP cit cit cit @@ -124476,8 +146115,11 @@ xeE xeE xeE xeE +hCs "} (157,1,3) = {" +hCs +vnP cit cit cit @@ -124638,8 +146280,11 @@ xeE xeE xeE xeE +hCs "} (158,1,3) = {" +hCs +vnP cit cit cit @@ -124800,8 +146445,11 @@ xeE xeE xeE xeE +hCs "} (159,1,3) = {" +hCs +vnP cit cit cit @@ -124962,8 +146610,11 @@ xeE xeE xeE xeE +hCs "} (160,1,3) = {" +hCs +vnP cit cit cit @@ -125124,8 +146775,11 @@ xeE xeE xeE xeE +hCs "} (161,1,3) = {" +hCs +vnP cit cit cit @@ -125286,8 +146940,11 @@ xeE xeE xeE xeE +hCs "} (162,1,3) = {" +hCs +vnP cit cit cit @@ -125448,8 +147105,11 @@ xeE xeE xeE xeE +hCs "} (163,1,3) = {" +hCs +vnP cit cit cit @@ -125610,8 +147270,11 @@ xeE xeE xeE xeE +hCs "} (164,1,3) = {" +hCs +vnP cit cit cit @@ -125772,8 +147435,11 @@ xeE xeE xeE xeE +hCs "} (165,1,3) = {" +hCs +vnP cit cit cit @@ -125934,8 +147600,11 @@ xeE xeE xeE xeE +hCs "} (166,1,3) = {" +hCs +vnP cit cit cit @@ -126096,8 +147765,11 @@ xeE xeE xeE xeE +hCs "} (167,1,3) = {" +hCs +vnP cit pNL pNL @@ -126258,8 +147930,11 @@ xeE xeE xeE xeE +hCs "} (168,1,3) = {" +hCs +vnP cit pNL pNL @@ -126365,9 +148040,9 @@ pNL pNL pNL pNL -xeE -xeE -xeE +pNL +pNL +pNL xlm xlm xlm @@ -126420,8 +148095,11 @@ xeE xeE xeE xeE +hCs "} (169,1,3) = {" +hCs +vnP cit pNL pNL @@ -126526,10 +148204,10 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL xlm xlm xlm @@ -126582,8 +148260,11 @@ xeE xeE xeE xeE +hCs "} (170,1,3) = {" +hCs +vnP cit pNL pNL @@ -126687,11 +148368,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -126744,8 +148425,11 @@ xeE xeE xeE xeE +hCs "} (171,1,3) = {" +hCs +vnP cit pNL pNL @@ -126849,11 +148533,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -126906,8 +148590,11 @@ xeE xeE xeE xeE +hCs "} (172,1,3) = {" +hCs +vnP cit pNL pNL @@ -127011,10 +148698,10 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL xlm xlm xlm @@ -127068,8 +148755,11 @@ xeE xeE xeE xeE +hCs "} (173,1,3) = {" +hCs +vnP cit pNL pNL @@ -127172,11 +148862,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -127230,8 +148920,11 @@ xeE xeE xeE xeE +hCs "} (174,1,3) = {" +hCs +vnP cit pNL pNL @@ -127334,11 +149027,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -127392,8 +149085,11 @@ xeE xeE xeE xeE +hCs "} (175,1,3) = {" +hCs +vnP cit pNL pNL @@ -127497,10 +149193,10 @@ pNL pNL pNL xlm -xlm -xlm -xlm -xlm +pNL +pNL +pNL +pNL xlm xlm xlm @@ -127554,8 +149250,11 @@ xeE xeE xeE xeE +hCs "} (176,1,3) = {" +hCs +vnP cit pNL pNL @@ -127716,8 +149415,11 @@ xeE xeE xeE xeE +hCs "} (177,1,3) = {" +hCs +vnP cit pNL pNL @@ -127878,8 +149580,11 @@ xeE xeE xeE xeE +hCs "} (178,1,3) = {" +hCs +vnP cit cit pNL @@ -128040,8 +149745,11 @@ xeE xeE xeE xeE +hCs "} (179,1,3) = {" +hCs +vnP cit cit pNL @@ -128202,8 +149910,11 @@ xeE xeE xeE xeE +hCs "} (180,1,3) = {" +hCs +vnP cit cit cit @@ -128364,8 +150075,11 @@ xeE xeE xeE xeE +hCs "} (181,1,3) = {" +hCs +vnP cit cit cit @@ -128526,8 +150240,11 @@ xeE xeE xeE xeE +hCs "} (182,1,3) = {" +hCs +vnP cit cit cit @@ -128688,8 +150405,11 @@ xeE xeE xeE xeE +hCs "} (183,1,3) = {" +hCs +vnP cit cit cit @@ -128850,8 +150570,11 @@ xeE xeE xlm xeE +hCs "} (184,1,3) = {" +hCs +vnP cit cit cit @@ -129012,8 +150735,11 @@ xeE xeE xlm xeE +hCs "} (185,1,3) = {" +hCs +vnP cit cit cit @@ -129174,8 +150900,11 @@ xeE xlm xlm xeE +hCs "} (186,1,3) = {" +hCs +vnP cit cit cit @@ -129336,8 +151065,11 @@ xeE xeE xlm xeE +hCs "} (187,1,3) = {" +hCs +vnP cit cit cit @@ -129446,8 +151178,8 @@ xlm xlm xlm xlm -xlm -xlm +pNL +pNL xlm xlm xlm @@ -129498,8 +151230,11 @@ xeE xeE xlm xeE +hCs "} (188,1,3) = {" +hCs +vnP cit cit cit @@ -129603,13 +151338,13 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -129660,8 +151395,11 @@ xeE xlm xlm xeE +hCs "} (189,1,3) = {" +hCs +vnP cit cit cit @@ -129765,12 +151503,12 @@ xeE xeE pNL pNL -xeE -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -129822,8 +151560,11 @@ xeE xeE xlm xeE +hCs "} (190,1,3) = {" +hCs +vnP cit cit cit @@ -129928,11 +151669,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -129984,8 +151725,11 @@ xeE xeE xlm xeE +hCs "} (191,1,3) = {" +hCs +vnP cit cit cit @@ -130090,11 +151834,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -130146,8 +151890,11 @@ xeE xlm xlm xeE +hCs "} (192,1,3) = {" +hCs +vnP cit cit cit @@ -130253,10 +152000,10 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL xlm xlm xlm @@ -130308,8 +152055,11 @@ xlm xlm xlm xeE +hCs "} (193,1,3) = {" +hCs +vnP cit cit cit @@ -130415,7 +152165,7 @@ pNL pNL pNL pNL -xeE +pNL xlm xlm xlm @@ -130470,8 +152220,11 @@ pNL pNL xlm xeE +hCs "} (194,1,3) = {" +hCs +vnP cit cit cit @@ -130577,7 +152330,7 @@ pNL pNL pNL pNL -xeE +pNL xlm xlm xlm @@ -130632,8 +152385,11 @@ pNL xlm xlm xeE +hCs "} (195,1,3) = {" +hCs +vnP cit cit cit @@ -130739,7 +152495,7 @@ pNL pNL pNL pNL -xeE +pNL xlm xlm xlm @@ -130794,8 +152550,11 @@ pNL pNL xlm xeE +hCs "} (196,1,3) = {" +hCs +vnP cit cit cit @@ -130901,7 +152660,7 @@ xeE pNL pNL pNL -xeE +pNL xlm xlm xlm @@ -130956,8 +152715,11 @@ pNL pNL xlm xeE +hCs "} (197,1,3) = {" +hCs +vnP cit cit cit @@ -131062,8 +152824,8 @@ pNL xeE pNL pNL -xeE -xeE +pNL +pNL xlm xlm xlm @@ -131118,8 +152880,11 @@ pNL xlm xlm xeE +hCs "} (198,1,3) = {" +hCs +vnP cit cit cit @@ -131224,8 +152989,8 @@ pNL pNL pNL pNL -xeE -xeE +pNL +pNL xlm xlm xlm @@ -131280,8 +153045,11 @@ pNL pNL xlm xeE +hCs "} (199,1,3) = {" +hCs +vnP cit cit cit @@ -131442,8 +153210,11 @@ pNL pNL xlm xeE +hCs "} (200,1,3) = {" +hCs +vnP cit cit cit @@ -131604,8 +153375,11 @@ pNL xlm xlm xeE +hCs "} (201,1,3) = {" +hCs +vnP cit cit cit @@ -131766,8 +153540,11 @@ pNL pNL xlm xeE +hCs "} (202,1,3) = {" +hCs +vnP cit cit cit @@ -131928,8 +153705,11 @@ pNL pNL xlm xeE +hCs "} (203,1,3) = {" +hCs +vnP cit cit cit @@ -132090,8 +153870,11 @@ pNL xlm xlm xeE +hCs "} (204,1,3) = {" +hCs +vnP cit cit cit @@ -132252,8 +154035,11 @@ pNL pNL xlm xeE +hCs "} (205,1,3) = {" +hCs +vnP cit cit cit @@ -132414,8 +154200,11 @@ pNL pNL xlm xeE +hCs "} (206,1,3) = {" +hCs +vnP cit cit cit @@ -132576,8 +154365,11 @@ pNL xlm xlm xeE +hCs "} (207,1,3) = {" +hCs +vnP cit cit cit @@ -132738,8 +154530,11 @@ pNL pNL xlm xeE +hCs "} (208,1,3) = {" +hCs +vnP cit cit cit @@ -132900,8 +154695,11 @@ pNL pNL xlm xeE +hCs "} (209,1,3) = {" +hCs +vnP cit cit cit @@ -133062,8 +154860,11 @@ pNL xlm xlm xeE +hCs "} (210,1,3) = {" +hCs +vnP cit cit cit @@ -133224,8 +155025,11 @@ pNL pNL xlm xeE +hCs "} (211,1,3) = {" +hCs +vnP cit cit cit @@ -133386,8 +155190,11 @@ pNL pNL xlm xeE +hCs "} (212,1,3) = {" +hCs +vnP cit cit cit @@ -133548,8 +155355,11 @@ pNL xlm xlm xeE +hCs "} (213,1,3) = {" +hCs +vnP cit cit cit @@ -133710,8 +155520,11 @@ pNL pNL xlm xeE +hCs "} (214,1,3) = {" +hCs +vnP cit cit cit @@ -133872,8 +155685,11 @@ pNL pNL xlm xeE +hCs "} (215,1,3) = {" +hCs +vnP cit cit cit @@ -134034,8 +155850,11 @@ pNL xlm xlm xeE +hCs "} (216,1,3) = {" +hCs +vnP cit cit cit @@ -134196,8 +156015,11 @@ pNL pNL xlm xeE +hCs "} (217,1,3) = {" +hCs +vnP cit cit cit @@ -134358,8 +156180,11 @@ pNL pNL xlm xeE +hCs "} (218,1,3) = {" +hCs +vnP cit cit cit @@ -134520,8 +156345,11 @@ tEM xlm xlm xeE +hCs "} (219,1,3) = {" +hCs +vnP cit cit cit @@ -134682,8 +156510,11 @@ pNL hkq xlm xeE +hCs "} (220,1,3) = {" +hCs +vnP cit cit cit @@ -134844,8 +156675,11 @@ xlm xlm hkq xeE +hCs "} (221,1,3) = {" +hCs +vnP cit cit cit @@ -135006,351 +156840,360 @@ xlm xlm hkq aof +hCs "} (222,1,3) = {" +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -ckC +hCs "} (1,1,4) = {" -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj -stj +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs +hCs "} (2,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -135493,19 +157336,22 @@ cit cit cit cit +hCs "} (3,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kuQ kuQ @@ -135655,19 +157501,22 @@ cit cit cit cit +hCs "} (4,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kHb kHb @@ -135817,19 +157666,22 @@ cit cit cit cit +hCs "} (5,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kHb kHb @@ -135979,19 +157831,22 @@ cit cit cit cit +hCs "} (6,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kHb kHb @@ -136141,19 +157996,22 @@ cit cit cit cit +hCs "} (7,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit kuQ kuQ kHb @@ -136303,16 +158161,19 @@ cit cit cit cit +hCs "} (8,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB tAB tAB @@ -136465,16 +158326,19 @@ cit cit cit cit +hCs "} (9,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB kHb kHb @@ -136627,16 +158491,19 @@ cit cit cit cit +hCs "} (10,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB kHb kHb @@ -136789,16 +158656,19 @@ cit cit cit cit +hCs "} (11,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit tAB kHb kHb @@ -136951,13 +158821,16 @@ cit cit cit cit +hCs "} (12,1,4) = {" -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit tAB tAB tAB @@ -137113,12 +158986,15 @@ cit cit cit cit +hCs "} (13,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB tAB tAB @@ -137275,12 +159151,15 @@ cit cit cit cit +hCs "} (14,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB tAB pNL @@ -137437,12 +159316,15 @@ cit cit cit cit +hCs "} (15,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB pNL pNL @@ -137599,12 +159481,15 @@ cit cit cit cit +hCs "} (16,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB pNL pNL @@ -137761,12 +159646,15 @@ cit cit cit cit +hCs "} (17,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB pNL pNL @@ -137923,12 +159811,15 @@ cit cit cit cit +hCs "} (18,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit tAB pNL pNL @@ -138085,8 +159976,11 @@ cit cit cit cit +hCs "} (19,1,4) = {" +hCs +ahO tAB tAB tAB @@ -138247,8 +160141,11 @@ cit cit cit cit +hCs "} (20,1,4) = {" +hCs +ahO tAB tAB tAB @@ -138409,8 +160306,11 @@ cit cit cit cit +hCs "} (21,1,4) = {" +hCs +ahO tAB tAB tAB @@ -138571,8 +160471,11 @@ cit cit cit cit +hCs "} (22,1,4) = {" +hCs +ahO tAB tAB tAB @@ -138733,8 +160636,11 @@ cit cit cit cit +hCs "} (23,1,4) = {" +hCs +ahO tAB tAB tAB @@ -138895,8 +160801,11 @@ cit cit cit cit +hCs "} (24,1,4) = {" +hCs +ahO tAB tAB tAB @@ -139057,8 +160966,11 @@ cit cit cit cit +hCs "} (25,1,4) = {" +hCs +ahO tAB tAB tAB @@ -139219,8 +161131,11 @@ cit cit cit cit +hCs "} (26,1,4) = {" +hCs +ahO tAB tAB tAB @@ -139381,10 +161296,13 @@ cit cit cit cit +hCs "} (27,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB @@ -139543,10 +161461,13 @@ cit cit cit cit +hCs "} (28,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB @@ -139705,9 +161626,12 @@ cit cit cit cit +hCs "} (29,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -139867,9 +161791,12 @@ cit cit cit cit +hCs "} (30,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -140029,9 +161956,12 @@ cit cit cit cit +hCs "} (31,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -140191,9 +162121,12 @@ cit cit cit cit +hCs "} (32,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -140353,9 +162286,12 @@ cit cit cit cit +hCs "} (33,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -140515,9 +162451,12 @@ cit cit cit cit +hCs "} (34,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -140677,9 +162616,12 @@ cit cit cit cit +hCs "} (35,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -140839,9 +162781,12 @@ cit cit cit cit +hCs "} (36,1,4) = {" -xeE +hCs +vnP +cit tAB tAB tAB @@ -141001,10 +162946,13 @@ cit cit cit cit +hCs "} (37,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB @@ -141163,10 +163111,13 @@ cit cit cit cit +hCs "} (38,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB @@ -141325,10 +163276,13 @@ cit cit cit cit +hCs "} (39,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit tAB tAB tAB @@ -141487,10 +163441,13 @@ cit cit cit cit +hCs "} (40,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit xeE xeE pNL @@ -141649,10 +163606,13 @@ cit cit cit cit +hCs "} (41,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit xeE xeE pNL @@ -141811,11 +163771,14 @@ cit cit cit cit +hCs "} (42,1,4) = {" -xeE -xeE -xeE +hCs +vnP +cit +cit +cit xeE xeE xeE @@ -141973,11 +163936,14 @@ cit cit cit cit +hCs "} (43,1,4) = {" -xeE -xeE -xeE +hCs +vnP +cit +cit +cit xeE xeE xeE @@ -142135,12 +164101,15 @@ cit cit cit cit +hCs "} (44,1,4) = {" -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit xeE xeE xeE @@ -142297,13 +164266,16 @@ cit cit cit cit +hCs "} (45,1,4) = {" -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit xeE xeE xeE @@ -142459,13 +164431,16 @@ cit cit cit cit +hCs "} (46,1,4) = {" -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit xeE xeE xeE @@ -142621,14 +164596,17 @@ cit cit cit cit +hCs "} (47,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE @@ -142783,14 +164761,17 @@ cit cit cit cit +hCs "} (48,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE @@ -142945,14 +164926,17 @@ cit cit cit cit +hCs "} (49,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE @@ -143107,14 +165091,17 @@ cit cit cit cit +hCs "} (50,1,4) = {" -xeE -xeE -xeE -xeE -xeE -xeE +hCs +vnP +cit +cit +cit +cit +cit +cit xeE xeE xeE @@ -143269,14 +165256,17 @@ cit cit cit cit +hCs "} (51,1,4) = {" +hCs +ahO tAB tAB tAB tAB tAB -xeE +cit pNL pNL pNL @@ -143431,8 +165421,11 @@ cit cit cit cit +hCs "} (52,1,4) = {" +hCs +ahO tAB tAB tAB @@ -143593,8 +165586,11 @@ cit cit cit cit +hCs "} (53,1,4) = {" +hCs +ahO tAB tAB tAB @@ -143755,8 +165751,11 @@ cit cit cit cit +hCs "} (54,1,4) = {" +hCs +ahO tAB tAB tAB @@ -143917,8 +165916,11 @@ cit cit cit cit +hCs "} (55,1,4) = {" +hCs +ahO tAB tAB tAB @@ -144079,8 +166081,11 @@ cit cit cit cit +hCs "} (56,1,4) = {" +hCs +ahO tAB tAB tAB @@ -144241,8 +166246,11 @@ cit cit cit cit +hCs "} (57,1,4) = {" +hCs +ahO tAB tAB tAB @@ -144403,8 +166411,11 @@ cit cit cit cit +hCs "} (58,1,4) = {" +hCs +ahO tAB tAB tAB @@ -144565,8 +166576,11 @@ cit cit cit cit +hCs "} (59,1,4) = {" +hCs +ahO tAB tAB tAB @@ -144727,8 +166741,11 @@ cit cit cit cit +hCs "} (60,1,4) = {" +hCs +ahO tAB tAB tAB @@ -144889,8 +166906,11 @@ cit cit cit cit +hCs "} (61,1,4) = {" +hCs +ahO tAB tAB tAB @@ -145051,8 +167071,11 @@ cit cit cit cit +hCs "} (62,1,4) = {" +hCs +ahO tAB tAB tAB @@ -145213,8 +167236,11 @@ cit cit cit cit +hCs "} (63,1,4) = {" +hCs +ahO tAB tAB tAB @@ -145375,8 +167401,11 @@ cit cit cit cit +hCs "} (64,1,4) = {" +hCs +ahO tAB tAB tAB @@ -145537,8 +167566,11 @@ cit cit cit cit +hCs "} (65,1,4) = {" +hCs +ahO tAB tAB tAB @@ -145699,8 +167731,11 @@ cit cit cit cit +hCs "} (66,1,4) = {" +hCs +ahO tAB tAB tAB @@ -145861,8 +167896,11 @@ cit cit cit cit +hCs "} (67,1,4) = {" +hCs +ahO tAB tAB tAB @@ -146023,8 +168061,11 @@ cit cit cit cit +hCs "} (68,1,4) = {" +hCs +aaj xeE xeE xeE @@ -146185,8 +168226,11 @@ cit cit cit cit +hCs "} (69,1,4) = {" +hCs +aaj xeE xeE xeE @@ -146347,8 +168391,11 @@ cit cit cit cit +hCs "} (70,1,4) = {" +hCs +vnP xeE xeE xeE @@ -146509,8 +168556,11 @@ cit cit cit cit +hCs "} (71,1,4) = {" +hCs +vnP xeE xeE xeE @@ -146671,10 +168721,13 @@ cit cit cit cit +hCs "} (72,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit xeE xeE xeE @@ -146833,10 +168886,13 @@ cit cit cit cit +hCs "} (73,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit xeE xeE xeE @@ -146995,9 +169051,12 @@ cit cit cit cit +hCs "} (74,1,4) = {" -xeE +hCs +vnP +cit xeE xeE xeE @@ -147157,9 +169216,12 @@ cit cit cit cit +hCs "} (75,1,4) = {" -xeE +hCs +vnP +cit xeE xeE xeE @@ -147319,10 +169381,13 @@ cit cit cit cit +hCs "} (76,1,4) = {" -xeE -xeE +hCs +vnP +cit +cit xeE xeE xeE @@ -147481,11 +169546,14 @@ cit cit cit cit +hCs "} (77,1,4) = {" -xeE -xeE -xeE +hCs +vnP +cit +cit +cit xeE xeE xeE @@ -147643,8 +169711,11 @@ cit cit cit cit +hCs "} (78,1,4) = {" +hCs +vnP cit cit xeE @@ -147805,8 +169876,11 @@ cit cit cit cit +hCs "} (79,1,4) = {" +hCs +vnP cit cit cit @@ -147967,8 +170041,11 @@ cit cit cit cit +hCs "} (80,1,4) = {" +hCs +vnP cit cit cit @@ -148129,8 +170206,11 @@ cit cit cit cit +hCs "} (81,1,4) = {" +hCs +vnP cit cit cit @@ -148291,8 +170371,11 @@ cit cit cit cit +hCs "} (82,1,4) = {" +hCs +vnP cit cit cit @@ -148453,8 +170536,11 @@ cit cit cit cit +hCs "} (83,1,4) = {" +hCs +vnP cit cit cit @@ -148615,8 +170701,11 @@ cit cit cit cit +hCs "} (84,1,4) = {" +hCs +vnP cit cit cit @@ -148777,8 +170866,11 @@ cit cit cit cit +hCs "} (85,1,4) = {" +hCs +vnP cit cit cit @@ -148939,8 +171031,11 @@ cit cit cit cit +hCs "} (86,1,4) = {" +hCs +vnP cit cit cit @@ -149101,8 +171196,11 @@ cit cit cit cit +hCs "} (87,1,4) = {" +hCs +vnP cit cit cit @@ -149263,8 +171361,11 @@ cit cit cit cit +hCs "} (88,1,4) = {" +hCs +vnP cit cit cit @@ -149425,8 +171526,11 @@ cit cit cit cit +hCs "} (89,1,4) = {" +hCs +vnP cit cit cit @@ -149587,8 +171691,11 @@ cit cit cit cit +hCs "} (90,1,4) = {" +hCs +vnP cit cit cit @@ -149749,8 +171856,11 @@ cit cit cit cit +hCs "} (91,1,4) = {" +hCs +vnP cit cit cit @@ -149911,8 +172021,11 @@ cit cit cit cit +hCs "} (92,1,4) = {" +hCs +vnP cit pNL pNL @@ -150073,8 +172186,11 @@ cit cit cit cit +hCs "} (93,1,4) = {" +hCs +vnP cit pNL pNL @@ -150235,8 +172351,11 @@ cit cit cit cit +hCs "} (94,1,4) = {" +hCs +vnP cit pNL pNL @@ -150397,8 +172516,11 @@ cit cit cit cit +hCs "} (95,1,4) = {" +hCs +vnP cit pNL pNL @@ -150559,8 +172681,11 @@ cit cit cit cit +hCs "} (96,1,4) = {" +hCs +vnP cit pNL pNL @@ -150721,8 +172846,11 @@ cit cit cit cit +hCs "} (97,1,4) = {" +hCs +vnP cit pNL pNL @@ -150883,8 +173011,11 @@ cit cit cit cit +hCs "} (98,1,4) = {" +hCs +vnP cit pNL pNL @@ -151045,8 +173176,11 @@ cit cit cit cit +hCs "} (99,1,4) = {" +hCs +vnP cit pNL pNL @@ -151207,8 +173341,11 @@ cit cit cit cit +hCs "} (100,1,4) = {" +hCs +vnP cit pNL pNL @@ -151369,8 +173506,11 @@ cit cit cit cit +hCs "} (101,1,4) = {" +hCs +vnP cit pNL pNL @@ -151531,8 +173671,11 @@ cit cit cit cit +hCs "} (102,1,4) = {" +hCs +vnP cit cit cit @@ -151693,8 +173836,11 @@ cit cit cit cit +hCs "} (103,1,4) = {" +hCs +vnP cit cit cit @@ -151855,8 +174001,11 @@ cit cit cit cit +hCs "} (104,1,4) = {" +hCs +vnP cit cit cit @@ -152017,8 +174166,11 @@ cit cit cit cit +hCs "} (105,1,4) = {" +hCs +vnP cit cit cit @@ -152179,8 +174331,11 @@ cit cit cit cit +hCs "} (106,1,4) = {" +hCs +vnP cit cit cit @@ -152341,8 +174496,11 @@ cit cit cit cit +hCs "} (107,1,4) = {" +hCs +vnP cit cit pNL @@ -152503,8 +174661,11 @@ cit cit cit cit +hCs "} (108,1,4) = {" +hCs +vnP cit cit cit @@ -152665,8 +174826,11 @@ cit cit cit cit +hCs "} (109,1,4) = {" +hCs +vnP cit cit cit @@ -152827,8 +174991,11 @@ pNL pNL cit cit +hCs "} (110,1,4) = {" +hCs +vnP cit cit cit @@ -152989,8 +175156,11 @@ pNL pNL cit cit +hCs "} (111,1,4) = {" +hCs +vnP cit cit cit @@ -153151,8 +175321,11 @@ pNL pNL pNL cit +hCs "} (112,1,4) = {" +hCs +vnP cit cit cit @@ -153313,8 +175486,11 @@ pNL pNL pNL cit +hCs "} (113,1,4) = {" +hCs +vnP cit cit cit @@ -153475,8 +175651,11 @@ pNL pNL pNL cit +hCs "} (114,1,4) = {" +hCs +vnP cit cit cit @@ -153637,8 +175816,11 @@ pNL pNL pNL cit +hCs "} (115,1,4) = {" +hCs +vnP cit cit cit @@ -153799,8 +175981,11 @@ pNL pNL pNL cit +hCs "} (116,1,4) = {" +hCs +vnP cit cit cit @@ -153961,8 +176146,11 @@ pNL pNL pNL cit +hCs "} (117,1,4) = {" +hCs +vnP cit cit cit @@ -154123,8 +176311,11 @@ pNL pNL pNL cit +hCs "} (118,1,4) = {" +hCs +vnP cit cit cit @@ -154285,8 +176476,11 @@ pNL pNL pNL cit +hCs "} (119,1,4) = {" +hCs +vnP cit pNL pNL @@ -154447,8 +176641,11 @@ pNL pNL cit cit +hCs "} (120,1,4) = {" +hCs +vnP cit pNL pNL @@ -154609,8 +176806,11 @@ pNL pNL cit cit +hCs "} (121,1,4) = {" +hCs +vnP cit pNL pNL @@ -154771,8 +176971,11 @@ cit cit cit cit +hCs "} (122,1,4) = {" +hCs +vnP cit pNL pNL @@ -154933,8 +177136,11 @@ cit cit cit cit +hCs "} (123,1,4) = {" +hCs +vnP cit cit pNL @@ -155095,8 +177301,11 @@ cit cit cit cit +hCs "} (124,1,4) = {" +hCs +vnP cit cit cit @@ -155257,8 +177466,11 @@ cit cit cit cit +hCs "} (125,1,4) = {" +hCs +vnP cit cit xeE @@ -155419,8 +177631,11 @@ cit cit cit cit +hCs "} (126,1,4) = {" +hCs +vnP cit xeE xeE @@ -155581,8 +177796,11 @@ cit cit cit cit +hCs "} (127,1,4) = {" +hCs +vnP xeE xeE pNL @@ -155743,8 +177961,11 @@ cit cit cit cit +hCs "} (128,1,4) = {" +hCs +vnP xeE pNL pNL @@ -155905,8 +178126,11 @@ cit cit cit cit +hCs "} (129,1,4) = {" +hCs +vnP xeE pNL pNL @@ -156067,8 +178291,11 @@ cit cit cit cit +hCs "} (130,1,4) = {" +hCs +vnP xeE pNL pNL @@ -156229,8 +178456,11 @@ cit cit cit cit +hCs "} (131,1,4) = {" +hCs +vnP xeE xeE pNL @@ -156391,8 +178621,11 @@ cit cit cit cit +hCs "} (132,1,4) = {" +hCs +vnP cit xeE xeE @@ -156553,8 +178786,11 @@ cit cit cit cit +hCs "} (133,1,4) = {" +hCs +vnP cit cit xeE @@ -156709,14 +178945,17 @@ cit cit xeE cit +xlm cit cit cit +xlm cit -cit -cit +hCs "} (134,1,4) = {" +hCs +vnP cit cit cit @@ -156870,15 +179109,18 @@ pNL xeE xeE xeE -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (135,1,4) = {" +hCs +vnP cit cit cit @@ -157031,16 +179273,19 @@ pNL pNL pNL xeE -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (136,1,4) = {" +hCs +vnP cit cit cit @@ -157193,16 +179438,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (137,1,4) = {" +hCs +vnP cit cit cit @@ -157355,16 +179603,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (138,1,4) = {" +hCs +vnP cit cit cit @@ -157517,16 +179768,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (139,1,4) = {" +hCs +vnP cit cit cit @@ -157679,16 +179933,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (140,1,4) = {" +hCs +vnP cit cit cit @@ -157841,16 +180098,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (141,1,4) = {" +hCs +vnP cit cit cit @@ -158003,16 +180263,19 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (142,1,4) = {" +hCs +vnP cit cit cit @@ -158166,15 +180429,18 @@ pNL pNL pNL pNL -cit -cit -cit -cit -cit -cit -cit +xlm +xlm +xlm +xlm +xlm +xlm +xlm +hCs "} (143,1,4) = {" +hCs +vnP cit cit cit @@ -158329,14 +180595,17 @@ pNL pNL pNL pNL -pNL -xeE +xlm xeE xeE xeE +xlm xeE +hCs "} (144,1,4) = {" +hCs +vnP cit cit cit @@ -158497,8 +180766,11 @@ xeE xeE xeE xeE +hCs "} (145,1,4) = {" +hCs +vnP cit cit cit @@ -158659,8 +180931,11 @@ xeE xeE xeE xeE +hCs "} (146,1,4) = {" +hCs +vnP cit cit cit @@ -158821,8 +181096,11 @@ xeE xeE xeE xeE +hCs "} (147,1,4) = {" +hCs +vnP cit cit cit @@ -158983,8 +181261,11 @@ xeE xeE xeE xeE +hCs "} (148,1,4) = {" +hCs +vnP cit cit cit @@ -159145,8 +181426,11 @@ xeE xeE xeE xeE +hCs "} (149,1,4) = {" +hCs +vnP cit cit cit @@ -159307,8 +181591,11 @@ xeE xeE xeE xeE +hCs "} (150,1,4) = {" +hCs +vnP cit cit cit @@ -159469,8 +181756,11 @@ xeE xeE xeE xeE +hCs "} (151,1,4) = {" +hCs +vnP cit cit cit @@ -159631,8 +181921,11 @@ xeE xeE xeE xeE +hCs "} (152,1,4) = {" +hCs +vnP cit cit cit @@ -159793,8 +182086,11 @@ xeE xeE xeE xeE +hCs "} (153,1,4) = {" +hCs +vnP cit cit cit @@ -159955,8 +182251,11 @@ xeE xeE xeE xeE +hCs "} (154,1,4) = {" +hCs +vnP cit cit cit @@ -160117,8 +182416,11 @@ xeE xeE xeE xeE +hCs "} (155,1,4) = {" +hCs +vnP cit cit cit @@ -160279,8 +182581,11 @@ xeE xeE xeE xeE +hCs "} (156,1,4) = {" +hCs +vnP cit cit cit @@ -160441,8 +182746,11 @@ xeE xeE xeE xeE +hCs "} (157,1,4) = {" +hCs +vnP cit cit cit @@ -160603,8 +182911,11 @@ xeE xeE xeE xeE +hCs "} (158,1,4) = {" +hCs +vnP cit cit cit @@ -160765,8 +183076,11 @@ xeE xeE xeE xeE +hCs "} (159,1,4) = {" +hCs +vnP cit cit cit @@ -160927,8 +183241,11 @@ xeE xeE xeE xeE +hCs "} (160,1,4) = {" +hCs +vnP cit cit cit @@ -161089,8 +183406,11 @@ xeE xeE xeE xeE +hCs "} (161,1,4) = {" +hCs +vnP cit cit cit @@ -161251,8 +183571,11 @@ xeE xeE xeE xeE +hCs "} (162,1,4) = {" +hCs +vnP cit cit cit @@ -161413,8 +183736,11 @@ xeE xeE xeE xeE +hCs "} (163,1,4) = {" +hCs +vnP cit cit cit @@ -161575,8 +183901,11 @@ xeE xeE xeE xeE +hCs "} (164,1,4) = {" +hCs +vnP cit cit cit @@ -161737,8 +184066,11 @@ xeE xeE xeE xeE +hCs "} (165,1,4) = {" +hCs +vnP cit cit cit @@ -161899,8 +184231,11 @@ xeE xeE xeE xeE +hCs "} (166,1,4) = {" +hCs +vnP cit cit cit @@ -162061,8 +184396,11 @@ xeE xeE xeE xeE +hCs "} (167,1,4) = {" +hCs +vnP cit pNL pNL @@ -162223,8 +184561,11 @@ xeE xeE xeE xeE +hCs "} (168,1,4) = {" +hCs +vnP cit pNL pNL @@ -162330,9 +184671,9 @@ pNL pNL pNL pNL -xeE -xeE -xeE +pNL +pNL +pNL xlm xlm xlm @@ -162385,8 +184726,11 @@ xeE xeE xeE xeE +hCs "} (169,1,4) = {" +hCs +vnP cit pNL pNL @@ -162491,10 +184835,10 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL xlm xlm xlm @@ -162547,8 +184891,11 @@ xeE xeE xeE xeE +hCs "} (170,1,4) = {" +hCs +vnP cit pNL pNL @@ -162652,11 +184999,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -162709,8 +185056,11 @@ xeE xeE xeE xeE +hCs "} (171,1,4) = {" +hCs +vnP cit pNL pNL @@ -162814,11 +185164,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -162871,8 +185221,11 @@ xeE xeE xeE xeE +hCs "} (172,1,4) = {" +hCs +vnP cit pNL pNL @@ -162976,10 +185329,10 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL xlm xlm xlm @@ -163033,8 +185386,11 @@ xeE xeE xeE xeE +hCs "} (173,1,4) = {" +hCs +vnP cit pNL pNL @@ -163137,11 +185493,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -163195,8 +185551,11 @@ xeE xeE xeE xeE +hCs "} (174,1,4) = {" +hCs +vnP cit pNL pNL @@ -163299,11 +185658,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -163357,8 +185716,11 @@ xeE xeE xeE xeE +hCs "} (175,1,4) = {" +hCs +vnP cit pNL pNL @@ -163462,10 +185824,10 @@ pNL pNL pNL xlm -xlm -xlm -xlm -xlm +pNL +pNL +pNL +pNL xlm xlm xlm @@ -163519,8 +185881,11 @@ xeE xeE xeE xeE +hCs "} (176,1,4) = {" +hCs +vnP cit pNL pNL @@ -163681,8 +186046,11 @@ xeE xeE xeE xeE +hCs "} (177,1,4) = {" +hCs +vnP cit pNL pNL @@ -163843,8 +186211,11 @@ xeE xeE xeE xeE +hCs "} (178,1,4) = {" +hCs +vnP cit cit pNL @@ -164005,8 +186376,11 @@ xeE xeE xeE xeE +hCs "} (179,1,4) = {" +hCs +vnP cit cit pNL @@ -164167,8 +186541,11 @@ xeE xeE xeE xeE +hCs "} (180,1,4) = {" +hCs +vnP cit cit cit @@ -164329,8 +186706,11 @@ xeE xeE xeE xeE +hCs "} (181,1,4) = {" +hCs +vnP cit cit cit @@ -164491,8 +186871,11 @@ xeE xeE xeE xeE +hCs "} (182,1,4) = {" +hCs +vnP cit cit cit @@ -164653,8 +187036,11 @@ xeE xeE xeE xeE +hCs "} (183,1,4) = {" +hCs +vnP cit cit cit @@ -164815,8 +187201,11 @@ xeE xeE xlm xeE +hCs "} (184,1,4) = {" +hCs +vnP cit cit cit @@ -164977,8 +187366,11 @@ xeE xeE xlm xeE +hCs "} (185,1,4) = {" +hCs +vnP cit cit cit @@ -165139,8 +187531,11 @@ xeE xlm xlm xeE +hCs "} (186,1,4) = {" +hCs +vnP cit cit cit @@ -165301,8 +187696,11 @@ xeE xeE xlm xeE +hCs "} (187,1,4) = {" +hCs +vnP cit cit cit @@ -165411,8 +187809,8 @@ xlm xlm xlm xlm -xlm -xlm +pNL +pNL xlm xlm xlm @@ -165463,8 +187861,11 @@ xeE xeE xlm xeE +hCs "} (188,1,4) = {" +hCs +vnP cit cit cit @@ -165568,13 +187969,13 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -165625,8 +188026,11 @@ xeE xlm xlm xeE +hCs "} (189,1,4) = {" +hCs +vnP cit cit cit @@ -165730,12 +188134,12 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -165787,8 +188191,11 @@ xeE xeE xlm xeE +hCs "} (190,1,4) = {" +hCs +vnP cit cit cit @@ -165893,11 +188300,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -165949,8 +188356,11 @@ xeE xeE xlm xeE +hCs "} (191,1,4) = {" +hCs +vnP cit cit cit @@ -166055,11 +188465,11 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL +pNL xlm xlm xlm @@ -166111,8 +188521,11 @@ xeE xlm xlm xeE +hCs "} (192,1,4) = {" +hCs +vnP cit cit cit @@ -166218,10 +188631,10 @@ pNL pNL pNL pNL -xeE -xeE -xeE -xeE +pNL +pNL +pNL +pNL xlm xlm xlm @@ -166273,8 +188686,11 @@ xlm xlm xlm xeE +hCs "} (193,1,4) = {" +hCs +vnP cit cit cit @@ -166380,169 +188796,172 @@ pNL pNL pNL pNL -xeE -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -xlm -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xlm -xeE -"} -(194,1,4) = {" -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -cit -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL +pNL +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +xlm +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +xlm +xeE +hCs +"} +(194,1,4) = {" +hCs +vnP +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +cit +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL +pNL pNL pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -pNL -xeE xlm xlm xlm @@ -166597,8 +189016,11 @@ pNL xlm xlm xeE +hCs "} (195,1,4) = {" +hCs +vnP cit cit cit @@ -166704,7 +189126,7 @@ pNL pNL pNL pNL -xeE +pNL xlm xlm xlm @@ -166759,8 +189181,11 @@ pNL pNL xlm xeE +hCs "} (196,1,4) = {" +hCs +vnP cit cit cit @@ -166866,7 +189291,7 @@ pNL pNL pNL pNL -xeE +pNL xlm xlm xlm @@ -166921,8 +189346,11 @@ pNL pNL xlm xeE +hCs "} (197,1,4) = {" +hCs +vnP cit cit cit @@ -167027,8 +189455,8 @@ pNL pNL pNL pNL -xeE -xeE +pNL +pNL xlm xlm xlm @@ -167083,8 +189511,11 @@ pNL xlm xlm xeE +hCs "} (198,1,4) = {" +hCs +vnP cit cit cit @@ -167189,8 +189620,8 @@ pNL pNL pNL pNL -xeE -xeE +pNL +pNL xlm xlm xlm @@ -167245,8 +189676,11 @@ pNL pNL xlm xeE +hCs "} (199,1,4) = {" +hCs +vnP cit cit cit @@ -167407,8 +189841,11 @@ pNL pNL xlm xeE +hCs "} (200,1,4) = {" +hCs +vnP cit cit cit @@ -167569,8 +190006,11 @@ pNL xlm xlm xeE +hCs "} (201,1,4) = {" +hCs +vnP cit cit cit @@ -167731,8 +190171,11 @@ pNL pNL xlm xeE +hCs "} (202,1,4) = {" +hCs +vnP cit cit cit @@ -167893,8 +190336,11 @@ pNL pNL xlm xeE +hCs "} (203,1,4) = {" +hCs +vnP cit cit cit @@ -168055,8 +190501,11 @@ pNL xlm xlm xeE +hCs "} (204,1,4) = {" +hCs +vnP cit cit cit @@ -168217,8 +190666,11 @@ pNL pNL xlm xeE +hCs "} (205,1,4) = {" +hCs +vnP cit cit cit @@ -168379,8 +190831,11 @@ pNL pNL xlm xeE +hCs "} (206,1,4) = {" +hCs +vnP cit cit cit @@ -168541,8 +190996,11 @@ pNL xlm xlm xeE +hCs "} (207,1,4) = {" +hCs +vnP cit cit cit @@ -168703,8 +191161,11 @@ pNL pNL xlm xeE +hCs "} (208,1,4) = {" +hCs +vnP cit cit cit @@ -168865,8 +191326,11 @@ pNL pNL xlm xeE +hCs "} (209,1,4) = {" +hCs +vnP cit cit cit @@ -169027,8 +191491,11 @@ pNL xlm xlm xeE +hCs "} (210,1,4) = {" +hCs +vnP cit cit cit @@ -169189,8 +191656,11 @@ pNL pNL xlm xeE +hCs "} (211,1,4) = {" +hCs +vnP cit cit cit @@ -169351,8 +191821,11 @@ pNL pNL xlm xeE +hCs "} (212,1,4) = {" +hCs +vnP cit cit cit @@ -169513,8 +191986,11 @@ pNL xlm xlm xeE +hCs "} (213,1,4) = {" +hCs +vnP cit cit cit @@ -169675,8 +192151,11 @@ pNL pNL xlm xeE +hCs "} (214,1,4) = {" +hCs +vnP cit cit cit @@ -169837,8 +192316,11 @@ pNL pNL xlm xeE +hCs "} (215,1,4) = {" +hCs +vnP cit cit cit @@ -169999,8 +192481,11 @@ pNL xlm xlm xeE +hCs "} (216,1,4) = {" +hCs +vnP cit cit cit @@ -170161,8 +192646,11 @@ pNL pNL xlm xeE +hCs "} (217,1,4) = {" +hCs +vnP cit cit cit @@ -170323,8 +192811,11 @@ pNL pNL xlm xeE +hCs "} (218,1,4) = {" +hCs +vnP cit cit cit @@ -170485,8 +192976,11 @@ pNL xlm xlm xeE +hCs "} (219,1,4) = {" +hCs +vnP cit cit cit @@ -170647,8 +193141,11 @@ pNL xlm xlm xeE +hCs "} (220,1,4) = {" +hCs +vnP cit cit cit @@ -170809,8 +193306,11 @@ xlm xlm xlm xeE +hCs "} (221,1,4) = {" +hCs +vnP cit cit cit @@ -170971,6 +193471,7 @@ xlm xlm xlm xeE +hCs "} (222,1,4) = {" hCs @@ -171133,4 +193634,7 @@ hCs hCs hCs hCs +hCs +hCs +hCs "} diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 24936d9d438a..549f65c0fe4d 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -13737,7 +13737,7 @@ "aMg" = ( /obj/effect/decal/cleanable/blood, /obj/item/ammo_casing, -/obj/item/clothing/suit/storage/marine/faction/UPP/army/alt, +/obj/item/clothing/suit/armor/vest/UPP/alt, /turf/open/gm/dirt/brown, /area/strata/exterior/parts_storage_cave) "aMh" = ( @@ -23914,7 +23914,7 @@ /area/strata/exterior/carplake_center) "bpX" = ( /obj/structure/closet/bombcloset, -/obj/item/clothing/suit/storage/marine/faction/UPP/army/simple, +/obj/item/clothing/suit/armor/vest/UPP, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/interior/outpost/engi/drome) "bpY" = ( @@ -39987,7 +39987,7 @@ /turf/open/floor/strata/floor3/east, /area/strata/interior/outpost/med) "dEa" = ( -/obj/item/clothing/suit/storage/marine/faction/UPP/army/simple, +/obj/item/clothing/suit/armor/vest/UPP, /turf/open/floor/strata/white_cyan2/west, /area/strata/interior/bball) "dEy" = ( diff --git a/maps/sekhmet_swamp.json b/maps/sekhmet_swamp.json index 4cac6ed217ef..b20d9047c274 100644 --- a/maps/sekhmet_swamp.json +++ b/maps/sekhmet_swamp.json @@ -27,7 +27,7 @@ "/datum/equipment_preset/survivor/clf/coordinator" ], "map_item_type": "/obj/item/map/sekhmet_swamp_map", - "announce_text": "An automated distress signal has been recieved from a Union of Progressive People's research colony on border world LV-976, \"Sorokyne Outpost\". Authorization has been granted for a response team from the ###SHIPNAME### to conduct a reconnaissance in force.", + "announce_text": "An automated distress signal has been recieved from a Union of Progressive People'experimental medical research colony on border world SI-391, \"Sekhmet Swamp\". Authorization has been granted for a response team from the ###SHIPNAME### to conduct a reconnaissance in force.", "monkey_types": [ "stok" ], diff --git a/sound/ambience/swamp.ogg b/sound/ambience/swamp.ogg new file mode 100644 index 000000000000..9337ad2db758 Binary files /dev/null and b/sound/ambience/swamp.ogg differ diff --git a/sound/vehicles/boat_horn.ogg b/sound/vehicles/boat_horn.ogg new file mode 100644 index 000000000000..d2a18b957f18 Binary files /dev/null and b/sound/vehicles/boat_horn.ogg differ diff --git a/sound/vehicles/hovercraft_driving.ogg b/sound/vehicles/hovercraft_driving.ogg new file mode 100644 index 000000000000..a52953082d63 Binary files /dev/null and b/sound/vehicles/hovercraft_driving.ogg differ diff --git a/sound/vehicles/hovercraft_overdrive.ogg b/sound/vehicles/hovercraft_overdrive.ogg new file mode 100644 index 000000000000..86441d854a33 Binary files /dev/null and b/sound/vehicles/hovercraft_overdrive.ogg differ