diff --git a/aurorastation.dme b/aurorastation.dme index 2e4e3eeed82..33c1a301818 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -3333,6 +3333,9 @@ #include "maps\away\ships\einstein\ee_spy_ship_ghostroles.dm" #include "maps\away\ships\elyra\elyra_strike_craft.dm" #include "maps\away\ships\elyra\elyra_strike_craft_ghostroles.dm" +#include "maps\away\ships\hegemony\hegemony_corvette\hegemony_corvette.dm" +#include "maps\away\ships\hegemony\hegemony_corvette\hegemony_corvette_areas.dm" +#include "maps\away\ships\hegemony\hegemony_corvette\hegemony_ghostroles.dm" #include "maps\away\ships\iac\iac_rescue_ship.dm" #include "maps\away\ships\iac\iac_rescue_ship_ghostroles.dm" #include "maps\away\ships\kataphracts\kataphract_areas.dm" diff --git a/code/game/objects/items/weapons/melee/energy.dm b/code/game/objects/items/weapons/melee/energy.dm index 560d0b42ca0..808c38810f4 100644 --- a/code/game/objects/items/weapons/melee/energy.dm +++ b/code/game/objects/items/weapons/melee/energy.dm @@ -290,6 +290,22 @@ desc = "An energy with a curved output, useful for defense and intimidation." active_force = 20 // 20 damage per hit, seems more balanced for what it can do +/obj/item/melee/energy/glaive/hegemony + name = "hegemony energy glaive" + desc = "A standard melee weapon for Unathi infantry, known across Hegemony space as a symbol of Izweski might." + icon_state = "hegemony-eglaive0" + +/obj/item/melee/energy/glaive/hegemony/activate(mob/living/user) + ..() + icon_state = "hegemony-eglaive1" + to_chat(user, SPAN_NOTICE("\The [src] is now energised.")) + +/obj/item/melee/energy/glaive/hegemony/deactivate(mob/living/user) + ..() + icon_state = initial(icon_state) + to_chat(user, SPAN_NOTICE("\The [src] is de-energised.")) + + /obj/item/melee/energy/sword/hegemony name = "hegemony energy blade" desc = "A righteous hardlight blade to strike down the dishonourable." diff --git a/code/game/objects/items/weapons/shields.dm b/code/game/objects/items/weapons/shields.dm index 0da30662f07..b40137de5af 100644 --- a/code/game/objects/items/weapons/shields.dm +++ b/code/game/objects/items/weapons/shields.dm @@ -41,7 +41,7 @@ /obj/item/shield/handle_shield(mob/user, var/on_back, var/damage, atom/damage_source = null, mob/attacker = null, def_zone = null, attack_text = "the attack") var/shield_dir = on_back ? user.dir : reverse_dir[user.dir] - + if(user.incapacitated() || !(check_shield_arc(user, shield_dir, damage_source, attacker))) return FALSE @@ -143,7 +143,7 @@ var/next_action var/sound_token var/sound_id - + /obj/item/shield/energy/Destroy() QDEL_NULL(sound_token) return ..() @@ -151,14 +151,14 @@ /obj/item/shield/energy/Initialize() . = ..() sound_id = "[sequential_id(/obj/item/shield/energy)]" - + /obj/item/shield/energy/update_icon() icon_state = "eshield[active]" if(active) set_light(1.5, 1.5, "#006AFF") else set_light(0) - + /obj/item/shield/energy/attack_self(mob/living/user) var/time = world.time if(time < next_action) @@ -228,19 +228,19 @@ if((is_sharp(damage_source) && damage > 10) || isbeam(damage_source)) return (base_block_chance - round(damage / 3)) return base_block_chance - + /obj/item/shield/energy/proc/HandleTurnOn() addtimer(CALLBACK(src, /obj/item/shield/energy/proc/UpdateSoundLoop), 0.25 SECONDS) playsound(src, 'sound/items/shield/energy/shield-start.ogg', 40) force = 10 w_class = ITEMSIZE_LARGE - + /obj/item/shield/energy/proc/HandleShutOff() addtimer(CALLBACK(src, /obj/item/shield/energy/proc/UpdateSoundLoop), 0.1 SECONDS) playsound(src, 'sound/items/shield/energy/shield-stop.ogg', 40) force = initial(force) w_class = initial(w_class) - + /obj/item/shield/energy/proc/UpdateSoundLoop() if (!active) QDEL_NULL(sound_token) @@ -249,10 +249,22 @@ /obj/item/shield/energy/hegemony name = "hegemony barrier" + desc = "A Zkrehk-Guild manufactured energy shield capable of protecting the wielder from both material and energy attack." + icon_state = "hegemony-eshield0" + +/obj/item/shield/energy/hegemony/update_icon() + icon_state = "hegemony-eshield[active]" + if(active) + set_light(1.5, 1.5, "e68917") + else + set_light(0) + +/obj/item/shield/energy/hegemony/kataphract + name = "kataphract barrier" desc = "A hardlight kite shield capable of protecting the wielder from both material and energy attack." icon_state = "kataphract-eshield0" -/obj/item/shield/energy/hegemony/update_icon() +/obj/item/shield/energy/hegemony/kataphract/update_icon() icon_state = "kataphract-eshield[active]" if(active) set_light(1.5, 1.5, "#e68917") diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 8e2c921c39a..3ad42975558 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -365,8 +365,8 @@ ) /obj/item/clothing/head/helmet/unathi/klax - name = "klaxan hopeful helmet" - desc = "A helmet designated to be worn by a K'lax hopeful. The retrofit features a modified shape and an extra two eye visors. Flash protection blocks many flashes, shielding sensitive Vaurca eyes." + name = "klaxan warrior helmet" + desc = "A helmet designated to be worn by a K'lax warrior. The retrofit features a modified shape and an extra two eye visors. Flash protection blocks many flashes, shielding sensitive Vaurca eyes." icon = 'icons/obj/vaurca_items.dmi' icon_state = "klax_hopeful_helmet" item_state = "klax_hopeful_helmet" diff --git a/code/modules/clothing/spacesuits/void/alien/unathi.dm b/code/modules/clothing/spacesuits/void/alien/unathi.dm index 9892fc13c69..f0589648ebc 100644 --- a/code/modules/clothing/spacesuits/void/alien/unathi.dm +++ b/code/modules/clothing/spacesuits/void/alien/unathi.dm @@ -131,3 +131,83 @@ bio = ARMOR_BIO_SHIELDED, rad = ARMOR_RAD_RESISTANT ) + +/obj/item/clothing/suit/space/void/hegemony + name = "hegemony military voidsuit" + desc = "A Hephaestus-manufactured armoured voidsuit, made for Unathi. The standard spacefaring attire of the Izweski Hegemony Navy." + icon = 'icons/obj/clothing/voidsuit/hegemony.dmi' + icon_override = 'icons/mob/species/unathi/suit.dmi' + icon_state = "hegemony-voidsuit" + item_state = "hegemony-voidsuit_item" + + w_class = ITEMSIZE_NORMAL + armor = list( + melee = ARMOR_MELEE_VERY_HIGH, + bullet = ARMOR_BALLISTIC_MEDIUM, + laser = ARMOR_LASER_PISTOL, + energy = ARMOR_ENERGY_SMALL, + bomb = ARMOR_BOMB_PADDED, + bio = ARMOR_BIO_SHIELDED, + rad = ARMOR_RAD_RESISTANT + ) + allowed = list(/obj/item/gun,/obj/item/device/flashlight,/obj/item/tank,/obj/item/device/suit_cooling_unit,/obj/item/material/sword,/obj/item/melee/hammer,/obj/item/melee/energy) + species_restricted = list(BODYTYPE_UNATHI) + refittable = FALSE + +/obj/item/clothing/head/helmet/space/void/hegemony + name = "hegemony military helmet" + desc = "A Hephaestus-manufactured armoured space helmet, made for Unathi. Usually seen on soldiers of the Izweski Hegemony Navy." + icon = 'icons/obj/clothing/voidsuit/hegemony.dmi' + icon_override = 'icons/mob/species/unathi/helmet.dmi' + icon_state = "hegemony-voidhelm" + item_state = "hegemony-voidhelm_item" + armor = list( + melee = ARMOR_MELEE_VERY_HIGH, + bullet = ARMOR_BALLISTIC_MEDIUM, + laser = ARMOR_LASER_PISTOL, + energy = ARMOR_ENERGY_SMALL, + bomb = ARMOR_BOMB_PADDED, + bio = ARMOR_BIO_SHIELDED, + rad = ARMOR_RAD_RESISTANT + ) + light_overlay = "helmet_light_dual_low" + brightness_on = 6 + species_restricted = list(BODYTYPE_UNATHI) + refittable = FALSE + + +/obj/item/clothing/suit/space/void/hegemony/specialist + name = "hegemony specialist voidsuit" + desc = "A Hephaestus-manufactured armoured voidsuit, made for Unathi. This one bears a green insignia, marking the wearer as a specialist within the Izweski Navy." + icon_state = "hegemony-voidsuit-spec" + item_state = "hegemony-voidsuit-spec_item" + +/obj/item/clothing/head/helmet/space/void/hegemony/specialist + name = "hegemony specialist helmet" + desc = "A Hephaestus-manufactured armoured space helmet, made for Unathi. This one bears a green insignia, marking the wearer as a specialist within the Izweski Navy." + icon_state = "hegemony-voidhelm-spec" + item_state = "hegemony-voidhelm-spec_item" + +/obj/item/clothing/suit/space/void/hegemony/captain + name = "hegemony captain's voidsuit" + desc = "A Hephaestus-manufactured armoured voidsuit, made for Unathi. This one bears a purple insignia, marking the wearer as a captain within the Izweski Navy." + icon_state = "hegemony-voidsuit-lead" + item_state = "hegemony-voidsuit-lead_item" + +/obj/item/clothing/head/helmet/space/void/hegemony/captain + name = "hegemony captain's helmet" + desc = "A Hephaestus-manufactured armoured space helmet, made for Unathi. This one bears a purple insignia, marking the wearer as a captain within the Izweski Navy." + icon_state = "hegemony-voidhelm-lead" + item_state = "hegemony-voidhelm-lead_item" + +/obj/item/clothing/suit/space/void/hegemony/priest + name = "hegemony priest's voidsuit" + desc = "A Hephaestus-manufactured armoured voidsuit, made for Unathi. This one bears a white insignia, marking the wearer as a Sk'akh priest within the Izweski Navy." + icon_state = "hegemony-voidsuit-priest" + item_state = "hegemony-voidsuit-priest_item" + +/obj/item/clothing/head/helmet/space/void/hegemony/priest + name = "hegemony priest's helmet" + desc = "A Hephaestus-manufactured armoured space helmet, made for Unathi. This one bears a purple insignia, marking the wearer as a Sk'akh priest within the Izweski Navy." + icon_state = "hegemony-voidhelm-priest" + item_state = "hegemony-voidhelm-priest_item" diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 52b0eb05bab..b7403c7aa7b 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -506,8 +506,8 @@ // Vaurca version of Unathi armor /obj/item/clothing/suit/armor/unathi/klax - name = "klaxan hopeful body armor" - desc = "An armored chestplate designated to be worn by a K'lax hopeful. The retrofit is only a bit shoddy." + name = "klaxan warrior body armor" + desc = "An armored chestplate designated to be worn by a K'lax warrior. The retrofit is only a bit shoddy." icon = 'icons/obj/vaurca_items.dmi' icon_state = "klax_hopeful" item_state = "klax_hopeful" diff --git a/code/modules/projectiles/guns/energy/nuclear.dm b/code/modules/projectiles/guns/energy/nuclear.dm index 656fa23e8f6..3f82466dec9 100644 --- a/code/modules/projectiles/guns/energy/nuclear.dm +++ b/code/modules/projectiles/guns/energy/nuclear.dm @@ -177,6 +177,25 @@ list(mode_name="smite", projectile_type=/obj/item/projectile/beam/pistol/hegemony, modifystate="hegemony_pistol", fire_sound='sound/weapons/laser1.ogg') ) +/obj/item/gun/energy/hegemonyrifle + name = "hegemony energy rifle" + desc = "An upgraded variant of the standard laser rifle. It does not have a stun setting." + desc_extended = "The Zkrehk-Guild Heavy Beamgun, an energy-based rifle designed and manufactured on Moghes. A special crystal used in its design allows it to penetrate armor with pinpoint accuracy." + icon = 'icons/obj/guns/hegemony_rifle.dmi' + icon_state = "hegemonyrifle" + item_state = "hegemonyrifle" + has_item_ratio = FALSE + fire_sound = 'sound/weapons/laser1.ogg' + slot_flags = SLOT_BELT|SLOT_BACK + max_shots = 15 + can_switch_modes = FALSE + can_turret = TRUE + turret_is_lethal = TRUE + projectile_type = /obj/item/projectile/beam/midlaser/hegemony + origin_tech = list(TECH_COMBAT = 6, TECH_MAGNET = 4) + is_wieldable = TRUE + modifystate = "hegemonyrifle" + /obj/item/gun/energy/repeater name = "energy repeater" desc = "A Stellar Corporate Conglomerate created energy repeater, extremely lightweight. It has three settings: Single, Three-Burst, and Full-Auto." diff --git a/code/modules/projectiles/projectile/beams.dm b/code/modules/projectiles/projectile/beams.dm index 2faf08bd75f..fe219b3dbd1 100644 --- a/code/modules/projectiles/projectile/beams.dm +++ b/code/modules/projectiles/projectile/beams.dm @@ -54,6 +54,13 @@ damage = 40 armor_penetration = 20 +/obj/item/projectile/beam/midlaser/hegemony + armor_penetration = 30 + muzzle_type = /obj/effect/projectile/muzzle/hegemony + tracer_type = /obj/effect/projectile/tracer/hegemony + impact_type = /obj/effect/projectile/impact/hegemony + + /obj/item/projectile/beam/noctiluca damage = 20 armor_penetration = 40 diff --git a/html/changelogs/RustingWithYou - burnthyfear.yml b/html/changelogs/RustingWithYou - burnthyfear.yml new file mode 100644 index 00000000000..fffe31fe7fe --- /dev/null +++ b/html/changelogs/RustingWithYou - burnthyfear.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: RustingWithYou + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds the Hegemony Corvette, an Izweski military vessel found in the Badlands." + - rscadd: "Adds Izweski Hegemony voidsuits and military weapons - an energy rifle and a variant energy glaive." diff --git a/icons/mob/items/weapons/lefthand_energy.dmi b/icons/mob/items/weapons/lefthand_energy.dmi index 611b8dca884..1a3809c794e 100644 Binary files a/icons/mob/items/weapons/lefthand_energy.dmi and b/icons/mob/items/weapons/lefthand_energy.dmi differ diff --git a/icons/mob/items/weapons/lefthand_shield.dmi b/icons/mob/items/weapons/lefthand_shield.dmi index f83d2c42942..70f2f8efab0 100644 Binary files a/icons/mob/items/weapons/lefthand_shield.dmi and b/icons/mob/items/weapons/lefthand_shield.dmi differ diff --git a/icons/mob/items/weapons/righthand_energy.dmi b/icons/mob/items/weapons/righthand_energy.dmi index dbd8c7e9258..fa0bedbb43e 100644 Binary files a/icons/mob/items/weapons/righthand_energy.dmi and b/icons/mob/items/weapons/righthand_energy.dmi differ diff --git a/icons/mob/items/weapons/righthand_shield.dmi b/icons/mob/items/weapons/righthand_shield.dmi index e3043efc8dc..f3dcc4cdbd1 100644 Binary files a/icons/mob/items/weapons/righthand_shield.dmi and b/icons/mob/items/weapons/righthand_shield.dmi differ diff --git a/icons/mob/species/unathi/helmet.dmi b/icons/mob/species/unathi/helmet.dmi index 4de58dab470..7e928419e6e 100644 Binary files a/icons/mob/species/unathi/helmet.dmi and b/icons/mob/species/unathi/helmet.dmi differ diff --git a/icons/mob/species/unathi/suit.dmi b/icons/mob/species/unathi/suit.dmi index 05032371b92..c5d144fb979 100644 Binary files a/icons/mob/species/unathi/suit.dmi and b/icons/mob/species/unathi/suit.dmi differ diff --git a/icons/obj/clothing/voidsuit/hegemony.dmi b/icons/obj/clothing/voidsuit/hegemony.dmi new file mode 100644 index 00000000000..c1009307316 Binary files /dev/null and b/icons/obj/clothing/voidsuit/hegemony.dmi differ diff --git a/icons/obj/guns/hegemony_rifle.dmi b/icons/obj/guns/hegemony_rifle.dmi new file mode 100644 index 00000000000..5dc76143254 Binary files /dev/null and b/icons/obj/guns/hegemony_rifle.dmi differ diff --git a/icons/obj/overmap/overmap_ships.dmi b/icons/obj/overmap/overmap_ships.dmi index 32b5cdfd84d..506879ddd3a 100644 Binary files a/icons/obj/overmap/overmap_ships.dmi and b/icons/obj/overmap/overmap_ships.dmi differ diff --git a/icons/obj/weapons.dmi b/icons/obj/weapons.dmi index 65abf180996..f786d31b2e6 100644 Binary files a/icons/obj/weapons.dmi and b/icons/obj/weapons.dmi differ diff --git a/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette.dm b/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette.dm new file mode 100644 index 00000000000..507ecdc4cc8 --- /dev/null +++ b/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette.dm @@ -0,0 +1,121 @@ +/datum/map_template/ruin/away_site/hegemony_corvette + name = "Hegemony Corvette" + description = "Ship with lizards." + suffixes = list("ships/hegemony/hegemony_corvette/hegemony_corvette.dmm") + sectors = list(SECTOR_BADLANDS, SECTOR_UUEOAESA) + spawn_weight = 1 + ship_cost = 1 + id = "hegemony_corvette" + shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/hegemony_shuttle) + +/singleton/submap_archetype/hegemony_corvette + map = "Hegemony Corvette" + descriptor = "Ship with lizards." + +/obj/effect/overmap/visitable/ship/hegemony_corvette + name = "Hegemony Corvette" + class = "HMV" //Hegemony Military Vessel + desc = "The Foundation-class corvette is the backbone of the Izweski Hegemony Navy, especially as many of their larger ships cannot operate without ready supplies of phoron. Under Not'zar's reign, Foundation-class vessels are often seen patrolling the Badlands and Sparring Sea, to secure Izweski trade routes against pirate incursion." + icon_state = "foundation" + moving_state = "foundation-moving" + colors = list("#e38222", "#f0ba3e") + scanimage = "unathi_corvette.png" + designer = "Hephaestus Industries, Izweski Hegemonic Naval Guilds" + volume = "75 meters length, 35 meters beam/width, 21 meters vertical height" + drive = "Low-Speed Warp Acceleration FTL Drive" + weapons = "Dual extruding medium-caliber ballistic armament, port obscured flight craft bay" + sizeclass = "Foundation-class corvette" + shiptype = "Military patrol and anti-pirate operation." + max_speed = 1/(2 SECONDS) + burn_delay = 1 SECONDS + vessel_mass = 5000 + fore_dir = SOUTH + vessel_size = SHIP_SIZE_SMALL + initial_restricted_waypoints = list( + "Hegemony Shuttle" = list("nav_hegemony_corvette_shuttle") + ) + initial_generic_waypoints = list( + "nav_hegemony_corvette1", + "nav_hegemony_corvette2", + "nav_hegemony_corvette3", + "nav_hegemony_corvette4" + ) + +/obj/effect/overmap/visitable/ship/hegemony_corvette/New() + designation = "[pick("Three Heads' Chosen", "Revenge for Gakal'zaal", "Child of Chanterel", "Horns of the Hegemon", "Hide of Steel", "Battle-Talon", "Roaming Warrior", "Abiding Victory", "Scorched Scales", "Wildfire of Moghes", "Travakh Unending", "Blessed By The Spirits", "Blackened Tail", "Legend Foretold", "Molten Claws", "Unfading River", "Emberstorm")]" + ..() + +/obj/effect/shuttle_landmark/hegemony_corvette + base_turf = /turf/space/dynamic + base_area = /area/space + +/obj/effect/shuttle_landmark/hegemony_corvette/nav1 + name = "Hegemony Corvette - Fore" + landmark_tag = "nav_hegemony_corvette1" + +/obj/effect/shuttle_landmark/hegemony_corvette/nav2 + name = "Hegemony Corvette - Aft" + landmark_tag = "nav_hegemony_corvette2" + +/obj/effect/shuttle_landmark/hegemony_corvette/nav3 + name = "Hegemony Corvette - Port" + landmark_tag = "nav_hegemony_corvette3" + +/obj/effect/shuttle_landmark/hegemony_corvette/nav4 + name = "Hegemony Corvette - Starboard" + landmark_tag = "nav_hegemony_corvette4" + +/obj/effect/shuttle_landmark/hegemony_corvette/dock2 + name = "Hegemony Corvette - Auxiliary Dock" + landmark_tag = "nav_hegemony_corvette_generic" + +/obj/effect/shuttle_landmark/hegemony_corvette/intrepid + name = "Hegemony Corvette - Intrepid Dock" + landmark_tag = "nav_hegemony_corvette_intrepid" + + +//Shuttle Stuff + +/obj/effect/overmap/visitable/ship/landable/hegemony_shuttle + name = "Hegemony Shuttle" + class = "HMV" + designation = "Hatchling" + desc = "The Hunter-class shuttle is the standard troop transport of the Izweski Hegemony, usually found attached to their smaller naval ships. While it is unarmed, it is agile, and armored for aggressive boarding maneuvers." + icon_state = "shuttle" + moving_state = "shuttle_moving" + shuttle = "Hegemony Shuttle" + colors = list("#e38222", "#f0ba3e") + max_speed = 1/(3 SECONDS) + burn_delay = 2 SECONDS + vessel_mass = 3000 //very inefficient pod + fore_dir = SOUTH + vessel_size = SHIP_SIZE_TINY + +/obj/machinery/computer/shuttle_control/explore/hegemony_shuttle + name = "shuttle control console" + shuttle_tag = "Hegemony Shuttle" + +/datum/shuttle/autodock/overmap/hegemony_shuttle + name = "Hegemony Shuttle" + move_time = 20 + shuttle_area = list(/area/shuttle/hegemony) + current_location = "nav_hegemony_corvette_shuttle" + landmark_transition = "nav_transit_hegemony_corvette" + dock_target = "hegemony_shuttle" + range = 1 + fuel_consumption = 2 + logging_home_tag = "nav_hegemony_corvette_shuttle" + defer_initialisation = TRUE + +/obj/effect/shuttle_landmark/hegemony_shuttle/transit + name = "In transit" + landmark_tag = "nav_transit_hegemony_corvette" + base_turf = /turf/space/transit/north + +/obj/effect/shuttle_landmark/hegemony_shuttle/dock + name = "Hegemony Corvette - Shuttle Dock" + landmark_tag = "nav_hegemony_corvette_shuttle" + docking_controller = "hegemony_shuttle_dock" + base_area = /area/space + base_turf = /turf/space + movable_flags = MOVABLE_FLAG_EFFECTMOVE \ No newline at end of file diff --git a/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette.dmm b/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette.dmm new file mode 100644 index 00000000000..084172a81bb --- /dev/null +++ b/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette.dmm @@ -0,0 +1,34491 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/item/deck/cards{ + pixel_x = -5 + }, +/obj/item/storage/pill_bottle/dice/gaming{ + pixel_x = 7 + }, +/obj/item/material/ashtray{ + pixel_y = 7; + pixel_x = -5 + }, +/turf/simulated/floor/carpet/lightblue, +/area/hegemony_ship/canteen) +"ag" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony2"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ah" = ( +/obj/item/bikehorn/rubberducky{ + name = "Clem" + }, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"aj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony1"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"al" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"am" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, eva" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/eva_storage) +"ao" = ( +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"ap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"aw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + layer = 2.71 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ax" = ( +/obj/machinery/door/airlock/hatch{ + name = "Engineering"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"aB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/air_sensor{ + frequency = 1984; + id_tag = "co2_sensor" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/hegemony_ship/engineering) +"aF" = ( +/obj/machinery/atmospherics/portables_connector{ + layer = 2.8; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + icon_state = "rwindow" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"aJ" = ( +/turf/template_noop, +/area/space) +"aK" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"aN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"aR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"aS" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship) +"aX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"aZ" = ( +/obj/structure/weightlifter, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"bc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"bd" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, starboard 1" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/starboard_propulsion) +"bf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_bruiser) +"bh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"bi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"bk" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/docking_port) +"bo" = ( +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"bs" = ( +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"bv" = ( +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/turf/simulated/floor, +/area/hegemony_ship/armory) +"bw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"bA" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/effect/floor_decal/corner/yellow/full, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"bB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"bJ" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -33 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"bU" = ( +/obj/effect/landmark/entry_point/aft, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/warpriests_quarters) +"bZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_bruiser) +"cc" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = list(113) + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/item/melee/energy/glaive/hegemony, +/obj/item/melee/energy/glaive/hegemony, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/armory) +"cd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"co" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"cp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"cr" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/button/remote/blast_door{ + pixel_x = 32; + req_one_access = list(113); + id = "hegemony3" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"cw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"cD" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"cE" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/template_noop, +/area/space) +"cF" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = 24; + pixel_x = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_y = 34; + pixel_x = 4 + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"cK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_flak) +"cL" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony{ + pixel_x = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony{ + pixel_y = -8; + pixel_x = 2 + }, +/turf/simulated/floor/carpet/lightblue, +/area/hegemony_ship/canteen) +"cT" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"cY" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 12 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"da" = ( +/obj/machinery/computer/ship/helm, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/sign/flag/hegemony/large/south, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"de" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"di" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"dp" = ( +/mob/living/heavy_vehicle/premade/ripley/loader, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"dr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"dx" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1984; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Monitor"; + output_tag = "co2_out"; + sensors = list("co2_sensor"="Tank") + }, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"dz" = ( +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/structure/weightlifter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"dK" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/material/twohanded/spear/bone{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/firealarm/west{ + dir = 2; + pixel_x = 0; + pixel_y = -31 + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"dN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor, +/area/shuttle/hegemony) +"dO" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"dT" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"dX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/magshield/nav_light/red, +/turf/template_noop, +/area/space) +"eb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"ee" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = -32; + pixel_y = -7; + name = "Auxiliary CIC Blastdoors"; + req_one_access = list(113); + id = "hegemony_cic" + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = -32; + pixel_y = 3; + req_one_access = list(113); + id = "hegemony3" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ef" = ( +/obj/structure/closet/crate{ + name = "!!! TRITIUM CONTAINER !!!" + }, +/obj/item/stack/material/tritium/full, +/obj/item/stack/material/tritium/full, +/obj/item/stack/material/tritium/full, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"eh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/hegemony_ship/engineering) +"eq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony_cic"; + name = "blast door" + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/aux_cic) +"er" = ( +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"eu" = ( +/obj/structure/toilet{ + dir = 1; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"eC" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/starboard_propulsion) +"eE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"eI" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "headmaster_bridge"; + icon_state = "pdoor0" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, captains quarters" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/captains_quarters) +"eO" = ( +/obj/structure/window/reinforced, +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light, +/obj/item/clothing/suit/space/void/hegemony/specialist, +/obj/item/clothing/head/helmet/space/void/hegemony/specialist, +/obj/item/clothing/shoes/magboots/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/eva_storage) +"eQ" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"eZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"fe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"ff" = ( +/obj/machinery/computer/ship/targeting, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"fg" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/decal/cleanable/flour, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"fh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"fi" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"fj" = ( +/obj/structure/bed, +/obj/item/towel_flat{ + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"fk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"fn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"fo" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"fr" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/item/soap/fire_soap, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"fu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + dir = 1; + is_critical = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"fw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"fA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/computer/ship/targeting, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"fB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = 32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony3"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"fC" = ( +/obj/effect/floor_decal/spline/plain/cee, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship) +"fE" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/gun_deck_flak) +"fI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship) +"fM" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"fQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"fS" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, bruiser cannon" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/gun_deck_bruiser) +"fV" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/shipsensors, +/turf/simulated/floor/airless, +/area/shuttle/hegemony) +"ga" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"gb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"gd" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/firealarm/west, +/obj/machinery/button/remote/blast_door{ + name = "Auxiliary CIC Blastdoors"; + req_one_access = list(113); + id = "hegemony_cic" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"gf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"gg" = ( +/obj/structure/sign/directions/com{ + pixel_y = 40 + }, +/obj/structure/sign/directions/civ{ + dir = 4; + pixel_y = 34 + }, +/obj/structure/sign/directions/civ{ + dir = 8; + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"gk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "hegemony_shuttle_out" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"gm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"gA" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/highsecurity{ + name = "Bridge"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"gC" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/vending/wallmed1{ + pixel_x = -32; + req_access = null + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"gE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"gK" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/structure/sign/flag/hegemony/large/east, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"gQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"gS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ha" = ( +/obj/effect/map_effect/window_spawner/reinforced/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"hc" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain, +/obj/item/reagent_containers/food/snacks/sushi_serve{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/snacks/sushi_serve, +/obj/item/reagent_containers/food/snacks/sushi_serve{ + pixel_x = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"hg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"hj" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "EVA Equipment"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"hm" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/structure/window/borosilicate/reinforced, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"hn" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"hs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1; + icon_state = "map-supply" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"ht" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"hy" = ( +/obj/effect/shuttle_landmark/hegemony_corvette/nav4, +/turf/template_noop, +/area/space) +"hA" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, bridge airlock" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/bridge) +"hB" = ( +/obj/machinery/light/colored/red{ + dir = 1 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"hC" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Canteen" + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"hH" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"hI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24; + req_access = list(209) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"hJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"hK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"hL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"hS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"hV" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"hX" = ( +/obj/structure/sign/securearea{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"ic" = ( +/obj/effect/shuttle_landmark/hegemony_corvette/dock2, +/turf/simulated/floor, +/area/hegemony_ship) +"ie" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"if" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ii" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"ij" = ( +/obj/structure/curtain/open/bed, +/obj/structure/bed, +/obj/item/bedsheet/ian, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/ghostspawpoint{ + name = "igs - hegemony_crew"; + identifier = "hegemony_crew" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"ip" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/tcomms) +"iu" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor, +/area/space) +"iw" = ( +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"iB" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"iG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"iO" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"iR" = ( +/obj/structure/sign/fire{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"iU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"iW" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship) +"jb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = 32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony5"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"jk" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"jn" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"jt" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"jz" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/unathi/izharshan, +/obj/item/cane/shaman, +/obj/item/storage/box/fancy/matches, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/clothing/under/unathi/mogazali/blue, +/obj/item/clothing/under/unathi/mogazali/green, +/obj/item/clothing/suit/unathi/robe/robe_coat/red, +/obj/item/clothing/suit/unathi/robe/robe_coat/blue, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"jD" = ( +/obj/machinery/door/airlock/glass{ + name = "Trophy Room" + }, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/trophy_room) +"jN" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"jO" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"jT" = ( +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/firealarm/west, +/obj/item/clothing/suit/armor/unathi/hegemony, +/obj/item/clothing/suit/armor/unathi/hegemony, +/obj/item/clothing/suit/armor/unathi/hegemony, +/obj/item/clothing/suit/armor/unathi/hegemony, +/obj/item/clothing/suit/armor/unathi/hegemony, +/obj/item/clothing/head/helmet/unathi/hegemony, +/obj/item/clothing/head/helmet/unathi/hegemony, +/obj/item/clothing/head/helmet/unathi/hegemony, +/obj/item/clothing/head/helmet/unathi/hegemony, +/obj/item/clothing/head/helmet/unathi/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/armory) +"kd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"kh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"kj" = ( +/obj/effect/floor_decal/industrial/warning{ + layer = 2.71 + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"kr" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"kt" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"kw" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/firstaid/fire, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"kx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_flak) +"kB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"kF" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/button/remote/blast_door{ + name = "Ship Lockdown"; + pixel_y = 8; + pixel_x = -5 + }, +/obj/machinery/button/remote/blast_door{ + name = "Bridge Blastdoors"; + pixel_x = 5; + pixel_y = 8 + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = -5; + pixel_y = -1; + name = "Ship Window Shields" + }, +/obj/machinery/button/remote/blast_door{ + name = "Auxiliary CIC Blastdoors"; + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/clothing/head/helmet/pilot{ + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/pilot{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"kG" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/pottedplant, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"kH" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship) +"kM" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm/north, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"kQ" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + layer = 2.8 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"kR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"kU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"le" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"ll" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"lm" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, bridge" + }, +/obj/effect/map_effect/window_spawner/full/reinforced, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"lo" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"ls" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1385; + id_tag = "hegemony_shuttle_pump_in" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"ly" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/sign/flag/hegemony/large/west, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"lz" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"lH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + id_tag = "hegemony_shuttle_pump_out_external"; + frequency = 1385; + layer = 2.8 + }, +/turf/simulated/floor/airless, +/area/shuttle/hegemony) +"lI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"lN" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"lO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"lP" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/armory) +"lQ" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"lT" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"lU" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/aux_cic) +"lW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"lX" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + pixel_y = -32; + req_one_access = list(113); + id = "hegemony1" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"lY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/portables_connector{ + layer = 2.8; + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"mc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"mh" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/gun_deck_flak) +"ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"mm" = ( +/obj/structure/bed/stool/chair/office/bridge, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"mr" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"mv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"mw" = ( +/obj/machinery/computer/shuttle_control/explore/hegemony_shuttle, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/shuttle/hegemony) +"mz" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"mA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"mB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"mG" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"mJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"mK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"mM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"mQ" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"mS" = ( +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/light/colored/red{ + dir = 4 + }, +/obj/item/gun/energy/hegemonyrifle, +/obj/item/gun/energy/hegemonyrifle, +/obj/structure/closet/secure_closet/guncabinet{ + req_access = list(113) + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/armory) +"mX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"mY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"mZ" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"nb" = ( +/obj/item/toy/plushie/mouse{ + name = "Khrazahk" + }, +/turf/simulated/floor, +/area/hegemony_ship/brig) +"nd" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"ne" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"nl" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/airlock/service{ + name = "Crew's Quarters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/crew_quarters) +"nm" = ( +/obj/machinery/firealarm/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"nz" = ( +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"nC" = ( +/turf/space/transit/north, +/area/space) +"nG" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/medbay) +"nK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"nL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_bruiser) +"nS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/colored/red{ + dir = 1 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"nT" = ( +/obj/effect/shuttle_landmark/hegemony_shuttle/transit, +/turf/space/transit/north, +/area/space) +"nX" = ( +/obj/structure/bed/stool/padded, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"od" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"oe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"og" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"oi" = ( +/obj/machinery/computer/ship/navigation, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"oj" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + req_access = list(30) + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca, +/obj/item/ship_ammunition/francisca/frag, +/obj/item/ship_ammunition/francisca/frag, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"om" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"oo" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/aux_cic) +"oq" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, bathroom" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/restroom) +"or" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "Propulsion"; + req_one_access = list(113) + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"os" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ow" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ox" = ( +/obj/structure/table/rack, +/obj/item/ship_ammunition/bruiser/real/ap{ + pixel_x = 7 + }, +/obj/item/ship_ammunition/bruiser/real/ap{ + pixel_x = -7 + }, +/obj/item/ship_ammunition/bruiser/real/ap, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/gun_deck_bruiser) +"oz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"oA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9; + icon_state = "warning" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/flag/hegemony/large/north, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_flak) +"oB" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/port_propulsion) +"oE" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/warpriests_quarters) +"oG" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "headmaster_bridge"; + icon_state = "pdoor0" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, center" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship) +"oI" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/canteen) +"oP" = ( +/obj/structure/table/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"oQ" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"oS" = ( +/obj/item/modular_computer/laptop, +/obj/structure/table/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"pa" = ( +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/conveyor{ + name = "running machine" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"pb" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/sign/flag/hegemony/large/north, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"pf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_bruiser) +"pi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony3"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"po" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"pp" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/structure/closet/walllocker/medical{ + pixel_x = 32; + name = "blood freezer" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"pq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"pr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28; + req_one_access = list(24,11,55) + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"pA" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"pC" = ( +/obj/structure/lattice/catwalk, +/obj/item/hullbeacon/red, +/turf/template_noop, +/area/space) +"pF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"pH" = ( +/obj/structure/window/reinforced, +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/clothing/suit/space/void/hegemony/priest, +/obj/item/clothing/head/helmet/space/void/hegemony/priest, +/obj/item/clothing/shoes/magboots/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/eva_storage) +"pI" = ( +/obj/machinery/vending/engivend{ + req_access = list(209) + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"pJ" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"pK" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, port 1" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/port_propulsion) +"pL" = ( +/obj/effect/map_effect/airlock/w_to_e/long/square, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship) +"pO" = ( +/obj/item/clothing/mask/breath/medical, +/obj/machinery/iv_drip, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"pP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/gun_deck_bruiser) +"pU" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"pW" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"pX" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"qb" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"qc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"qm" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/medbay) +"qp" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/surgery, +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 1 + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"qr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"qs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/airlock/highsecurity{ + name = "Shuttle Dock"; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"qu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"qA" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/fake_object{ + desc = "A panel controlling an SUPB Pod. This one states the pod is currently offline."; + icon = 'icons/obj/computer.dmi'; + icon_state = "lift"; + name = "SUPB lauching panel" + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"qI" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/warpriests_quarters) +"qL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/clothing/suit/space/void/hegemony, +/obj/item/clothing/head/helmet/space/void/hegemony, +/obj/item/clothing/head/helmet/space/void/hegemony, +/obj/item/clothing/suit/space/void/hegemony, +/obj/item/clothing/shoes/magboots/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/eva_storage) +"qO" = ( +/obj/machinery/light/colored/red, +/turf/simulated/floor, +/area/shuttle/hegemony) +"qU" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship) +"qX" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"qY" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/medbay) +"ra" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"rb" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/gun_deck_bruiser) +"rg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ro" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"rp" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"rq" = ( +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"rs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm/west, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"rt" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"rx" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = -30; + pixel_x = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/closet/crate/bin{ + name = "trashbin" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"rE" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"rJ" = ( +/obj/machinery/computer/ship/sensors, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/shuttle/hegemony) +"rK" = ( +/obj/structure/closet/cabinet, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/item/spacecash/c100, +/obj/item/spacecash/c20, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/clothing/under/unathi, +/obj/item/clothing/glasses/safety/goggles/wasteland, +/obj/item/clothing/head/unathi, +/obj/item/clothing/accessory/poncho, +/obj/item/clothing/shoes/caligae/armor, +/obj/item/reagent_containers/food/snacks/meatsnack, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"rL" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/hegemony) +"rO" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"rU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"rZ" = ( +/obj/machinery/telecomms/allinone/ship, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"sg" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_bruiser) +"sh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"sl" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"sn" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"sp" = ( +/obj/structure/table/stone/marble, +/obj/item/fossil/skull/horned{ + desc = "It's a fossilised, horned skull of a Sinta'Unathi." + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"sq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"ss" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + layer = 2.71 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"sv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ship_weapon_dummy, +/turf/template_noop, +/area/space) +"sy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"sB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"sC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/vending/tool, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"sF" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"sG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"sI" = ( +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "hegemony_shuttle_out" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1385; + master_tag = "hegemony_shuttle"; + name = "exterior access button"; + pixel_x = -9; + pixel_y = -23; + dir = 8 + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, airlock" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"sJ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"sK" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Boarding Pods"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"sO" = ( +/obj/machinery/vending/zora{ + pixel_y = -10 + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship) +"sQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"sS" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"sT" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/heavy_vehicle/premade/ripley/loader, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"sW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"sX" = ( +/obj/structure/table/rack, +/obj/item/ship_ammunition/bruiser/real/he{ + pixel_x = 7 + }, +/obj/item/ship_ammunition/bruiser/real/he{ + pixel_x = -7 + }, +/obj/item/ship_ammunition/bruiser/real/he, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/light/colored/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/gun_deck_bruiser) +"ta" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"td" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = 32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony4"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"tj" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"tk" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"tn" = ( +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"tw" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"tx" = ( +/obj/machinery/computer/ship/sensors, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"tA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"tB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"tG" = ( +/obj/structure/closet/cabinet, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/item/spacecash/c100, +/obj/item/spacecash/c10, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/clothing/under/unathi, +/obj/item/clothing/suit/unathi/robe/robe_coat, +/obj/item/clothing/wrists/unathi/jeweled, +/obj/item/clothing/shoes/caligae/armor, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"tL" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"tM" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + layer = 2.8 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"tP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony4"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"tR" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"tU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"tX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_flak) +"uc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"ud" = ( +/obj/structure/table/steel, +/obj/item/folder/sec, +/obj/machinery/firealarm/north, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"ul" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"up" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, engine compartment" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/starboard_propulsion) +"uq" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/trophy_room) +"us" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"uu" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"uv" = ( +/obj/structure/closet/cabinet, +/obj/item/spacecash/c500, +/obj/item/spacecash/c200, +/obj/item/spacecash/c200, +/obj/item/spacecash/c20, +/obj/item/spacecash/c20, +/obj/item/spacecash/c20, +/obj/item/spacecash/c20, +/obj/item/spacecash/c50, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10, +/obj/item/melee/energy/sword/hegemony, +/obj/item/clothing/under/unathi/mogazali, +/obj/item/clothing/accessory/holster/hip, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/shield/energy/hegemony, +/turf/simulated/floor/carpet/lightblue, +/area/hegemony_ship/captains_quarters) +"uz" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/space) +"uA" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"uE" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower, +/obj/item/soap, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"uJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"uK" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"uN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"uO" = ( +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"uS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"uW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_y = 32 + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony2"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"va" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ve" = ( +/obj/structure/table/standard, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/item/storage/bag/inflatable, +/obj/machinery/firealarm/north, +/obj/item/storage/bag/inflatable, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"vf" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"vh" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor, +/area/hegemony_ship/brig) +"vj" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"vk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"vm" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"vp" = ( +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"vr" = ( +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 40 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 34 + }, +/obj/structure/sign/directions/security{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"vu" = ( +/obj/structure/table/rack, +/obj/item/ship_ammunition/bruiser/real/beehive{ + pixel_x = -7 + }, +/obj/item/ship_ammunition/bruiser/real/beehive{ + pixel_x = 7; + desc = "An expensive shell actually designed for a bruiser cannon. Very popular among sinta; this shell bursts into many slugger projectiles that punch through the hull with less mass, but more force." + }, +/obj/item/ship_ammunition/bruiser/real/beehive, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/gun_deck_bruiser) +"vz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"vA" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + icon_state = "rwindow" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/clothing/suit/space/void/sol/sfa, +/obj/item/clothing/head/helmet/space/void/sol/sfa, +/obj/item/gun/projectile/pistol/sol, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"vB" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/sign/flag/hegemony/large/north, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"vM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"vQ" = ( +/obj/machinery/door/firedoor/noid, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Armory"; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"vW" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"wa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"we" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"wi" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"wk" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"wn" = ( +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/gun/projectile/heavysniper/unathi, +/obj/item/gun/projectile/heavysniper/unathi, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/item/ammo_casing/slugger, +/obj/structure/closet/secure_closet/guncabinet{ + req_access = list(113) + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/armory) +"wo" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"wB" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"wC" = ( +/obj/machinery/power/terminal{ + dir = 1; + icon_state = "term" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/pipedispenser, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"wF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6; + icon_state = "warning" + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"wI" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/medbay) +"wM" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"wO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"wQ" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship) +"wR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"wU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"wY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/east, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"wZ" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"xh" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space) +"xk" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"xo" = ( +/obj/structure/sign/fire{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + req_access = list(30) + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"xq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"xt" = ( +/obj/structure/window/reinforced, +/obj/structure/ship_weapon_dummy, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"xu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/effect/shuttle_landmark/hegemony_shuttle/dock, +/turf/simulated/floor, +/area/hegemony_ship/docking_port) +"xw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"xy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"xB" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4; + icon_state = "map_scrubber_on" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + pixel_x = -23; + pixel_y = 5; + id_tag = "hegemony_shuttle_interior_sensor"; + frequency = 1385 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1385; + master_tag = "hegemony_shuttle"; + name = "interior access button"; + pixel_x = -24; + pixel_y = -5; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"xF" = ( +/obj/structure/curtain/open/bed, +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/ghostspawpoint{ + name = "igs - hegemony_crew"; + identifier = "hegemony_crew" + }, +/obj/structure/sign/flag/hegemony{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"xI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"xJ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "hegemony_shuttle_in" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"xL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"xS" = ( +/obj/effect/map_effect/window_spawner/reinforced/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"xT" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1984; + id = "co2_in"; + name = "carbon dioxide injector"; + use_power = 1; + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/hegemony_ship/engineering) +"xV" = ( +/turf/simulated/floor/tiled/ramp{ + dir = 4 + }, +/area/hegemony_ship) +"xX" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/temple) +"ya" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"yc" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"yd" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony5"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ye" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"yh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"yl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"ym" = ( +/obj/machinery/iv_drip, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/oxygen, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"yo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor, +/area/shuttle/hegemony) +"yq" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"yr" = ( +/obj/machinery/portable_atmospherics/canister/empty{ + name = "waste canister" + }, +/obj/machinery/atmospherics/portables_connector{ + layer = 2.8 + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"yv" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"yy" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"yH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"yK" = ( +/obj/effect/step_trigger/teleporter, +/turf/space/transit/north, +/area/space) +"yL" = ( +/obj/effect/step_trigger/teleporter, +/obj/effect/step_trigger/teleporter, +/turf/space/transit/north, +/area/space) +"yM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"yN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"yO" = ( +/obj/structure/sign/securearea{ + desc = "A danger sign which reads 'DANGER: EXPLOSIVE ORDINANCE' and 'THIS ROOM CONTAINS ORDINANCE THAT WILL KILL YOU INSTANTLY'."; + name = "\improper DANGER: EXPLOSIVE ORDINANCE sign"; + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4; + icon_state = "rwindow" + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/machinery/door/window/brigdoor/southright, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"yQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"yV" = ( +/obj/effect/floor_decal/industrial/warning/cee, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"yW" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/restroom) +"zl" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_flak) +"zm" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/structure/curtain/open/bed, +/obj/effect/ghostspawpoint{ + name = "igs - hegemony_warpriest"; + identifier = "hegemony_warpriest" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"zo" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"zp" = ( +/obj/structure/simple_door/wood{ + name = "Warpriest's Quarters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"zq" = ( +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Gun Bay"; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"zr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9; + icon_state = "warning" + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"zs" = ( +/obj/machinery/door/airlock/hatch{ + name = "Propulsion"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"zt" = ( +/obj/structure/closet/crate/bin{ + name = "trashbin" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"zu" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + layer = 2.71 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"zw" = ( +/obj/structure/bed/stool/chair/padded{ + dir = 4 + }, +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"zz" = ( +/obj/structure/curtain/open/bed, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/effect/ghostspawpoint{ + name = "igs - hegemony_klax"; + identifier = "hegemony_klax" + }, +/obj/structure/sign/flag/sedantis{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"zC" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/power/apc{ + dir = 1; + is_critical = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"zF" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"zH" = ( +/obj/structure/bed, +/obj/structure/curtain/open/bed, +/obj/item/bedsheet/blue, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/obj/effect/ghostspawpoint{ + name = "igs - hegemony_crew"; + identifier = "hegemony_crew" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"zI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"zJ" = ( +/obj/structure/closet/crate, +/obj/item/tank/hydrogen/shuttle, +/obj/item/tank/hydrogen/shuttle, +/obj/item/tank/hydrogen/shuttle, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"zL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_flak) +"zN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"zO" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"zQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"zR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/meter, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"zS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Aa" = ( +/obj/structure/janitorialcart/full/water{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ab" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Ae" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/snacks/meatsnack{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/snacks/meatsnack, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"Af" = ( +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/rig/unathi/fancy, +/obj/structure/sign/flag/hegemony/large/north, +/turf/simulated/floor, +/area/hegemony_ship/armory) +"Ai" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"Aj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/aux_cic) +"Ap" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8; + icon_state = "term" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Aq" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"As" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"At" = ( +/obj/structure/table/rack, +/obj/item/ship_ammunition/bruiser/real/ap{ + pixel_x = 7 + }, +/obj/item/ship_ammunition/bruiser/real/ap{ + pixel_x = -7 + }, +/obj/item/ship_ammunition/bruiser/real/ap, +/obj/effect/floor_decal/industrial/hatch/red, +/obj/machinery/light/colored/red, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/gun_deck_bruiser) +"Av" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ay" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Az" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/structure/window/borosilicate/reinforced, +/turf/simulated/floor, +/area/shuttle/hegemony) +"AG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony4"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"AH" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"AK" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4; + icon_state = "rwindow" + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/machinery/door/window/brigdoor/southright, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/ap, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_y = 8 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 4 + }, +/obj/item/ship_ammunition/francisca/frag, +/obj/item/ship_ammunition/francisca/frag, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"AT" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"AW" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"AX" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/sign/flag/hegemony/large/west, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Ba" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"Bg" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/hegemony_ship/engineering) +"Bh" = ( +/obj/machinery/light, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "hegemony_dock_doors" + }, +/turf/simulated/floor, +/area/hegemony_ship/docking_port) +"Bk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Bo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"Bq" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"Bz" = ( +/obj/structure/toilet, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"BB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"BD" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"BF" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"BG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/gun_deck_bruiser) +"BH" = ( +/obj/machinery/power/smes/buildable/horizon_shuttle, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"BI" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/lattice, +/turf/template_noop, +/area/space) +"BN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"BO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"BS" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/atmos_distro) +"BX" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/canteen) +"BZ" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/eva_storage) +"Cb" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/captains_quarters) +"Ck" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony5"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Cp" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + frequency = 1385; + id_tag = "hegemony_shuttle_exterior_sensor"; + pixel_y = -30 + }, +/turf/template_noop, +/area/space) +"Cr" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary/cardinal, +/area/hegemony_ship) +"Cw" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, starboard 2" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/starboard_propulsion) +"Cx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"Cy" = ( +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/armory) +"CK" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/gun/energy/taser, +/obj/item/melee/baton/loaded, +/obj/item/storage/belt/security, +/obj/item/reagent_containers/spray/pepper, +/obj/item/grenade/flashbang, +/obj/item/grenade/flashbang, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/glasses/fakesunglasses/aviator, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"CM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"CN" = ( +/obj/structure/ship_weapon_dummy, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"CP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"CQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/aux_cic) +"CS" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/hegemony) +"CX" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"Di" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/machinery/light/colored/red, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Dk" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"Dm" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"Dn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Dr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Dx" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"Dz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"DA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2"; + dir = 1 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"DD" = ( +/obj/structure/table/stone/marble, +/obj/item/flame/candle{ + pixel_y = 16 + }, +/obj/item/flame/candle{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/flame/candle{ + pixel_x = 11; + pixel_y = 16 + }, +/obj/item/material/hatchet/unathiknife, +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"DJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"DK" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"DO" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"DQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"DU" = ( +/obj/machinery/computer/ship/engines, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"DX" = ( +/obj/structure/cable{ + icon_state = "1-2"; + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"DZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Ec" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/closet{ + name = "engineering equipment" + }, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/clothing/gloves/yellow/specialu, +/obj/item/clothing/gloves/yellow/specialu, +/obj/item/stack/material/wood/full, +/obj/item/storage/box/lights/bulbs, +/obj/machinery/light, +/obj/item/stack/liquidbags/half_full, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"Ei" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/shipsensors/weak, +/turf/simulated/floor/airless, +/area/space) +"Ej" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ep" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/bridge) +"Eq" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/temple) +"Es" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/pottedplant, +/obj/machinery/firealarm/south, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"Ev" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/gun_deck_bruiser) +"Ew" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/colored/red, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Ex" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ey" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"EA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"EB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"EM" = ( +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/hegemony_ship/bridge) +"EN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/hegemony) +"EY" = ( +/obj/machinery/computer/ship/helm, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Ff" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/iff_beacon, +/turf/simulated/floor/airless, +/area/space) +"Fg" = ( +/obj/structure/table/rack, +/obj/item/towel, +/obj/item/towel, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"Fp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + layer = 2.71 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = -32; + req_one_access = list(113); + id = "hegemony5" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Fq" = ( +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/airlock/glass{ + name = "Temple" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"Fs" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Fv" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, compartment" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/gun_deck_bruiser) +"FB" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/medbay) +"FK" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/trophy_room) +"FM" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/flag/kazhkz{ + pixel_y = 30 + }, +/obj/item/clothing/head/dominia/fleet/officer, +/obj/item/shield/energy/dominia, +/obj/item/gun/projectile/automatic/rifle/dom, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"FO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "hegemony_shuttle_in" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"FQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"FS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"FU" = ( +/turf/simulated/floor/foamedmetal, +/area/space) +"FW" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"Ga" = ( +/obj/machinery/computer/ship/sensors, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"Gd" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"Gh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/meter, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Gk" = ( +/obj/structure/table/rack, +/obj/item/ship_ammunition/bruiser/real/he{ + pixel_x = 7 + }, +/obj/item/ship_ammunition/bruiser/real/he{ + pixel_x = -7 + }, +/obj/item/ship_ammunition/bruiser/real/he, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/gun_deck_bruiser) +"Gm" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, crew compartment" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/hegemony) +"Gn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Go" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Gp" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/temple) +"Gt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"GA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"GB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"GD" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, weapons bay" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/gun_deck_bruiser) +"GF" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"GH" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"GJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1385; + id_tag = "hegemony_shuttle_pump_in" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"GL" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"GM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"GN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"GS" = ( +/obj/machinery/power/apc{ + dir = 1; + is_critical = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"GU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ha" = ( +/obj/machinery/vending/cigarette/merchant{ + pixel_y = -10 + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship) +"Hb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"Hc" = ( +/obj/item/device/healthanalyzer, +/obj/item/device/breath_analyzer, +/obj/item/clothing/mask/surgical, +/obj/item/storage/belt/medical/first_responder/combat/full, +/obj/item/clothing/gloves/latex/nitrile/unathi, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/accessory/storage/pouches/white, +/obj/item/clothing/accessory/storage/white_vest, +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/closet{ + name = "healers equipment" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"He" = ( +/obj/structure/table/rack, +/obj/item/ship_ammunition/bruiser/real/canister{ + pixel_x = -7 + }, +/obj/item/ship_ammunition/bruiser/real/canister{ + pixel_x = 7 + }, +/obj/item/ship_ammunition/bruiser/real/canister, +/obj/effect/floor_decal/industrial/hatch/red, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/gun_deck_bruiser) +"Hf" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"Hg" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"Hl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Hn" = ( +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"Ho" = ( +/obj/structure/table/glass, +/obj/item/clothing/suit/space/void/unathi_pirate/captain{ + pixel_y = -4; + pixel_x = 3 + }, +/obj/item/clothing/head/helmet/space/void/unathi_pirate/captain{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"Hq" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/structure/closet{ + name = "breaching equipment" + }, +/obj/item/gun/energy/plasmacutter, +/obj/item/gun/energy/plasmacutter, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"Hz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"HB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/emergency, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -32; + req_one_access = null + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"HF" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship) +"HH" = ( +/obj/machinery/door/blast/odin/open, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"HI" = ( +/obj/structure/viewport/unathi, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"HJ" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/template_noop, +/area/space) +"HM" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"HN" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/item/clothing/suit/unathi/robe/robe_coat/blue, +/obj/item/clothing/suit/unathi/robe/robe_coat/orange, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"HT" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Ie" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = -32; + req_one_access = list(113); + id = "hegemony4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ii" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"In" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -32; + req_one_access = null + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"Ip" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"Ir" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"Is" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space) +"IC" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"IE" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"IF" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"IG" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green, +/obj/structure/sign/flag/hegemony/large/south, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"IH" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"IJ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"IK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"IL" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft engines, port 2" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/port_propulsion) +"IO" = ( +/obj/structure/table/stone/marble, +/obj/item/flame/candle{ + pixel_y = 16 + }, +/obj/item/flame/candle{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/flame/candle{ + pixel_x = 11; + pixel_y = 16 + }, +/obj/item/material/hatchet/unathiknife, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"IQ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/iff_beacon, +/turf/simulated/floor/airless, +/area/shuttle/hegemony) +"IU" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/light/colored/red{ + dir = 4 + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"IZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + icon_state = "map-scrubbers" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Jb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/hegemony) +"Je" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Jj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"Jl" = ( +/turf/simulated/floor/carpet/lightblue, +/area/hegemony_ship/captains_quarters) +"Jn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"Jo" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gun Bay"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"Jp" = ( +/obj/structure/railing/mapped, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Jq" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/sign/flag/hegemony/large/west, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Jt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ju" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, canteen" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/canteen) +"Jv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Jz" = ( +/obj/structure/ship_weapon_dummy, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"JA" = ( +/obj/machinery/power/portgen/basic/fusion, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"JD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"JG" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"JN" = ( +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/armory) +"JO" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light/colored/red{ + dir = 4 + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"JU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + pixel_y = 32; + req_one_access = list(113); + id = "hegemony2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"JW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_y = 32 + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony1"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"JX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/template_noop, +/area/space) +"Kd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Kf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"Kg" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"Kt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"Ku" = ( +/obj/effect/decal/fake_object{ + desc = "An SUPB Pod, also know as a Single Use Personal Boarding Pod. These pods are utilized across the Spur for interdictions and hostile boarding actions across the Spur. These have reinforced plasteel bases designed to punch through a vessel's armor and insert troops directly into the vessel while causing severe damage in the process. "; + icon = 'icons/obj/vehicles.dmi'; + icon_state = "droppod"; + name = "Modified SUPB Pod" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"Kz" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"KB" = ( +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"KD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"KG" = ( +/obj/structure/bed/stool/padded, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"KL" = ( +/obj/structure/table/steel, +/obj/item/storage/box/zipties, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"KM" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/book/manual/dominia_honor, +/obj/item/clothing/head/beret/dominia/priest/red, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"KN" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1385; + id_tag = "hegemony_shuttle_dock"; + req_one_access = list(113); + tag_door = "hegemony_dock_doors"; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"KR" = ( +/obj/structure/sign/radiation, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/engineering) +"KU" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/gun_deck_bruiser) +"KW" = ( +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/aux_cic) +"KZ" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Ammo Store"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/gun_deck_bruiser) +"Lf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Li" = ( +/obj/structure/closet/walllocker{ + pixel_y = 32; + name = "!!! KOIS STORAGE - CAUTION !!!" + }, +/obj/item/reagent_containers/food/snacks/koissteak, +/obj/item/reagent_containers/food/snacks/koissteak, +/obj/item/reagent_containers/food/snacks/koiswaffles, +/obj/item/reagent_containers/food/snacks/koismuffin, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"Ln" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"Lp" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "headmaster_bridge"; + icon_state = "pdoor0" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship) +"Lq" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"Ls" = ( +/obj/effect/landmark/entry_point/fore{ + name = "fore, compartment" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/engineering) +"Lu" = ( +/obj/effect/floor_decal/industrial/warning{ + layer = 2.71 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Lx" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"LB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"LC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"LE" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"LR" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"LU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 28; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"LV" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, engine compartment" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/port_propulsion) +"LX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/light/colored/red{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"LZ" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"Mg" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"Mi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ml" = ( +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Mm" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"Mo" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Healer's Bay"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"Mr" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Mt" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + layer = 2.71 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = 32; + req_one_access = list(113); + id = "hegemony5" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Mv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/hegemony_ship/bridge) +"MB" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Cell"; + req_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"MF" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"MJ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = 32; + req_one_access = list(113); + id = "hegemony4" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"MM" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_containers/food/snacks/phoroncandy, +/obj/item/clothing/suit/vaurca/silver, +/obj/item/vaurca/box, +/obj/item/skrell_projector/vaurca_projector, +/obj/item/clothing/mask/breath/vaurca/filter, +/obj/item/melee/energy/vaurca, +/obj/item/clothing/under/vaurca/gearharness/black, +/obj/item/clothing/under/vaurca/gearharness, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/item/spacecash/c100, +/obj/item/spacecash/c10, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/clothing/shoes/caligae/armor, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"MO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"MQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"MS" = ( +/turf/simulated/floor, +/area/shuttle/hegemony) +"MW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"MZ" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_one_access = list(114) + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"Nb" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"Nc" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/reagent_containers/food/snacks/meat/bat, +/obj/item/reagent_containers/food/snacks/meat/bat, +/obj/item/reagent_containers/food/snacks/meat/bat, +/obj/item/reagent_containers/food/snacks/meat/bat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"Ne" = ( +/obj/structure/closet/cabinet, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/item/spacecash/c100, +/obj/item/spacecash/c10, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/item/spacecash/c1, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/item/clothing/head/unathi, +/obj/item/clothing/suit/unathi/robe, +/obj/item/clothing/under/unathi, +/obj/item/clothing/shoes/caligae/armor, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"Nf" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"Ng" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"Ni" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/light/colored/red{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/device/binoculars, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"Nk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"Ns" = ( +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/obj/item/material/twohanded/pike/flag/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/armory) +"Nu" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Nv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/medbay) +"Nx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"Nz" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"NG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + pixel_y = 32; + req_one_access = list(113); + id = "hegemony1" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"NI" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "headmaster_bridge"; + icon_state = "pdoor0" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/captains_quarters) +"NP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"NR" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"NU" = ( +/obj/effect/shuttle_landmark/hegemony_corvette/nav2, +/turf/template_noop, +/area/space) +"Ob" = ( +/obj/effect/shuttle_landmark/hegemony_corvette/intrepid, +/turf/template_noop, +/area/space) +"Oe" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"Oi" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + pixel_y = -32; + req_one_access = list(113); + id = "hegemony2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ol" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"On" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, rotary cannon" + }, +/obj/machinery/ship_weapon/francisca{ + pixel_x = -96; + pixel_y = -162; + weapon_id = "Hegemony Corvette Rotary Cannon" + }, +/obj/machinery/ammunition_loader/francisca{ + weapon_id = "Hegemony Corvette Rotary Cannon" + }, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_flak) +"Oo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"Op" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/canteen) +"Oq" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/hegemony_corvette, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"Ot" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/engineering) +"OA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"OF" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/hegemony_ship/docking_port) +"OG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"OL" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"OP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + frequency = 1385; + icon_state = "door_locked"; + id_tag = "hegemony_dock_doors" + }, +/turf/simulated/floor, +/area/hegemony_ship/docking_port) +"OW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/magshield/nav_light, +/turf/template_noop, +/area/space) +"OY" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable{ + icon_state = "1-2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"Pb" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Pc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Pp" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Pr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Pv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Px" = ( +/turf/simulated/floor/foamedmetal, +/area/hegemony_ship/crew_quarters) +"Pz" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"PG" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gunnery Foyer"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8; + icon_state = "map-scrubbers" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"PK" = ( +/obj/effect/shuttle_landmark/hegemony_corvette/nav1, +/turf/template_noop, +/area/space) +"PO" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"PP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"PQ" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"PV" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Qb" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"Qh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"Qi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"Ql" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"Qp" = ( +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"Qr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"Qt" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Qu" = ( +/obj/machinery/airlock_sensor{ + frequency = 1385; + id_tag = "hegemony_shuttle_chamber_sensor"; + pixel_y = -23; + dir = 1 + }, +/obj/structure/fuel_port/hydrogen{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + id_tag = "hegemony_shuttle_pump_out_internal"; + frequency = 1385; + layer = 2.8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Qv" = ( +/obj/machinery/atmospherics/portables_connector{ + layer = 2.8; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor, +/area/shuttle/hegemony) +"QA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor, +/area/shuttle/hegemony) +"QD" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"QF" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/suit/space/void/hegemony/captain, +/obj/item/clothing/head/helmet/space/void/hegemony/captain, +/obj/item/clothing/shoes/magboots/hegemony, +/turf/simulated/floor, +/area/hegemony_ship/eva_storage) +"QM" = ( +/obj/machinery/ammunition_loader/bruiser{ + dir = 1; + weapon_id = "Hegemony Corvette Bruiser"s + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"QN" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, engineering" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/engineering) +"QR" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + frequency = 1984; + id_tag = "co2_out"; + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/hegemony_ship/engineering) +"QU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/engineering{ + req_access = list(209) + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Rc" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Rf" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, hallway" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship) +"Rh" = ( +/obj/item/modular_computer/console/preset/civilian, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"Rk" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"Rp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/hegemony_ship/bridge) +"Rw" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"RG" = ( +/obj/structure/window/reinforced, +/turf/template_noop, +/area/space) +"RI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"RK" = ( +/obj/structure/ship_weapon_dummy, +/obj/machinery/ship_weapon/bruiser{ + weapon_id = "Hegemony Corvette Bruiser"; + pixel_x = -32; + pixel_y = -128 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hegemony_ship/gun_deck_bruiser) +"RL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"RQ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"RS" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/brig) +"RZ" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"Sb" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Sd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + id_tag = "hegemony_shuttle"; + master_tag = "hegemony_shuttle"; + pixel_y = 25; + tag_interior_door = "hegemony_shuttle_in"; + tag_exterior_door = "hegemony_shuttle_out"; + tag_interior_sensor = "hegemony_shuttle_interior_sensor"; + tag_exterior_sensor = "hegemony_shuttle_exterior_sensor"; + tag_chamber_sensor = "hegemony_shuttle_chamber_sensor"; + tag_airpump = "hegemony_shuttle_pump_in"; + frequency = 1385 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + id_tag = "hegemony_shuttle_pump_out_internal"; + frequency = 1385; + layer = 2.8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Se" = ( +/obj/machinery/door/airlock/service{ + name = "Custodial Closet" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Sf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4; + icon_state = "map_scrubber_on" + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Sh" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"Sl" = ( +/obj/effect/shuttle_landmark/hegemony_corvette/nav3, +/turf/template_noop, +/area/space) +"So" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"Ss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"Su" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Sx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Sz" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/light/colored/red{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/storage/bag/inflatable, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"SB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"SC" = ( +/obj/structure/punching_bag, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"SG" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/wine{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/bottle/sarezhiwine{ + pixel_y = 10; + pixel_x = -5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony{ + pixel_y = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"SL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"SN" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospheric Waste"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"SP" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/eva_storage) +"ST" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/conveyor{ + name = "running machine" + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"SW" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/structure/curtain/open/bed, +/obj/effect/ghostspawpoint{ + name = "igs - hegemony_cap"; + identifier = "hegemony_cap" + }, +/turf/simulated/floor/carpet/lightblue, +/area/hegemony_ship/captains_quarters) +"SZ" = ( +/obj/effect/floor_decal/spline/plain/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship) +"Ta" = ( +/obj/machinery/light/colored/red{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Tb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"Td" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Tf" = ( +/obj/effect/map_effect/window_spawner/full/reinforced, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"Tj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"Tq" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/button/distress{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"Ts" = ( +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"Tz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"TA" = ( +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"TC" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"TD" = ( +/obj/machinery/power/smes/buildable/power_shuttle, +/obj/structure/cable, +/turf/simulated/floor, +/area/shuttle/hegemony) +"TI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"TL" = ( +/obj/machinery/atmospherics/binary/passive_gate/supply{ + dir = 4; + target_pressure = 250 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"TN" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"TW" = ( +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"Ue" = ( +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/hatch{ + name = "Telecommunications"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"Uh" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"Uk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Um" = ( +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_y = 10 + }, +/obj/item/storage/box/gloves{ + pixel_y = -4 + }, +/obj/effect/floor_decal/corner_wide/lime/full, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"Uo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -32; + req_one_access = null + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Up" = ( +/obj/item/hullbeacon/red, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space) +"Ut" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Uv" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/structure/window/borosilicate/reinforced, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Uz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"UE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"UF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/firealarm/north, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/hegemony_ship/tcomms) +"UH" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/flag/hegemony/large/north, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"UI" = ( +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"UJ" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"US" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "hegemony3"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"UT" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/desert, +/area/hegemony_ship) +"UV" = ( +/obj/structure/ship_weapon_dummy, +/turf/template_noop, +/area/space) +"UY" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Va" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 1; + is_critical = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Vc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Vd" = ( +/obj/structure/window/reinforced, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/sign/deathsposal{ + name = "\improper SPENT MUNITIONS EJECTION CHUTE sign"; + pixel_x = -32 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Ve" = ( +/obj/item/modular_computer/console/preset/civilian, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship/aux_cic) +"Vm" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Vn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"Vx" = ( +/obj/item/clothing/suit/pirate{ + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/space/pirate{ + pixel_y = -5 + }, +/obj/structure/table/glass, +/obj/item/device/binoculars/spyglass, +/obj/structure/window/reinforced{ + dir = 1; + icon_state = "rwindow" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/sign/flag/izharshan{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"VB" = ( +/obj/item/device/binoculars, +/obj/item/device/binoculars{ + pixel_y = 5 + }, +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"VD" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/structure/closet/walllocker/medical{ + pixel_x = 32; + name = "stabalization equipment" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/item/reagent_containers/hypospray/autoinjector/coagzolug, +/obj/item/reagent_containers/hypospray/autoinjector/coagzolug, +/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, +/obj/item/reagent_containers/hypospray/autoinjector/inaprovaline, +/obj/item/storage/pill_bottle/mortaphenyl, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) +"VG" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/canteen) +"VL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"VP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1; + icon_state = "warning" + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"VQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"VW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony_cic"; + name = "blast door" + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/aux_cic) +"Wc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"Wl" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_bruiser) +"Wt" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"Wu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"Ww" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"WG" = ( +/obj/structure/ship_weapon_dummy/barrel, +/turf/template_noop, +/area/space) +"WH" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/armory) +"WJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_waste) +"WM" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"WR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"WW" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/computer/ship/navigation, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"Xa" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/crew_quarters) +"Xf" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24; + req_access = list(209) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Xi" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"Xm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hegemony_ship/bridge) +"Xq" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/hegemony_ship/port_propulsion) +"Xr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/hegemony_ship/starboard_propulsion) +"Xs" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, armory" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/armory) +"Xu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"XF" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/effect/overmap/visitable/ship/landable/hegemony_shuttle, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"XG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"XJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/red, +/area/hegemony_ship/temple) +"XL" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/effect/landmark/entry_point/fore{ + name = "fore, bridge" + }, +/turf/simulated/floor, +/area/shuttle/hegemony) +"XM" = ( +/obj/structure/ship_weapon_dummy/barrel, +/turf/simulated/floor, +/area/space) +"XU" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary/cardinal, +/area/hegemony_ship/aux_cic) +"XX" = ( +/obj/machinery/appliance/cooker/stove, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"XY" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/closet/crate/bin{ + name = "trashbin" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/bridge) +"Ya" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10; + icon_state = "warning" + }, +/turf/simulated/floor/reinforced, +/area/hegemony_ship/engineering) +"Yb" = ( +/obj/structure/bed/stool/chair/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"Yc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/temple) +"Yk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Ym" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/atmos_waste) +"Yn" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, brig" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/brig) +"Yq" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "headmaster_bridge"; + icon_state = "pdoor0" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor, +/area/hegemony_ship/trophy_room) +"Yt" = ( +/obj/structure/table/wood, +/obj/item/toy/desk/newtoncradle, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm/north, +/turf/simulated/floor/wood, +/area/hegemony_ship/captains_quarters) +"Yu" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"Yw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor, +/area/hegemony_ship) +"Yy" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"YC" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/shaker/spacespice, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/lightblue, +/area/hegemony_ship/canteen) +"YD" = ( +/obj/effect/map_effect/window_spawner/full/reinforced, +/turf/simulated/floor, +/area/hegemony_ship/gun_deck_flak) +"YG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/item/clothing/shoes/magboots/vaurca, +/turf/simulated/floor, +/area/hegemony_ship/eva_storage) +"YK" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, temple" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship/temple) +"YM" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Air Supply"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/atmos_distro) +"YN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"YX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_y = -32 + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony1"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"YZ" = ( +/turf/simulated/floor, +/area/hegemony_ship) +"Zi" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/firealarm/south, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/gun_deck_flak) +"Zu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/hegemony_ship/warpriests_quarters) +"Zz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/docking_port) +"ZA" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, hallway" + }, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/hegemony_ship) +"ZB" = ( +/obj/effect/floor_decal/corner_wide/red/diagonal, +/obj/structure/bed/stool/chair/office/bridge, +/turf/simulated/floor/tiled, +/area/shuttle/hegemony) +"ZC" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/closet/walllocker{ + name = "wall cabinet"; + pixel_x = -32 + }, +/obj/item/storage/box/produce{ + pixel_y = -3 + }, +/obj/item/storage/box/produce{ + pixel_y = 6 + }, +/obj/item/storage/box/fancy/egg_box{ + pixel_y = 8 + }, +/obj/item/storage/box/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/shaker/spacespice, +/obj/item/reagent_containers/food/condiment/shaker/salt, +/obj/item/reagent_containers/food/condiment/shaker/peppermill, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/canteen) +"ZF" = ( +/turf/simulated/floor, +/area/hegemony_ship/engineering) +"ZH" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/restroom) +"ZI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"ZN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads \"WARNING: BLAST DOOR\"."; + name = "\improper WARNING: BLAST DOOR sign"; + pixel_y = -32 + }, +/obj/machinery/door/blast/regular/open{ + id = "hegemony2"; + name = "blast door" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled, +/area/hegemony_ship/brig) +"ZR" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm/east, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/hegemony_ship/bridge) +"ZU" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm/west, +/obj/structure/closet/crate/bin{ + name = "trashbin" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship/crew_quarters) +"ZW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hegemony_ship) +"ZX" = ( +/turf/simulated/floor/tiled/white, +/area/hegemony_ship/medbay) + +(1,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(2,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(3,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(4,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(5,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(6,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(7,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(8,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(9,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(10,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(11,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(12,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(13,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(14,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nT +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(15,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(16,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(17,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(18,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(19,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(20,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +hy +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(21,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(22,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(23,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(24,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(25,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(26,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(27,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(28,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(29,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yK +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +nC +"} +(30,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +yL +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +yK +"} +(31,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(32,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(33,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(34,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(35,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(36,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(37,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(38,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(39,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(40,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(41,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(42,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(43,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(44,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(45,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(46,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(47,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(48,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(49,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(50,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(51,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(52,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(53,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(54,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(55,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(56,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(57,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eC +eC +up +eC +eC +eC +wQ +wQ +wQ +wQ +Rf +wQ +wQ +wQ +wQ +Ev +Ev +Ev +Fv +Ev +Ev +Ev +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(58,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +hm +pF +Qp +Qp +mX +eC +Nu +Ay +ll +rE +Sf +rE +ll +Ay +KB +Ev +cD +hH +jN +AX +AW +Ev +Ev +Ev +GD +Ev +Ev +pP +xh +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(59,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +bd +fn +Qp +oe +fh +zs +Av +Hl +OA +mv +Yw +Bo +kh +os +Dr +PG +fk +nL +pf +bf +UE +zq +rs +we +Je +Jq +tw +Vd +xh +xh +pC +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(60,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +hm +uS +Qp +ii +ml +eC +Ex +Ej +mr +rU +Gt +Yu +mr +Ej +FS +Ev +Wl +Ab +hL +aK +hV +Ev +iG +Jp +mB +fQ +CN +xt +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(61,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eC +Cx +Qp +ii +In +eC +Ue +ip +ip +Ey +NP +bB +Ym +Ym +SN +Ev +Ev +iR +VL +hX +Ev +Ev +RI +BO +LZ +QM +AH +RK +UV +UV +WG +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(62,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eC +CP +Qp +Qp +dL +eC +Tb +iB +ip +Yk +Gt +Hz +Ym +Nf +aN +Ev +Ev +Ev +KZ +Ev +Ev +Ev +xo +er +hg +ye +Jz +HI +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(63,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +hm +Ng +ii +Qp +fn +eC +UF +di +ip +xI +Gt +SB +Ym +fu +yv +Ev +Ev +Gk +KU +ox +Ev +Ev +yO +BO +Mr +qX +bZ +fS +xh +xh +Up +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(64,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Cw +Cx +ii +ap +qr +eC +TW +zw +ip +Go +va +SB +Ym +tR +yc +Ev +Ev +sX +BG +At +Ev +Ev +sT +vW +kB +GL +sg +Ev +xh +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(65,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +hm +Kt +zR +Xr +rq +eC +rZ +Rh +ip +xI +GA +SB +Ym +yr +WJ +Ev +Ev +vu +rb +He +Ev +Ev +Ev +Ev +Ev +Ev +Ev +Ev +xh +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(66,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eC +eC +eC +eC +eC +eC +ip +ip +ip +Yk +GA +Hz +wQ +wQ +wQ +wQ +Cr +wQ +wQ +Ev +Ev +Ev +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +iu +iu +iu +iu +XM +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(67,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +Is +wQ +wQ +HF +HF +wQ +xI +Mi +sB +wQ +HF +wQ +HF +HF +wQ +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +xh +xh +xh +xh +xh +iu +iu +sv +xh +OW +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(68,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +Is +ZA +wQ +HF +HF +HF +wQ +NG +GU +Uz +wQ +HF +wQ +HF +HF +HF +wQ +wQ +xh +xh +xh +xh +xh +OW +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +RS +RS +Yn +RS +mh +mh +On +YD +YD +mh +mh +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(69,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +Gp +Gp +Gp +Gp +Gp +Gp +Gp +JW +aj +YX +wQ +HF +wQ +HF +HF +HF +HF +wQ +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +RS +RS +vh +nb +RS +mh +oA +zl +kx +bA +mh +mh +mh +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(70,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Gp +Gp +Gp +wR +Yc +Yc +Yc +cT +Eq +ht +dr +lX +wQ +HF +lU +lU +lU +lU +lU +lU +lU +Xa +Xa +Xa +Xa +Xa +Xa +Xa +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Cb +NI +eI +NI +RS +RS +RS +RS +RS +mh +zL +cK +tX +Ir +mh +fE +mh +mh +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(71,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +Gp +xX +Gp +FW +DD +nz +nz +al +Eq +Go +va +SB +wQ +HF +lU +DU +Kf +zF +gd +cd +oi +Xa +Px +Px +Px +Px +Px +Px +wQ +wQ +Lp +oG +wQ +wQ +oG +Lp +wQ +Cb +HN +Jl +uv +RS +uE +EB +Ts +fj +mh +oj +aX +Mm +Zi +mh +fE +mh +mh +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(72,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Gp +xX +Gp +zC +sp +MO +tU +nK +Fq +Vc +Ww +SB +wQ +HF +lU +ff +Dx +vM +vp +KW +da +Xa +Xa +Xa +Xa +Xa +Xa +Xa +wQ +pa +Ml +Ml +wZ +ly +gQ +iW +qU +Cb +mJ +Jl +SW +RS +Bz +EB +EB +bs +mh +AK +Ss +og +dp +mh +fE +mh +mh +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(73,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +YK +xX +Gp +FW +IO +nz +XJ +kR +Eq +xI +GA +SB +wQ +HF +lU +Ve +sW +hS +yh +mM +tx +Xa +xF +tG +zz +MM +ZU +Dm +wQ +ST +Ml +SC +wZ +BN +UI +yH +kH +Cb +SG +BB +mK +RS +wB +wB +wB +MB +Ep +Ep +Jo +Ep +Ep +Ep +Ep +Ep +Ep +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(74,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Gp +xX +Gp +Mg +Tz +wY +pr +sS +Eq +xI +Mi +xw +wQ +HF +lU +lU +lU +eq +VW +lU +lU +Xa +Uh +Hf +Hf +Hf +UJ +bJ +wQ +dz +Ml +Ml +Ml +Nk +UI +yH +UT +Cb +oS +Yb +rx +RS +ud +sq +ZI +Hn +Ep +sJ +de +wk +wk +wk +IJ +Tf +Ff +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(75,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +oE +qI +oE +zp +oE +oE +wQ +wQ +sO +xI +Gt +SB +wQ +HF +lU +oo +lU +CQ +Aj +lU +ah +Xa +ij +rK +zH +Ne +mQ +Ba +wQ +aZ +Ml +SC +wZ +SZ +yH +UI +UT +Cb +Yt +mc +xL +RS +KL +Dk +fw +CK +Ep +pb +us +vk +Xm +fA +dO +Tf +HJ +HJ +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(76,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +oE +qI +oE +Zu +YN +jz +wQ +HF +Ha +Ey +NP +bB +wQ +wQ +lU +lU +lU +eq +VW +lU +XU +Xa +Xa +Xa +Xa +Xa +nl +Xa +wQ +dz +Ml +Ml +wZ +fI +fC +mY +QD +Cb +Cb +MZ +Cb +RS +RS +RS +ZO +RS +Ep +Yy +pJ +Wu +mm +WW +dO +Tf +HJ +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +PK +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(77,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +NU +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +oE +qI +oE +vf +hI +zm +wQ +HF +wQ +gg +Gt +XG +zI +fo +pi +ee +FQ +LC +sy +BF +Vm +tP +Ie +rE +Ay +bh +Pc +rE +Pp +ta +xV +xV +ta +Fs +ta +ta +ta +ll +rE +Pc +zu +yd +Fp +rE +Pc +Sb +Ep +Tq +Mv +oQ +iw +VB +dO +Tf +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(78,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +bU +qI +oE +oE +oE +oE +wQ +wQ +wQ +Va +Hb +SL +kh +sF +US +ZW +Sx +xq +GN +qu +sF +AG +lO +Lf +Bo +Nx +eZ +os +kh +os +Sx +SL +SL +wa +os +os +os +sQ +SL +Oo +Lu +Ck +ss +IK +Jt +aS +gA +Xu +EM +Oq +mm +JG +dO +lm +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(79,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +BX +Op +BX +Nc +ZC +Ae +GF +zt +BX +vr +Gt +TA +Qt +cr +fB +TC +tj +JD +ro +IH +MJ +td +Pb +rg +GB +IH +iU +IH +LB +IH +qc +IH +Ej +iU +IH +IH +Ej +fM +IH +IH +Mt +jb +aw +if +yM +Rc +Ep +RQ +Rp +Hg +iw +kF +dO +Tf +HJ +HJ +HJ +BI +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(80,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +BX +Op +BX +Lq +pU +lQ +Qr +VG +oI +Ey +NP +bB +nG +nG +nG +nG +nG +wU +Mo +nG +nG +uq +ha +jD +xS +yW +So +yW +yW +yW +yW +bk +bk +qs +bk +bk +bk +lP +lP +lP +lP +lP +BZ +vz +hj +BZ +Ep +UH +XY +Wu +mm +NR +dO +Tf +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(81,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +BX +Op +BX +XX +fg +hc +eb +Bq +oI +xI +Gt +SB +nG +qY +nG +wI +qm +jn +LE +ra +Um +uq +le +ul +kG +yW +ga +pA +ZH +eu +yW +Rw +eQ +oz +mG +IG +bk +Ns +jT +Cy +JN +lP +ve +Aq +DK +Hc +Ep +od +rO +Ol +kd +Ga +dO +Tf +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(82,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +BX +Op +BX +Rk +jO +Nb +Ai +ao +hC +bc +va +Hz +nG +qY +nG +Nv +FB +yy +Qi +Jn +ym +uq +KM +FK +Ho +yW +kM +Fg +yW +yW +yW +Ip +ya +Zz +cw +kr +bk +Af +wM +tL +bv +lP +uc +Aq +DK +Ec +Ep +ZR +Kg +IC +sn +lT +IJ +Tf +Ei +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(83,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Ju +Op +BX +Li +Tj +yl +Jj +wO +wO +Vc +Ww +SB +nG +qY +nG +Nz +ra +jk +tA +ZX +BD +uq +FM +tk +Vx +yW +Gd +Ln +uO +fi +yW +Rw +Rw +om +Rw +Rw +bk +iO +WH +wo +IE +lP +uK +CX +vm +Hq +Ep +Ep +tn +sK +Ep +Ep +Ep +Ep +uz +HJ +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(84,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +BX +Op +BX +zo +KG +cL +nX +ao +oI +xI +GA +SB +nG +qY +nG +GH +rt +ZX +tA +ZX +pO +uq +vA +tk +dK +yW +mZ +Ln +uO +fr +yW +oP +bk +KN +Rw +bk +bk +cF +nd +dT +po +vQ +lo +Oe +RZ +qL +Ep +pX +tn +tn +vj +Ep +FU +uz +uz +HJ +HJ +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(85,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +BX +Op +BX +GS +nX +YC +nX +ao +oI +xI +Mi +sB +nG +qY +nG +qp +pp +kw +Qb +VD +Pz +uq +cY +uN +Es +yW +Ql +LU +yW +oq +yW +bk +bk +hK +Rw +bk +bk +lP +cc +mS +wn +lP +vB +Aq +xk +pH +Ep +qA +OG +OG +mA +Ep +FU +uz +uz +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(86,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +BX +BX +BX +PQ +nX +aa +nX +nm +BX +AT +GU +Oi +nG +qY +nG +nG +nG +nG +nG +nG +nG +uq +Yq +Yq +Yq +yW +yW +yW +yW +aJ +aJ +aJ +bk +OP +Bh +bk +aJ +lP +lP +Xs +lP +lP +QF +Aq +hn +eO +Ep +HM +HM +HM +yN +Ep +FU +uz +uz +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(87,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +wQ +wQ +wQ +wQ +wQ +wQ +wQ +uW +ag +ZN +wQ +wQ +wQ +wQ +HF +HF +HF +wQ +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +RG +xu +OF +JX +aJ +aJ +aJ +aJ +aJ +lP +BZ +SP +hn +YG +Ep +HH +Ku +Ku +Ku +Ep +uz +uz +HJ +HJ +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(88,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +ZA +wQ +HF +HF +HF +wQ +JU +dr +ow +wQ +Pr +Aa +wQ +HF +HF +wQ +wQ +xh +xh +xh +aJ +aJ +aJ +rL +rL +rL +rL +aJ +Cp +rL +gk +sI +Jb +lH +aJ +aJ +aJ +aJ +aJ +uz +BZ +am +BZ +Ep +Ep +hA +Ep +Ep +Ep +uz +HJ +HJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(89,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Is +Is +Is +Is +wQ +wQ +HF +HF +wQ +Go +va +yq +Se +aR +gS +wQ +HF +wQ +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Az +RL +PV +rL +rL +rL +rL +Sd +Qu +rL +rL +rL +rL +aJ +aJ +aJ +aJ +xh +xh +xh +xh +xh +xh +xh +xh +xh +dX +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(90,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +oB +oB +oB +oB +oB +oB +BS +BS +BS +Yk +GA +Hz +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +Ot +aJ +aJ +aJ +CS +PP +ie +QA +TN +TD +UY +ls +GJ +UY +Lx +co +rL +rL +rL +fV +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(91,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Uv +WR +Gh +yQ +Xq +oB +pW +pW +BS +xI +GA +SB +Ot +Bg +Bg +Ot +nS +Bk +Dz +BH +wC +Di +Ot +aJ +aJ +aJ +Az +yo +lI +zS +DX +Ap +EN +xJ +FO +rL +MF +pq +gC +Sz +rL +rL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(92,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +IL +ue +yf +DZ +Gn +oB +DJ +Vn +BS +xI +Mi +sB +Ot +QR +xT +Ot +zJ +sG +ZF +As +Dn +ZF +Ot +aJ +aJ +aJ +rL +PP +gf +lI +DX +qO +rL +MF +Sh +xB +PO +Wt +MF +MF +mw +UY +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(93,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Uv +hJ +yf +jt +sh +oB +MW +gm +BS +xI +Gt +SB +Ot +aB +eh +Ot +cp +sG +sG +Dn +xy +ef +Ot +aJ +aJ +aJ +Az +dN +hs +Wc +IZ +DA +lz +mz +IF +Ii +lN +MF +XF +ZB +EY +XL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(94,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +oB +ue +yf +bo +Uk +oB +TL +HB +BS +Yk +Gt +Hz +Ot +zN +zN +Ot +hB +wi +Pv +DO +xy +Ew +Ls +aJ +aJ +aJ +rL +PP +zO +WM +GM +qO +rL +OY +MF +ne +kt +MF +MF +MF +rJ +UY +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(95,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +oB +ue +bo +yf +Uo +oB +YM +BS +BS +Ey +NP +bB +Ot +Xi +tM +dx +sG +uJ +KR +HT +uu +HT +Ot +aJ +aJ +aJ +Az +yo +MS +EA +gb +bw +rL +rp +MF +MF +MF +MF +sl +Ni +rL +rL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(96,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Uv +Jv +bo +bo +KD +oB +uA +qb +rE +Su +Gt +SB +Ot +kQ +zQ +yV +sG +QU +HT +zr +LR +Ya +Ot +aJ +aJ +aJ +CS +PP +MS +Qv +Qv +Qv +rL +JO +OL +OL +gK +IU +rL +rL +rL +IQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(97,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +pK +ue +Td +DQ +Kd +or +VQ +CM +Hl +kU +gE +PI +ax +Kz +TI +tB +fe +sC +HT +VP +JA +kj +Ot +aJ +aJ +aJ +Az +LX +MS +rL +rL +rL +rL +rL +rL +Gm +rL +rL +rL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(98,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Uv +MQ +yf +yf +bi +oB +aF +wQ +YZ +YZ +pL +Ut +Ot +lY +eE +Ta +Xf +pI +HT +Qh +lW +wF +Ot +aJ +aJ +aJ +rL +rL +rL +rL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(99,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +oB +oB +LV +oB +oB +oB +wQ +wQ +YZ +YZ +wQ +wQ +Ot +Ot +QN +Ot +Ot +Ot +Ot +QN +Ot +Ot +Ot +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(100,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wQ +YZ +YZ +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(101,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wQ +ic +YZ +wQ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(102,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(103,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(104,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(105,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(106,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(107,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(108,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(109,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(110,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Ob +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(111,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(112,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(113,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(114,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(115,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(116,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(117,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(118,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(119,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(120,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(121,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(122,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(123,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(124,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(125,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(126,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(127,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(128,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(129,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(130,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(131,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +Sl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(132,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(133,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(134,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(135,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(136,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(137,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(138,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(139,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(140,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(141,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(142,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(143,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(144,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(145,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(146,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(147,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(148,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(149,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(150,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(151,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(152,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(153,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(154,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(155,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(156,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(157,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(158,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(159,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(160,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} diff --git a/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette_areas.dm b/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette_areas.dm new file mode 100644 index 00000000000..78000e5c59d --- /dev/null +++ b/maps/away/ships/hegemony/hegemony_corvette/hegemony_corvette_areas.dm @@ -0,0 +1,120 @@ +/area/hegemony_ship + name = "Hegemony Corvette" + icon_state = "yellow" + requires_power = 1 + dynamic_lighting = 1 + no_light_control = 1 + base_turf = /turf/space + flags = RAD_SHIELDED + +/area/hegemony_ship/bridge + name = "Hegemony Corvette - Bridge" + icon_state = "bridge" + ambience = AMBIENCE_HIGHSEC + +/area/hegemony_ship/engineering + name = "Hegemony Corvette - Engineering" + icon_state = "engineering_workshop" + ambience = AMBIENCE_ENGINEERING + +/area/hegemony_ship/port_propulsion + name = "Hegemony Corvette - Port Propulsion" + icon_state = "yellow" + +/area/hegemony_ship/starboard_propulsion + name = "Hegemony Corvette - Starboard Propulsion" + icon_state = "yellow" + +/area/hegemony_ship/temple + name = "Hegemony Corvette - Temple" + icon_state = "chapel" + sound_env = MEDIUM_SOFTFLOOR + ambience = AMBIENCE_CHAPEL + +/area/hegemony_ship/warpriests_quarters + name = "Hegemony Corvette - Warpriest's Quarters" + icon_state = "chapeloffice" + +/area/hegemony_ship/gunnery_foyer + name = "Hegemony Corvette - Gunnery Foyer" + icon_state = "blue" + ambience = AMBIENCE_HIGHSEC + +/area/hegemony_ship/ammo_storage + name = "Hegemony Corvette - Ammo Storage" + icon_state = "red" + sound_env = SMALL_ENCLOSED + +/area/hegemony_ship/gun_deck_bruiser + name = "Hegemony Corvette - Gunnery Deck" + icon_state = "Tactical" + +/area/hegemony_ship/atmos_waste + name = "Hegemony Corvette - Atmospheric Waste" + icon_state = "atmos" + +/area/hegemony_ship/atmos_distro + name = "Hegemony Corvette - Atmospheric Distribution" + icon_state = "atmos" + +/area/hegemony_ship/tcomms + name = "Hegemony Corvette - Telecommunications" + icon_state = "server" + sound_env = SMALL_ENCLOSED + +/area/hegemony_ship/canteen + name = "Hegemony Corvette - Canteen" + icon_state = "kitchen" + +/area/hegemony_ship/aux_cic + name = "Hegemony Corvette - Auxiliary Combat Information Center" + icon_state = "bridge" + +/area/hegemony_ship/medbay + name = "Hegemony Corvette - Healer's Bay" + icon_state = "medbay" + +/area/hegemony_ship/crew_quarters + name = "Hegemony Corvette - Crew Quarters" + icon_state = "crew_quarters" + sound_env = SMALL_SOFTFLOOR + +/area/hegemony_ship/trophy_room + name = "Hegemony Corvette - Trophy Room" + icon_state = "blue" + +/area/hegemony_ship/restroom + name = "Hegemony Corvette - Restroom" + icon_state = "toilet" + +/area/hegemony_ship/docking_port + name = "Hegemony Corvette - Docking Port" + icon_state = "Hangar" + +/area/hegemony_ship/captains_quarters + name = "Hegemony Corvette - Captain's Quarters" + icon_state = "captain" + sound_env = SMALL_SOFTFLOOR + +/area/hegemony_ship/brig + name = "Hegemony Corvette - Brig" + icon_state = "security" + +/area/hegemony_ship/eva_storage + name = "Hegemony Corvette - EVA Preparation" + icon_state = "warden" + +/area/hegemony_ship/armory + name = "Hegemony Corvette - Armory" + icon_state = "armory" + sound_env = SMALL_ENCLOSED + ambience = AMBIENCE_HIGHSEC + +/area/hegemony_ship/gun_deck_flak + name = "Hegemony Corvette - Rotary Cannon" + icon_state = "Tactical" + +//Shuttle + +/area/shuttle/hegemony + name = "Hegemony Shuttle" \ No newline at end of file diff --git a/maps/away/ships/hegemony/hegemony_corvette/hegemony_ghostroles.dm b/maps/away/ships/hegemony/hegemony_corvette/hegemony_ghostroles.dm new file mode 100644 index 00000000000..7b564bfcb73 --- /dev/null +++ b/maps/away/ships/hegemony/hegemony_corvette/hegemony_ghostroles.dm @@ -0,0 +1,144 @@ + +/datum/ghostspawner/human/izweski + short_name = "heg_crew" + name = "Hegemony Navy Crewman" + desc = "You are a sworn warrior of the Izweski Hegemony Navy, your life and honor pledged to Hegemon Not'zar. Abide by the Warrior's Code, and follow the orders of your superior officers. Remember, you serve the Izweski Hegemony." + tags = list("External") + spawnpoints = list("hegemony_crew") + req_perms = null + max_count = 2 + uses_species_whitelist = FALSE + mob_name_prefix = "Cn. " + mob_name_pick_message = "Pick an Unathi last name." + welcome_message = "As an Unathi warrior, abide by the Warrior's Code - act with righteousness, mercy, integrity, courage and loyalty. Defend the life and honor of Hegemony citizens, and ensure that enemies of the Izweski cannot threaten your vessel." + + outfit = /datum/outfit/admin/izweski + possible_species = list(SPECIES_UNATHI) + allow_appearance_change = APPEARANCE_PLASTICSURGERY + assigned_role = "Izweski Navy Crewman" + special_role = "Izweski Navy Crewman" + respawn_flag = null + extra_languages = list(LANGUAGE_UNATHI, LANGUAGE_AZAZIBA) + away_site = TRUE + +/datum/ghostspawner/human/izweski/klax + short_name = "heg_crew_klax" + name = "Hegemony K'laxan Auxiliary" + desc = "You are a Warrior of the Hive K'lax, assigned to serve with the Izweski Hegemony Navy. Follow the orders of your superiors, and act to ensure the Hegemony's victory over its enemies." + max_count = 1 + uses_species_whitelist = TRUE + outfit = /datum/outfit/admin/izweski/klax + spawnpoints = list("hegemony_klax") + possible_species = list(SPECIES_VAURCA_WARRIOR) + extra_languages = list(LANGUAGE_VAURCA) + mob_name_pick_message = "Pick a Vaurca name." + welcome_message = "As a K'laxan auxiliary, you are fundamentally an outsider to the ship and the crew you have been assigned to. Attempt to act according to Unathi codes of honor, even if you do not fully understand them yourself." + +/datum/ghostspawner/human/izweski/captain + short_name = "heg_cap" + name = "Hegemony Navy Captain" + desc = "You are an officer in the Izweski Hegemony Navy, your life and honor pledged to Hegemon Not'zar. Abide by the Warrior's Code, and lead your crew with honor. Remember, you serve the Izweski Hegemony." + max_count = 1 + uses_species_whitelist = TRUE + outfit = /datum/outfit/admin/izweski/captain + assigned_role = "Izweski Navy Captain" + special_role = "Izweski Navy Captain" + mob_name_prefix = "Cpt. " + welcome_message = "As an Unathi warrior, abide by the Warrior's Code - act with righteousness, mercy, integrity, courage and loyalty. Your duty is to protect the Hegemony, your ship, and the warriors under your command - and to lead them to triumph over whatever foes you may face." + + spawnpoints = list("hegemony_cap") + +/datum/ghostspawner/human/izweski/specialist + short_name = "heg_spec" + name = "Hegemony Navy Specialist" + desc = "You are a specialist in the Izweski Hegemony Navy, your life and honor pledged to Hegemon Not'zar. Act as the right hand of your captain, and always abide by the Warrior's Code. Remember, you serve the Izweski Hegemony." + max_count = 1 + assigned_role = "Izweski Navy Specialist" + special_role = "Izweski Navy Specialist" + mob_name_prefix = "Ens. " + +/datum/ghostspawner/human/izweski/warpriest + short_name = "heg_pri" + name = "Hegemony Navy Warpriest" + desc = "You are a Sk'akh Priest of the Warrior, serving as an officer with the Izweski Hegemony Navy. Ensure that the warriors on your vessel abide by the Warrior's Code, and call upon Sk'akh's name to bless your crew against harm. Remember, you serve the Izweski Hegemony." + max_count = 1 + uses_species_whitelist = TRUE + assigned_role = "Izweski Navy Warpriest" + special_role = "Izweski Navy Warpriest" + outfit = /datum/outfit/admin/izweski/priest + mob_name_prefix = "Lt. " + spawnpoints = list("hegemony_warpriest") + welcome_message = "As a Priest of the Aspect, you are sworn more than any others to embody the honor of the Warrior, and to live by the Warrior's Code - to act with righteousness, mercy, integrity, courage and loyalty. Ensure that your crew does the same, \ + and guide their souls towards te glory befitting true warriors. However, you are still a soldier, and should follow your captain's orders." + +/datum/outfit/admin/izweski + name = "Izweski Crewman" + + uniform = /obj/item/clothing/under/unathi + belt = /obj/item/melee/energy/sword/hegemony + shoes = /obj/item/clothing/shoes/caligae + id = /obj/item/card/id/distress/kataphract + back = /obj/item/storage/backpack/satchel/hegemony + + + l_ear = /obj/item/device/radio/headset/ship + + backpack_contents = list( + /obj/item/storage/box/donkpockets = 1 + ) + +/datum/outfit/admin/izweski/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) + if(H?.w_uniform) + H.w_uniform.color = pick("#1f8c3c", "#ab7318", "#1846ba") + +/datum/outfit/admin/izweski/get_id_access() + return list(access_kataphract, access_external_airlocks) + +/datum/outfit/admin/izweski/klax + + uniform = /obj/item/clothing/under/vaurca + mask = /obj/item/clothing/mask/breath/vaurca/filter + belt = /obj/item/melee/energy/sword/hegemony + shoes = /obj/item/clothing/shoes/vaurca + id = /obj/item/card/id/distress/kataphract + back = /obj/item/storage/backpack/satchel/hegemony + + l_hand = /obj/item/martial_manual/vaurca + + + backpack_contents = list( + /obj/item/reagent_containers/food/snacks/koisbar_clean = 3 + ) + +/datum/outfit/admin/izweski/klax/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) + if(H?.wear_mask && H.species.has_organ[BP_PHORON_RESERVE]) + var/obj/item/organ/internal/vaurca/preserve/preserve = H.internal_organs_by_name[BP_PHORON_RESERVE] + H.internal = preserve + H.internals.icon_state = "internal1" + + var/uniform_colour = pick("#1f8c3c", "#ab7318", "#1846ba") + if(H?.w_uniform) + H.w_uniform.color = uniform_colour + if(H?.shoes) + H.shoes.color = uniform_colour + + var/obj/item/organ/A = new /obj/item/organ/internal/augment/language/klax(H) + var/obj/item/organ/external/affected = H.get_organ(A.parent_organ) + A.replaced(H, affected) + H.update_body() + +/datum/outfit/admin/izweski/captain + name = "Hegemony Navy Captain" + uniform = /obj/item/clothing/under/unathi/mogazali/orange + suit = /obj/item/clothing/suit/unathi/robe/robe_coat/orange + +/datum/outfit/admin/izweski/captain/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) + +/datum/outfit/admin/izweski/captain/get_id_access() + return list(access_kataphract, access_kataphract_knight, access_external_airlocks) + +/datum/outfit/admin/izweski/priest + name = "Hegemony Warpriest" + uniform = /obj/item/clothing/under/unathi/mogazali + +/datum/outfit/admin/izweski/priest/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)