diff --git a/aurorastation.dme b/aurorastation.dme index 003ea7d07ce..9e806981837 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1850,7 +1850,6 @@ #include "code\modules\ghostroles\spawner\atom\technomancer_apprentice.dm" #include "code\modules\ghostroles\spawner\human\emergencypod.dm" #include "code\modules\ghostroles\spawner\human\human.dm" -#include "code\modules\ghostroles\spawner\human\kataphract.dm" #include "code\modules\ghostroles\spawner\human\merchant.dm" #include "code\modules\ghostroles\spawner\human\pra.dm" #include "code\modules\ghostroles\spawner\human\visitor.dm" @@ -3174,6 +3173,9 @@ #include "maps\away\ships\wildcard_ship_ghostroles.dm" #include "maps\away\ships\casino\casino.dm" #include "maps\away\ships\casino\casino_areas.dm" +#include "maps\away\ships\kataphracts\kataphract_areas.dm" +#include "maps\away\ships\kataphracts\kataphract_ship.dm" +#include "maps\away\ships\kataphracts\kataphract_ship_ghostroles.dm" #include "maps\away\ships\yacht\yacht.dm" #include "maps\away\ships\yacht\yacht_areas.dm" #include "maps\away_sites_testing\away_sites_testing.dm" diff --git a/code/game/objects/structures/crates_lockers/closets/secure/service.dm b/code/game/objects/structures/crates_lockers/closets/secure/service.dm index f6653b68c6e..fe2c95507d5 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/service.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/service.dm @@ -34,3 +34,30 @@ new /obj/item/clothing/suit/caution(src) new /obj/item/storage/box/lights/mixed(src) new /obj/item/storage/box/mousetraps(src) + +obj/structure/closet/secure_closet/custodial/offship + req_access = null + +/obj/structure/closet/secure_closet/custodial/offship/fill() + new /obj/item/storage/box/janitorgloves(src) + new /obj/item/storage/belt/custodial(src) + new /obj/item/clothing/accessory/holster/utility/custodial/armpit/brown(src) + new /obj/item/clothing/shoes/galoshes(src) + new /obj/item/gun/energy/mousegun(src) + new /obj/item/device/flashlight(src) + new /obj/item/reagent_containers/spray/cleaner(src) + new /obj/item/soap/nanotrasen(src) + new /obj/item/reagent_containers/glass/rag(src) + new /obj/item/reagent_containers/glass/rag/advanced(src) + new /obj/item/device/lightreplacer(src) + new /obj/item/storage/bag/trash(src) + new /obj/item/grenade/chem_grenade/cleaner(src) + new /obj/item/grenade/chem_grenade/cleaner(src) + new /obj/item/grenade/chem_grenade/cleaner(src) + new /obj/item/taperoll/custodial(src) + new /obj/item/clothing/suit/caution(src) + new /obj/item/clothing/suit/caution(src) + new /obj/item/clothing/suit/caution(src) + new /obj/item/clothing/suit/caution(src) + new /obj/item/storage/box/lights/mixed(src) + new /obj/item/storage/box/mousetraps(src) diff --git a/code/modules/overmap/overmap_shuttle.dm b/code/modules/overmap/overmap_shuttle.dm index 874d15afb33..ac758ef859e 100644 --- a/code/modules/overmap/overmap_shuttle.dm +++ b/code/modules/overmap/overmap_shuttle.dm @@ -109,7 +109,7 @@ S.halt() S.unhalt() -/obj/structure/fuel_port +/obj/structure/fuel_port //empty name = "fuel port" desc = "The fuel input port of the shuttle. Holds one fuel tank. Use a crowbar to open and close it." icon = 'icons/turf/shuttle.dmi' @@ -122,10 +122,6 @@ var/opened = 0 var/parent_shuttle -/obj/structure/fuel_port/Initialize() - . = ..() - new /obj/item/tank/phoron/shuttle(src) // Enough for four launches (one round trip) - /obj/structure/fuel_port/attack_hand(mob/user) if(!opened) to_chat(user, SPAN_WARNING("\The [src] is secured tightly. You'll need to pry it open with a crowbar.")) @@ -166,7 +162,13 @@ /obj/structure/fuel_port/hide() return -/obj/structure/fuel_port/hydrogen // Not only does this work, It's more sensible for most factions without reasonable access to phoron, to use. +/obj/structure/fuel_port/phoron // The best and most expensive fuel. Likely to be in the hands of corporate forces, though the well-off along with military forces throughout the Spur also have a good chance of using it. + +/obj/structure/fuel_port/phoron/Initialize() + . = ..() + new /obj/item/tank/phoron/shuttle(src) + +/obj/structure/fuel_port/hydrogen // The most common and serviceable fuel for a shuttle. It's not as good as phoron, but it will still get you places. It's also not scarce! Used by practically everyone. /obj/structure/fuel_port/hydrogen/Initialize() . = ..() diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index e8c4b48fd97..2e013645ab8 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -84,6 +84,25 @@ output_level = 1300000 charge = 5.55e+007 +/obj/machinery/power/smes/buildable/third_party_shuttle/Initialize() + . = ..() + component_parts += new /obj/item/smes_coil/super_capacity(src) + input_attempt = TRUE + output_attempt = TRUE + input_level = 1000000 + output_level = 1000000 + charge = 6.56158e+007 + +/obj/machinery/power/smes/buildable/autosolars/Initialize() //for third parties that have their solars autostart, It's slightly upgraded for them + . = ..() + component_parts += new /obj/item/smes_coil/super_capacity(src) + component_parts += new /obj/item/smes_coil/super_io(src) + input_attempt = TRUE + output_attempt = TRUE + input_level = 1000000 + output_level = 1000000 + charge = 3.02024e+006 + // END SMES SUBTYPES // SMES itself diff --git a/html/changelogs/wickedcybs_kataphract.yml b/html/changelogs/wickedcybs_kataphract.yml new file mode 100644 index 00000000000..802fb2b6df7 --- /dev/null +++ b/html/changelogs/wickedcybs_kataphract.yml @@ -0,0 +1,10 @@ +author: WickedCybs, Leudoberct + +delete-after: True + +changes: + - rscadd: "Added a new third party, the Kataphract Chapter Ship. Representing the Hegemony's finest abroad, probably. They're out for adventure and to prove themselves. Trade for supplies for the long road ahead, quest, act with honour." + - rscadd: "The emergency services dock isn't just limited to the ERT TCFL shuttle anymore. The OX ship, TCFL third party shuttle and Kataphract shuttle should be able to dock to it too now. It's also been futureproofed and can be used by most ships with a south facing airlock." + - rscadd: "Added two SMES subtypes for mappers. One is turned on and has a capacitance coil for autostarted solars, the other is a little less beefy SMES for shuttles. Should be nice for mappers." + - tweak: "Had to make fuel ports by default spawn with nothing inside. A subtype with phoron already inside the hatch was made and should be replacing all the fuel ports as of now. This had to be done, as the way it was initalized, hydrogen ports would have 2 fuel tanks inside, one phoron one hydrogen." + - tweak: "Moved the hangar landmarks for the OX and TCFL ship as well as the docking landmark on the Horizon for south facing ports. It's placed below the airlocks in all cases to better accomodate ship design, as having it to the side was causing issues." diff --git a/maps/_common/areas/special.dm b/maps/_common/areas/special.dm index 7df25312c4e..8ffa55809d5 100644 --- a/maps/_common/areas/special.dm +++ b/maps/_common/areas/special.dm @@ -169,88 +169,6 @@ name = "Thunderdome (Observer.)" icon_state = "purple" -// Kataphract Station - -/area/kataphract_chapter - name = "Kataphract Chapter" - icon_state = "yellow" - requires_power = 1 - dynamic_lighting = 1 - no_light_control = 0 - base_turf = /turf/space - flags = NO_CREW_EXPECTED - -/area/kataphract_chapter/bridge - name = "Kataphract Chapter - Bridge" - icon_state = "bridge" - ambience = AMBIENCE_HIGHSEC - -/area/kataphract_chapter/sparring_chamber - name = "Kataphract Chapter - Sparring Chamber" - icon_state = "security" - sound_env = ARENA - -/area/kataphract_chapter/commissary - name = "Kataphract Chapter - Commissary" - icon_state = "Warden" - -/area/kataphract_chapter/main_ring - name = "Kataphract Chapter - Main Ring" - icon_state = "yellow" - -/area/kataphract_chapter/dorms - name = "Kataphract Chapter - Dormitory" - icon_state = "Sleep" - sound_env = SMALL_SOFTFLOOR - -/area/kataphract_chapter/toilets - name = "Kataphract Chapter - Toilets" - icon_state = "toilet" - sound_env = SMALL_ENCLOSED - -/area/kataphract_chapter/office - name = "Kataphract Chapter - Knight's Office" - icon_state = "law" - sound_env = SMALL_SOFTFLOOR - -/area/kataphract_chapter/cafeteria - name = "Kataphract Chapter - Cafeteria" - icon_state = "kitchen" - -/area/kataphract_chapter/engineering - name = "Kataphract Chapter - Engineering" - icon_state = "engineering_workshop" - ambience = AMBIENCE_ENGINEERING - -/area/kataphract_chapter/port_solars - name = "Kataphract Chapter - Port Solars" - icon_state = "panelsA" - ambience = AMBIENCE_SPACE - -/area/kataphract_chapter/starboard_solars - name = "Kataphract Chapter - Starboard Solars" - icon_state = "panelsA" - ambience = AMBIENCE_SPACE - -/area/kataphract_chapter/trading_area - name = "Kataphract Chapter - Trading Area" - icon_state = "quartoffice" - -/area/kataphract_chapter/warehouse - name = "Kataphract Chapter - Warehouse" - icon_state = "quartstorage" - sound_env = LARGE_ENCLOSED - -/area/kataphract_chapter/hangar - name = "Kataphract Chapter - Hangar" - icon_state = "green" - ambience = AMBIENCE_HANGAR - sound_env = HANGAR - -/area/kataphract_chapter/hull - name = "Kataphract Chapter - Hull" - icon_state = "blue" - //Dungeons /area/dungeon/crashed_ship diff --git a/maps/away/generic/tajara_safehouse.dmm b/maps/away/generic/tajara_safehouse.dmm index 482207016a1..45390db9877 100644 --- a/maps/away/generic/tajara_safehouse.dmm +++ b/maps/away/generic/tajara_safehouse.dmm @@ -808,7 +808,7 @@ /turf/simulated/floor/tiled/dark, /area/tajara_safehouse/hangar) "zj" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, diff --git a/maps/away/ships/ee_spy_ship.dmm b/maps/away/ships/ee_spy_ship.dmm index 4d8491ca69b..94362daf64a 100644 --- a/maps/away/ships/ee_spy_ship.dmm +++ b/maps/away/ships/ee_spy_ship.dmm @@ -442,7 +442,7 @@ /turf/simulated/floor, /area/ship/ee_spy_ship) "gHC" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor, @@ -810,7 +810,7 @@ /turf/simulated/floor/tiled/yellow, /area/ship/ee_spy_ship) "pfE" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, diff --git a/maps/away/ships/elyran_strike_craft.dmm b/maps/away/ships/elyran_strike_craft.dmm index 1a58d70be5a..01f2212248a 100644 --- a/maps/away/ships/elyran_strike_craft.dmm +++ b/maps/away/ships/elyran_strike_craft.dmm @@ -365,7 +365,7 @@ /turf/simulated/floor/shuttle/black, /area/shuttle/elyran_shuttle) "bNj" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, diff --git a/maps/away/ships/fsf_patrol_ship.dmm b/maps/away/ships/fsf_patrol_ship.dmm index 5babdf76276..a765c0a24f5 100644 --- a/maps/away/ships/fsf_patrol_ship.dmm +++ b/maps/away/ships/fsf_patrol_ship.dmm @@ -1522,7 +1522,7 @@ /turf/simulated/floor/tiled/dark, /area/ship/fsf_patrol_ship) "lGR" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, @@ -2441,10 +2441,6 @@ /turf/simulated/floor, /area/ship/fsf_patrol_ship) "vPL" = ( -/obj/structure/fuel_port{ - pixel_x = 10; - pixel_y = 32 - }, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -2452,6 +2448,10 @@ pixel_x = -10; pixel_y = 32 }, +/obj/structure/fuel_port/phoron{ + pixel_x = 10; + pixel_y = 32 + }, /turf/simulated/floor/tiled/dark, /area/ship/fsf_patrol_ship) "vQR" = ( diff --git a/maps/away/ships/kataphracts/kataphract_areas.dm b/maps/away/ships/kataphracts/kataphract_areas.dm new file mode 100644 index 00000000000..87060a2c662 --- /dev/null +++ b/maps/away/ships/kataphracts/kataphract_areas.dm @@ -0,0 +1,108 @@ +/area/kataphract_chapter + name = "Kataphract Chapter" + icon_state = "yellow" + requires_power = 1 + dynamic_lighting = 1 + no_light_control = 0 + base_turf = /turf/space + flags = RAD_SHIELDED + +/area/kataphract_chapter/bridge + name = "Kataphract Chapter - Bridge" + icon_state = "bridge" + ambience = AMBIENCE_HIGHSEC + +/area/kataphract_chapter/sparring_chamber + name = "Kataphract Chapter - Sparring Chamber" + icon_state = "security" + sound_env = ARENA + +/area/kataphract_chapter/commissary + name = "Kataphract Chapter - Commissary" + icon_state = "Warden" + +/area/kataphract_chapter/main_ring + name = "Kataphract Chapter - Main Ring" + icon_state = "yellow" + +/area/kataphract_chapter/medical + name = "Kataphract Chapter - Medicine Room" + icon_state = "law" + +/area/kataphract_chapter/dorms + name = "Kataphract Chapter - Dormitory" + icon_state = "Sleep" + sound_env = SMALL_SOFTFLOOR + +/area/kataphract_chapter/toilets + name = "Kataphract Chapter - Toilets" + icon_state = "toilet" + sound_env = SMALL_ENCLOSED + +/area/kataphract_chapter/office + name = "Kataphract Chapter - Knight's Office" + icon_state = "law" + sound_env = SMALL_SOFTFLOOR + +/area/kataphract_chapter/cafeteria + name = "Kataphract Chapter - Cafeteria" + icon_state = "kitchen" + +/area/kataphract_chapter/engineering + name = "Kataphract Chapter - Engineering" + icon_state = "engineering_workshop" + ambience = AMBIENCE_ENGINEERING + +/area/kataphract_chapter/port_solars_array + name = "Kataphract Chapter - Port solars Array" + icon_state = "engineering_workshop" + ambience = AMBIENCE_ENGINEERING + +/area/kataphract_chapter/port_solars + name = "Kataphract Chapter - Port Solars" + icon_state = "panelsA" + ambience = AMBIENCE_SPACE + +/area/kataphract_chapter/starboard_solars + name = "Kataphract Chapter - Starboard Solars" + icon_state = "panelsA" + ambience = AMBIENCE_SPACE + +/area/kataphract_chapter/starboard_solars_array + name = "Kataphract Chapter - Starboard Solars Array" + icon_state = "engineering_workshop" + ambience = AMBIENCE_ENGINEERING + +/area/kataphract_chapter/trading_area + name = "Kataphract Chapter - Trading Area" + icon_state = "quartoffice" + +/area/kataphract_chapter/propulsion + name = "Kataphract Chapter - Propulsion" + icon_state = "engineering_workshop" + +/area/kataphract_chapter/warehouse + name = "Kataphract Chapter - Warehouse" + icon_state = "quartstorage" + sound_env = LARGE_ENCLOSED + +/area/kataphract_chapter/hangar + name = "Kataphract Chapter - Hangar" + icon_state = "green" + ambience = AMBIENCE_HANGAR + sound_env = HANGAR + +/area/kataphract_chapter/hull + name = "Kataphract Chapter - Hull" + icon_state = "blue" + + +//Shuttle +/area/shuttle/kataphract_shuttle + requires_power = TRUE + +/area/shuttle/kataphract_shuttle/main_compartment + name = "\improper Kataphract Transport" + +/area/shuttle/kataphract_shuttle/engine_compartment + name = "\improper Kataphract Transport Engine compartment" \ No newline at end of file diff --git a/maps/away/ships/kataphracts/kataphract_ship.dm b/maps/away/ships/kataphracts/kataphract_ship.dm new file mode 100644 index 00000000000..0f74481e558 --- /dev/null +++ b/maps/away/ships/kataphracts/kataphract_ship.dm @@ -0,0 +1,111 @@ +/datum/map_template/ruin/away_site/kataphract_ship + name = "kataphract ship" + id = "awaysite_kataphract_ship" + description = "Ship with lizard knights." + suffix = "ships/kataphracts/kataphract_ship.dmm" + spawn_cost = 1 + spawn_weight = 1 + shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/kataphract_transport) + sectors = list(SECTOR_ROMANOVICH, SECTOR_TAU_CETI, SECTOR_CORP_ZONE, SECTOR_VALLEY_HALE, SECTOR_BADLANDS, SECTOR_UUEOAESA) + +/obj/effect/overmap/visitable/ship/kataphract_ship + name = "kataphract chapter ship" + desc = "A large corvette manufactured by a Hephaestus sponsered Hegemonic Guild. This is a Kataphract Chapter ship of the venerable 'Voidbreaker' class, a relative of the more common 'Foundation' class used by their counterparts in the Hegemon's navy. These vessels are rarely seen together and strive for maximum self-suffiency as they are the homes and primary means of transportation for questing Kataphracts and their Hopefuls. They carry enough firepower to deter the common pirate as well as a set of boarding pods for offensive actions." + class = "IHKV" //Izweski Hegemony Kataphract Vessel + icon_state = "ship_green" + moving_state = "ship_green_moving" + vessel_mass = 10000 + max_speed = 1/(2 SECONDS) + fore_dir = NORTH + vessel_size = SHIP_SIZE_SMALL + initial_generic_waypoints = list( + "nav_kataphract_ship_1", + "nav_kataphract_ship_2", + "nav_kataphract_ship_3", + "nav_kataphract_ship_4", + "nav_kataphract_ship_5", + "nav_kataphract_ship_portdock", + ) + initial_restricted_waypoints = list( + "Kataphract Transport" = list("nav_hangar_kataphract_shuttle"), + "Intrepid" = list("nav_kataphract_ship_dockintrepid") + ) + +/obj/effect/overmap/visitable/ship/kataphract_ship/New() + designation = "[pick("Pious Avenger", "Persistent Conviction", "Solemn Retribution", "Venerable Ironscales", "Blade of Faith", "Glorious Succor", "Sacred Retribution", "Unflinching Soul", "Unrelenting Fervor", "Ascendant Absolution")]" + ..() + +/obj/effect/shuttle_landmark/nav_kataphract_ship + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav1 + name = "Kataphract Ship Navpoint #1" + landmark_tag = "nav_kataphract_ship_1" + +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav2 + name = "Kataphract Ship Navpoint #2" + landmark_tag = "nav_kataphract_ship_2" + +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav3 + name = "Kataphract Ship Navpoint #3" + landmark_tag = "nav_kataphract_ship_3" + +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav4 + name = "Kataphract Ship Navpoint #4" + landmark_tag = "nav_kataphract_ship_4" + +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav5 + name = "Kataphract Ship Navpoint #5" + landmark_tag = "nav_kataphract_ship_5" + +/obj/effect/shuttle_landmark/nav_kataphract_ship/starboarddock //any ship with a docking port on their left side assuming they have their landmark mapped in properly + name = "Kataphract Ship Starboard Docking" + landmark_tag = "nav_kataphract_ship_starboarddock" + +/obj/effect/shuttle_landmark/nav_kataphract_ship/dockintrepid // restricted for the intrepid only or else other ships will be able to use this point, and not properly dock + name = "Kataphract Ship Intrepid Starboard Docking" + landmark_tag = "nav_kataphract_ship_dockintrepid" + +//shuttle +/obj/effect/overmap/visitable/ship/landable/kataphract_transport + name = "Kataphract Transport" + desc = "A small egg shaped shuttle of the 'Spearhead' class, commonly seen carried by Izweski Hegemony vessels. They're never far from their motherships and are a telltale sign of an Unathi presence within a sector. Affectionately called the 'Hatchling' by its operators. The transponder for this vessel identifies it as belonging to a traveling Kataphract Guild of the Hegemony." + shuttle = "Kataphract Transport" + icon_state = "shuttle_green" + moving_state = "shuttle_green_moving" + max_speed = 1/(3 SECONDS) + burn_delay = 2 SECONDS + vessel_mass = 4000 + fore_dir = WEST + vessel_size = SHIP_SIZE_TINY + +/obj/machinery/computer/shuttle_control/explore/kataphract_transport + name = "shuttle control console" + shuttle_tag = "Kataphract Transport" + req_access = list(access_kataphract) + +/datum/shuttle/autodock/overmap/kataphract_transport + name = "Kataphract Transport" + move_time = 20 + shuttle_area = list(/area/shuttle/kataphract_shuttle/main_compartment, /area/shuttle/kataphract_shuttle/engine_compartment) + current_location = "nav_hangar_kataphract_shuttle" + dock_target = "kataphract_transport" + landmark_transition = "nav_kataphract_transport_transit" + range = 2 + fuel_consumption = 3 + logging_home_tag = "nav_hangar_kataphract_shuttle" + defer_initialisation = TRUE + +/obj/effect/shuttle_landmark/kataphract_transport/hangar + name = "Kataphract Transport Shuttle Hangar" + landmark_tag = "nav_hangar_kataphract_shuttle" + docking_controller = "kataphract_dock" + base_area = /area/kataphract_chapter/hangar + base_turf = /turf/simulated/floor/plating + movable_flags = MOVABLE_FLAG_EFFECTMOVE + +/obj/effect/shuttle_landmark/kataphract_transport/transit + name = "In transit" + landmark_tag = "nav_kataphract_transport_transit" + base_turf = /turf/space diff --git a/maps/away/ships/kataphracts/kataphract_ship.dmm b/maps/away/ships/kataphracts/kataphract_ship.dmm new file mode 100644 index 00000000000..293b457f8b2 --- /dev/null +++ b/maps/away/ships/kataphracts/kataphract_ship.dmm @@ -0,0 +1,35381 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"ab" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/bridge) +"ac" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/tank, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"ad" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"ae" = ( +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/main_compartment) +"ah" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/trading_area) +"ai" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"aj" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/door/airlock/maintenance{ + name = "Propulsion"; + req_one_access = list(113) + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"al" = ( +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"am" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"an" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "egg_blastdoors" + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"ao" = ( +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"ap" = ( +/obj/structure/bed/stool/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"aq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/overmap/visitable/ship/landable/kataphract_transport, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"ar" = ( +/obj/structure/cable/green, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"at" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Trading Desk"; + req_one_access = list(113) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"au" = ( +/obj/effect/step_trigger/teleporter, +/turf/template_noop, +/area/space) +"av" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"aw" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4; + icon_state = "warning" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"ax" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"ay" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"az" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"aB" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "Suit Storage"; + req_one_access = list(113) + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"aC" = ( +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"aE" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"aF" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"aG" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aH" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aJ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aK" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aL" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/cafeteria) +"aM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"aN" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aO" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aP" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aQ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aR" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aT" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aU" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aV" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aW" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aX" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"aZ" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"ba" = ( +/obj/machinery/power/smes/buildable/third_party_shuttle, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"bb" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bc" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"be" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bf" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bg" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bh" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bi" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"bj" = ( +/obj/machinery/power/apc{ + dir = 1; + is_critical = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"bk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"bn" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"bo" = ( +/obj/structure/bed/roller, +/obj/structure/curtain/open/medical, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"bp" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bq" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"br" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bs" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bt" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bu" = ( +/obj/structure/sign/flag/hegemony, +/turf/simulated/wall, +/area/kataphract_chapter/bridge) +"bv" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bw" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/structure/table/rack, +/obj/item/clothing/shoes/caligae/armor, +/obj/item/clothing/shoes/caligae/armor, +/obj/item/clothing/shoes/caligae/armor, +/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, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"bz" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bA" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bB" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bC" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bD" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/desert, +/area/kataphract_chapter/bridge) +"bE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"bH" = ( +/obj/machinery/shipsensors/weak, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"bI" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bJ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"bQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bR" = ( +/obj/machinery/power/apc{ + dir = 2; + is_critical = 1; + name = "south bump"; + pixel_y = -24; + req_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bW" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bX" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"bY" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"bZ" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"ca" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"cb" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge Glass Airlock"; + req_access = list(113); + req_one_access = null + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"cc" = ( +/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, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge Glass Airlock"; + req_access = list(113); + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"cd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"ce" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge Glass Airlock"; + req_access = list(113); + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"cf" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ch" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ci" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/flag/hegemony{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"cj" = ( +/obj/machinery/alarm{ + pixel_y = 25; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ck" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cl" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Propulsion"; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"cn" = ( +/turf/simulated/wall, +/area/kataphract_chapter/toilets) +"co" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cp" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cs" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ct" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cu" = ( +/turf/simulated/wall, +/area/kataphract_chapter/office) +"cv" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/office) +"cw" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/toothpaste, +/obj/item/reagent_containers/toothbrush{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cx" = ( +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cy" = ( +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cz" = ( +/obj/machinery/shower{ + pixel_y = 15 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cA" = ( +/obj/machinery/door/airlock{ + id_tag = "katatoilet1"; + name = "Toilet"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + id = "katatoilet1"; + name = "Door Bolt Control"; + pixel_x = 0; + pixel_y = -24; + req_access = null; + req_one_access = list(113); + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cC" = ( +/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/kataphract_chapter/main_ring) +"cD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cE" = ( +/obj/structure/table/wood, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"cF" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"cH" = ( +/obj/structure/foamedmetal, +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/port_solars_array) +"cI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"cJ" = ( +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"cK" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"cL" = ( +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"cM" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cN" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cO" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"cP" = ( +/turf/simulated/wall, +/area/kataphract_chapter/sparring_chamber) +"cQ" = ( +/turf/simulated/wall, +/area/kataphract_chapter/commissary) +"cR" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/commissary) +"cS" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"cT" = ( +/obj/structure/table/rack, +/obj/machinery/door/window{ + dir = 8; + req_one_access = "112" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4; + name = "HYDROGEN FUEL" + }, +/obj/item/tank/hydrogen, +/obj/item/tank/hydrogen, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"cU" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"cV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"cW" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"cX" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/office) +"cY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"cZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"da" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"db" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dc" = ( +/obj/machinery/photocopier, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"dd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapter Residential Area"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"de" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"df" = ( +/obj/structure/sign/flag/hegemony/left{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dg" = ( +/obj/structure/sign/flag/hegemony/right{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dh" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/boxing/blue, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"di" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/boxing/green, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dj" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/boxing/yellow, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dk" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/boxing, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dl" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dm" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dn" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"do" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"dp" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"dq" = ( +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"dr" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ds" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/high{ + dir = 1; + name = "north bump"; + pixel_y = 24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"du" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/sparring_chamber) +"dv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"dw" = ( +/obj/machinery/door/airlock{ + id_tag = "katatoilet2"; + name = "Toilet"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dx" = ( +/obj/structure/coatrack, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"dy" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dz" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dC" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_one_access = list(113) + }, +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dD" = ( +/obj/machinery/power/apc{ + dir = 2; + is_critical = 1; + name = "south bump"; + pixel_y = -24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"dE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"dF" = ( +/turf/space, +/area/kataphract_chapter/port_solars) +"dG" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"dH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dI" = ( +/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" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dL" = ( +/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/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"dM" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 8 + }, +/turf/unsimulated/floor/plating, +/area/shuttle/kataphract_shuttle/engine_compartment) +"dN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"dO" = ( +/obj/structure/foamedmetal, +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/trading_area) +"dP" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"dQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"dR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + icon_state = "map_scrubber_on"; + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"dS" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"dT" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"dU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + icon_state = "map_scrubber_on"; + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"dV" = ( +/obj/structure/table/rack, +/obj/structure/table/rack, +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/item/reagent_containers/extinguisher_refill/filled, +/obj/item/reagent_containers/extinguisher_refill/filled, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"dW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"dX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"dY" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "egg_blastdoors"; + name = "Blast doors"; + req_access = list(113); + req_one_access = null; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/device/binoculars/high_power, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"dZ" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock{ + start_pressure = 1000.975 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"ea" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + id = "katatoilet2"; + name = "Door Bolt Control"; + pixel_x = 0; + pixel_y = -24; + req_access = null; + req_one_access = list(113); + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"eb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"ec" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"ed" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Cafeteria and Knight's Office"; + req_access = null; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/medical) +"ee" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ef" = ( +/obj/machinery/firealarm/west, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"eg" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"eh" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"ei" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"ej" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"ek" = ( +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"el" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"em" = ( +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"en" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"eo" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"ep" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"er" = ( +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"es" = ( +/obj/machinery/door/airlock/glass{ + name = "Canisters and Supplies"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"et" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"eu" = ( +/turf/simulated/wall, +/area/kataphract_chapter/main_ring) +"ev" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ew" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ex" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"ey" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"ez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Quartermaster"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"eB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"eC" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"eD" = ( +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"eE" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"eF" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"eG" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24; + req_access = list(113) + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"eH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"eI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"eJ" = ( +/obj/machinery/alarm{ + pixel_y = 25; + req_one_access = list(113) + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"eK" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eL" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"eM" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"eN" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"eO" = ( +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav2, +/turf/template_noop, +/area/space) +"eP" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eQ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eR" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eS" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eU" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/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/kataphract_chapter/main_ring) +"eV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Chapter Toilets"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"eW" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Chapter Cafeteria and Knight's Office"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"eX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"eY" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Quartermaster"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"eZ" = ( +/obj/machinery/door/window{ + dir = 8; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fa" = ( +/obj/machinery/door/window{ + dir = 4; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"fc" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"fd" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"fe" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"ff" = ( +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"fg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + icon_state = "map_scrubber_on"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"fh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"fi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"fj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"fk" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/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/glass{ + name = "Chapter Residential Area"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fl" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/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/kataphract_chapter/main_ring) +"fm" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"fn" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fo" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fp" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fr" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/obj/structure/table/wood, +/obj/item/material/ashtray/bronze, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fs" = ( +/obj/machinery/vending/zora, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ft" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fu" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fv" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_one_access = list(113) + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"fx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Chapter Toilets"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/freezer, +/area/kataphract_chapter/toilets) +"fz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"fA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"fB" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fC" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "kataqmblast"; + name = "Quartermaster Shutters"; + opacity = 0 + }, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"fE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"fF" = ( +/obj/item/reagent_containers/food/snacks/red_sun_special, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"fG" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/engine_compartment) +"fH" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fI" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fK" = ( +/turf/simulated/wall, +/area/kataphract_chapter/dorms) +"fL" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"fM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Chapter Dormitory"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"fN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24; + req_access = list(113) + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"fO" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fP" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/kataphract_chapter/sparring_chamber) +"fS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"fT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"fU" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"fV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"fW" = ( +/turf/simulated/wall, +/area/kataphract_chapter/cafeteria) +"fX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"fY" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"fZ" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"ga" = ( +/obj/machinery/alarm{ + pixel_y = 25; + req_one_access = list(113) + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gb" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list(113) + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"ge" = ( +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gf" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gg" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Sparring Chamber"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"gi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"gk" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Sparring Chamber"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"gl" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"gm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"gn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"go" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list(113) + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"gq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/rack, +/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/item/device/gps{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"gr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/table/rack, +/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/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/gun/energy/pistol/hegemony, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"gs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gu" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/commissary) +"gv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"gw" = ( +/obj/machinery/door/airlock/security{ + name = "Pod Bay"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"gx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"gy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gA" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"gB" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"gC" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/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/glass{ + name = "Chapter Cafeteria and Knight's Office"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gH" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/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" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gI" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gJ" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"gK" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"gM" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"gN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"gO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + icon_state = "map_scrubber_on"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"gP" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"gQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"gR" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Cafeteria"; + req_access = null; + req_one_access = list(113) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gS" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"gT" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24; + req_one_access = list(113) + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"gU" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24; + req_access = list(113) + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"gV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"gZ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"ha" = ( +/obj/machinery/computer/ship/helm, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"hb" = ( +/obj/item/reagent_containers/food/snacks/stuffed_meatball, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"hc" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "kata_armoury"; + name = "Armoury Entrance Control"; + pixel_x = 25; + req_one_access = list(115) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"hd" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/paper_bin, +/obj/item/pen, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"he" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/reagent_containers/food/drinks/bottle/sarezhiwine, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hg" = ( +/obj/structure/table/wood/gamblingtable, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"hj" = ( +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"hk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"hl" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/reagent_containers/food/snacks/bacon_flatbread, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"ho" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"hp" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"hq" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"hr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"hs" = ( +/obj/machinery/firealarm/east, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"ht" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"hu" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/kataphract_chapter/main_ring) +"hv" = ( +/obj/machinery/door/airlock/glass{ + name = "Quartermaster"; + req_one_access = list(115) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "kataqmblast"; + name = "Quartermaster Shutters"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"hw" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"hx" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/snacks/bearchili, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hy" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/snacks/grilled_carp_slice, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hz" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/snacks/porkbowl, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hA" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/snacks/meatbreadslice/filled, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hB" = ( +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hC" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hD" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"hF" = ( +/obj/structure/sign/flag/hegemony/left{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hG" = ( +/obj/structure/sign/flag/hegemony/right{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hH" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Chapter Dormitory"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"hJ" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"hK" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"hL" = ( +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hM" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hN" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hO" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_one_access = list(113) + }, +/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, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hP" = ( +/obj/machinery/vending/boozeomat{ + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hQ" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hR" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hS" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/coffeemaster/full, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"hT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"hU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"hV" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"hW" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/port_solars) +"hX" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"hY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Sparring Chamber"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"hZ" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"ia" = ( +/turf/simulated/wall, +/area/kataphract_chapter/engineering) +"ib" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ic" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"id" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"ie" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "kataphract_shuttle_pump" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "kataphract_shuttle"; + layer = 3.3; + master_tag = "kataphract_transport"; + pixel_y = -2; + tag_airpump = "kataphract_shuttle_pump"; + tag_chamber_sensor = "kataphract_shuttle_sensor"; + tag_exterior_door = "kataphract_shuttle_out"; + tag_exterior_sensor = "kataphract_shuttle_exterior_sensor"; + tag_interior_door = "kataphract_shuttle_in"; + pixel_x = 27 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"if" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"ig" = ( +/turf/unsimulated/wall/fakepdoor, +/area/kataphract_chapter/hangar) +"ih" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"ii" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ij" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"ik" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/engineering) +"il" = ( +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + id = "kataqmblast"; + name = "Shutter Control"; + pixel_x = 0; + req_access = list(115); + req_one_access = null + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"im" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"in" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapter Cafeteria"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"io" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"ip" = ( +/obj/structure/closet, +/obj/item/storage/secure/briefcase/money{ + name = "Secure Briefcase"; + req_access = "116"; + req_one_access = null + }, +/obj/structure/sign/flag/hegemony/left{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"iq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"ir" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"is" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"it" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + opacity = 0 + }, +/obj/machinery/door/window{ + dir = 2; + name = "Trading Desk"; + req_one_access = list(114,116) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"iu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"iv" = ( +/obj/effect/step_trigger/teleporter, +/obj/effect/step_trigger/teleporter, +/turf/template_noop, +/area/space) +"iw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"ix" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/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" + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"iy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"iz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"iA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"iB" = ( +/turf/template_noop, +/area/space) +"iC" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"iD" = ( +/obj/machinery/vending/cigarette/hacked{ + name = "free cigarette machine" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"iE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"iF" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/item/reagent_containers/food/snacks/grilled_carp_slice, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"iG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"iI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/plating, +/area/kataphract_chapter/engineering) +"iJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"iK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"iL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"iM" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"iN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"iO" = ( +/obj/machinery/access_button/airlock_interior{ + frequency = 1983; + master_tag = "chapter_port_airlock"; + pixel_x = -28 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"iP" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"iQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"iR" = ( +/turf/simulated/wall, +/area/kataphract_chapter/warehouse) +"iS" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"iT" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/smes/buildable/autosolars, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"iU" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"iV" = ( +/turf/simulated/wall/r_wall, +/area/space) +"iW" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"iX" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"iY" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"iZ" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"ja" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jb" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jc" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"jd" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"je" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Chapter Port Engineering"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jg" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/hull) +"jh" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"ji" = ( +/obj/machinery/door/airlock/external{ + frequency = 1983; + icon_state = "door_locked"; + id_tag = "chapter_port_exterior"; + locked = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"jj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"jk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"jl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"jm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1983; + icon_state = "door_locked"; + id_tag = "chapter_port_interior"; + locked = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"jn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"jo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"jp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"jq" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/smes/buildable/autosolars, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jr" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/bridge) +"js" = ( +/obj/machinery/door/airlock/engineering{ + name = "Chapter Port Solars"; + req_access = null; + req_one_access = list(113) + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"jt" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"ju" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"jw" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jx" = ( +/obj/machinery/button/remote/airlock{ + id = "kataofficedoor"; + name = "Door Bolt Control"; + pixel_x = -36; + pixel_y = 0; + specialfunctions = 4; + req_one_access = list(114) + }, +/obj/structure/bed/stool/chair/wood, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"jy" = ( +/obj/machinery/pipedispenser, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jz" = ( +/obj/structure/sign/flag/hegemony/right{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/papershredder{ + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"jA" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"jD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jE" = ( +/obj/effect/floor_decal/corner/red, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jF" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "egg_blastdoors" + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"jG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"jH" = ( +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty{ + name = "waste canister" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"jI" = ( +/obj/machinery/door/airlock/engineering{ + name = "Chapter Starboard Solars Access"; + req_access = null; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/main_ring) +"jJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"jK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Chapter Port Engineering"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"jL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + frequency = 1983; + id_tag = "chapter_port_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1983; + id_tag = "chapter_port_airlock"; + pixel_y = -25; + tag_airpump = "chapter_port_vent"; + tag_chamber_sensor = "chapter_port_sensor"; + tag_exterior_door = "chapter_port_exterior"; + tag_interior_door = "chapter_port_interior" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"jM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"jN" = ( +/obj/machinery/door/airlock/engineering{ + name = "Chapter Starboard Solars"; + req_access = null; + req_one_access = list(113) + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jO" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/warehouse) +"jP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Chapter Trading Desk"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"jQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jR" = ( +/obj/machinery/door/airlock/external{ + frequency = 1984; + icon_state = "door_locked"; + id_tag = "chapter_starboard_interior"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1984; + icon_state = "door_locked"; + id_tag = "chapter_starboard_exterior"; + locked = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jU" = ( +/obj/machinery/door/window{ + dir = 4; + req_one_access = "112" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jV" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"jW" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + frequency = 1984; + id_tag = "chapter_starboard_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1984; + id_tag = "chapter_starboard_airlock"; + pixel_y = -25; + tag_airpump = "chapter_starboard_vent"; + tag_chamber_sensor = "chapter_starboard_sensor"; + tag_exterior_door = "chapter_starboard_exterior"; + tag_interior_door = "chapter_starboard_interior" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"jX" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1984; + master_tag = "chapter_starboard_airlock"; + pixel_x = -28 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"jY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"jZ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ka" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"kb" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar_control/autostart, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"kc" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"kd" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 8; + req_one_access = "112" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"ke" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kf" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kg" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kh" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"ki" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kj" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kk" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kl" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"km" = ( +/obj/machinery/vending/tool{ + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"ko" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"kr" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/hangar) +"ks" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/airless, +/area/kataphract_chapter/bridge) +"ku" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"kv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"kw" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/trading_area) +"kx" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/coffee/full, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ky" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kA" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kC" = ( +/obj/machinery/vending/engivend{ + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kD" = ( +/obj/machinery/vending/engineering{ + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"kE" = ( +/obj/structure/sign/flag/vaurca{ + pixel_y = -32 + }, +/obj/effect/ghostspawpoint/repeat{ + identifier = "kataphract_klax"; + name = "igs kataphract klax" + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"kF" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"kG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"kH" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kI" = ( +/obj/machinery/firealarm/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kJ" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/warehouse) +"kK" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"kL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/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/kataphract_chapter/main_ring) +"kN" = ( +/turf/simulated/wall, +/area/kataphract_chapter/hangar) +"kO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"kP" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"kQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"kR" = ( +/obj/structure/sign/flag/hegemony/left{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"kS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"kT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"kU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"kV" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"kW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/machinery/light/small, +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24; + req_access = list(113) + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"kX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"kY" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"kZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"la" = ( +/turf/simulated/wall, +/area/kataphract_chapter/trading_area) +"lb" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"lc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"ld" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"le" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"lf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"lg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"lh" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"li" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"lj" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"lk" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/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" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"ll" = ( +/obj/machinery/firealarm/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"lm" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"ln" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lo" = ( +/obj/machinery/door/airlock/security{ + name = "Pod Bay"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"lp" = ( +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"lr" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"ls" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"lt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapter Trading Desk"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"lv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lw" = ( +/obj/structure/sign/flag/hegemony/right{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ly" = ( +/turf/simulated/wall, +/area/kataphract_chapter/medical) +"lz" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lA" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"lB" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lC" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lF" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lG" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lH" = ( +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"lI" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"lJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"lK" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"lL" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"lM" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lN" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/loot, +/obj/random/loot, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"lP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"lQ" = ( +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"lR" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"lS" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8000.63 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"lT" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"lU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"lV" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/window{ + dir = 1; + name = "Suit Storage"; + req_one_access = list(113) + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"lW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"lZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"ma" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"mb" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"mc" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"md" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"me" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"mf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"mg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"mh" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/unsimulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"mi" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"mj" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"mk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"mm" = ( +/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."; + icon = 'icons/obj/vehicles.dmi'; + icon_state = "droppod"; + name = "SUPB Pod" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"mo" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"mp" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"mq" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ms" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "katabridgeshutter"; + name = "Bridge Blast Door"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/bridge) +"mt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"mu" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + is_critical = 1; + name = "south bump"; + pixel_y = -24; + req_access = list(113) + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"mv" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"mw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"mx" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Trading Area" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"my" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Trading Area" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"mz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"mA" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"mB" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"mC" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"mD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"mE" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"mF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"mG" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"mH" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"mI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"mJ" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"mK" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"mL" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Armoury"; + req_access = list(115); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"mM" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -24; + req_one_access = list(113) + }, +/obj/structure/bed/stool/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"mN" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/structure/sign/flag/hegemony/right{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"mO" = ( +/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"mP" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"mQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"mR" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/ghostspawpoint/repeat{ + identifier = "kataphract"; + name = "igs kataphract" + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"mS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"mT" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/ghostspawpoint/repeat{ + identifier = "kataphract_knight"; + name = "igs kataphract knight" + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"mU" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/ghostspawpoint/repeat{ + identifier = "kataphract_quartermaster"; + name = "igs kataphract QM" + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"mV" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Engineering and Hangar"; + req_access = null; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"mW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/door/airlock/glass{ + name = "Chapter Engineering and Hangar"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"mX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"mY" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "katashroud"; + name = "Sensor Shroud"; + opacity = 0 + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/bridge) +"mZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"na" = ( +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"nb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapter Engineering and Hangar"; + req_access = null; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"nc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/remote/blast_door{ + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + pixel_x = 26; + pixel_y = 0; + req_access = null; + req_one_access = list(114,116) + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"nd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"ne" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille, +/turf/simulated/floor/plating, +/area/kataphract_chapter/trading_area) +"nf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"ng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"nh" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"ni" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"nj" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"nk" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"nl" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kataphract_shuttle_in"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"nm" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10; + icon_state = "corner_white" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"nn" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kata_ship_out" + }, +/obj/effect/shuttle_landmark/nav_kataphract_ship/starboarddock, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"no" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/purple/full, +/obj/item/storage/box/mousetraps, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"np" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"nq" = ( +/obj/machinery/vending/wallmed2{ + pixel_x = 28; + req_access = null + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"nr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ns" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8000.63 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"nt" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/sparring_chamber) +"nu" = ( +/obj/machinery/computer/ship/helm{ + req_access = list(204); + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"nv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "kataqmblast"; + name = "Quartermaster Shutters"; + opacity = 0 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"nw" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "kataoffice" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/office) +"nx" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"ny" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8; + icon_state = "warning" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"nz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"nA" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"nB" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/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/kataphract_chapter/main_ring) +"nC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"nD" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"nE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/bed/stool/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"nF" = ( +/obj/structure/foamedmetal, +/turf/space, +/area/kataphract_chapter/trading_area) +"nM" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"nW" = ( +/obj/machinery/door/airlock/silver{ + id_tag = "kataofficedoor"; + name = "Knight Captain's office"; + req_one_access = list(114) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"op" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"ou" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/starboard_solars_array) +"oC" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8; + level = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"oT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"oX" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/door/window{ + dir = 8; + req_one_access = list(113); + name = "HYDROGEN FUEL" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"pc" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/kataphract/lead, +/obj/item/clothing/head/helmet/space/void/kataphract/lead, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots/hegemony, +/obj/machinery/door/window{ + name = "Knight Captain"; + req_access = list(114) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"pf" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/port_solars_array) +"pg" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "pump to waste" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"pi" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -28; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"pp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"px" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"pH" = ( +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"pL" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + opacity = 0 + }, +/obj/machinery/door/window{ + dir = 2; + name = "Trading Desk"; + req_one_access = list(114,116) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"pM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/loot, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"pN" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/iff_beacon/name_change, +/turf/simulated/floor/airless, +/area/kataphract_chapter/bridge) +"pT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"pW" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"pX" = ( +/turf/template_noop, +/area/kataphract_chapter/hangar) +"qd" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kata_ship_out" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "kata_ship_port"; + name = "exterior access button"; + pixel_x = 8; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"qm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"qt" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kata_ship_in" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"qA" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Cell"; + req_access = list(113) + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"qK" = ( +/obj/effect/shuttle_landmark/kataphract_transport/hangar, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"qS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Propulsion"; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"qW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Chapter Warehouse"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"rd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"rm" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/kataphract_chapter/trading_area) +"rq" = ( +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"rs" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8000.63 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"ru" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Hangar and Pod Bay" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"rv" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"rM" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"rN" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/item/reagent_containers/food/snacks/meatsteak, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"rS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/rack, +/obj/item/inflatable_dispenser, +/obj/item/clothing/gloves/yellow/specialu, +/obj/item/clothing/gloves/yellow/specialu, +/obj/item/clothing/gloves/yellow/specialu, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"rZ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"sn" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "kataphract_shuttle_pump" + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"so" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/obj/structure/sign/flag/hegemony/right{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"sB" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"sC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"sX" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable/horizon_shuttle, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"tb" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"th" = ( +/turf/simulated/wall/r_wall, +/area/kataphract_chapter/propulsion) +"tk" = ( +/obj/machinery/door/airlock/glass{ + name = "Canisters and Supplies"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"tu" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24; + req_one_access = list(113) + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"tw" = ( +/obj/item/reagent_containers/food/snacks/hatchling_suprise, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"ty" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Telecommunications" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"tH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"tM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"ud" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"ue" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Propulsion"; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/plating, +/area/kataphract_chapter/propulsion) +"uh" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"uy" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -10 + }, +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Kataphract Transport Airlock"; + child_tags_txt = "kataphract_shuttle"; + frequency = 1380; + id_tag = "kataphract_transport"; + pixel_y = 35 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"uA" = ( +/obj/structure/table/wood, +/obj/machinery/door/window{ + dir = 2; + name = "Trading Desk"; + req_one_access = list(114,116) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"uN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"uR" = ( +/turf/simulated/wall, +/area/kataphract_chapter/port_solars_array) +"vf" = ( +/obj/effect/floor_decal/corner/purple, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"vA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty{ + name = "waste canister" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"vJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"vQ" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"vV" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"wh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "kataphract_dock"; + name = "kataphract docking port controller"; + pixel_x = -8; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"wk" = ( +/obj/machinery/firealarm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"wp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"wI" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/photocopier/faxmachine{ + department = "HMV Supreme"; + req_access = list(114); + req_one_access = null + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"wP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"wQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"wT" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/toxin, +/obj/item/bodybag/cryobag, +/obj/item/reagent_containers/hypospray, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/storage/pill_bottle/dylovene, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"xC" = ( +/obj/structure/table/wood, +/obj/machinery/button/switch/windowtint{ + pixel_x = 5; + pixel_y = -1; + id = "kataoffice" + }, +/turf/simulated/floor/carpet, +/area/kataphract_chapter/office) +"xD" = ( +/obj/structure/table/rack, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"xW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"xX" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"yi" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"yj" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"yk" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"ym" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Cafeteria and Knight's Office"; + req_access = null; + req_one_access = list(113) + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/medical) +"yr" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"yw" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"yy" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/sign/flag/hegemony{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"yD" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"yE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"yK" = ( +/obj/machinery/computer/ship/engines, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"yO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 28; + req_one_access = list(113) + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"yY" = ( +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"zi" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"zm" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"zF" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "kata_ship_port"; + name = "interior access button"; + pixel_x = 7; + pixel_y = 23 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"zI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "kata_ship_pump" + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"zL" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"zT" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"Aa" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"Af" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Ag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"Ap" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Aq" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"Av" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8000.63 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Aw" = ( +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"AD" = ( +/obj/structure/sign/flag/hegemony/right{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/unathi/klax, +/obj/item/clothing/head/helmet/unathi/klax, +/obj/item/clothing/shoes/magboots/hegemony, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"AG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"AP" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + opacity = 0 + }, +/obj/machinery/door/window{ + dir = 2; + name = "Trading Desk"; + req_one_access = list(114,116) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"AY" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kataphract_shuttle_out"; + locked = 1 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "kataphract_shuttle"; + name = "exterior access button"; + pixel_x = 23; + pixel_y = -8 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"AZ" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ + start_pressure = 8000.63 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"Bv" = ( +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav4, +/turf/template_noop, +/area/space) +"BI" = ( +/obj/structure/sign/flag/hegemony/left{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"BN" = ( +/obj/structure/table/wood, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "katatradeshutters"; + name = "Trading Desk Shutters"; + opacity = 0 + }, +/obj/machinery/door/window{ + dir = 2; + name = "Trading Desk"; + req_one_access = list(114,116) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"BV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/passive_gate/supply{ + dir = 4; + target_pressure = 250 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"BX" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"BY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Ci" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + layer = 2.8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Cp" = ( +/obj/structure/flora/pottedplant/random, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Cx" = ( +/obj/effect/shuttle_landmark/nav_kataphract_ship/dockintrepid, +/turf/template_noop, +/area/space) +"CE" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/wrench, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"CH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"CW" = ( +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav1, +/turf/template_noop, +/area/space) +"CY" = ( +/obj/structure/table/reinforced/steel, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"Dj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/binary/passive_gate/supply{ + dir = 8; + target_pressure = 250 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Dl" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kata_ship_in" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"Dm" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = list(113); + name = "detainment gear" + }, +/obj/item/melee/baton/stunrod, +/obj/item/melee/baton/stunrod, +/obj/item/storage/box/zipties, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"Dx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"DE" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar_control/autostart, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"DG" = ( +/obj/machinery/button/remote/blast_door{ + id = "kataqmblast"; + name = "Shutter Control"; + pixel_x = -27; + req_one_access = list(115) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"DX" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/machinery/power/apc/high{ + dir = 4; + name = "north bump"; + pixel_x = 24; + req_access = list(113) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Ea" = ( +/turf/simulated/wall, +/area/kataphract_chapter/starboard_solars_array) +"Ef" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/floor_decal/corner/purple/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"Eg" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"Eh" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"Ek" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Er" = ( +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Et" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"Ew" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/spacecash/c50{ + pixel_y = 5 + }, +/obj/item/spacecash/c200, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"Ez" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Janitorial" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"EG" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"EJ" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"EP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"Fc" = ( +/obj/structure/table/steel, +/obj/structure/flora/pottedplant/random{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"Fd" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Fk" = ( +/obj/structure/sign/flag/hegemony/left{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"FC" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"FJ" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Trading Area" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"FK" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/kataphract_chapter/medical) +"FS" = ( +/obj/structure/janitorialcart/full, +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"FX" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/trading_area) +"Gj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"Gr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/item/tank/hydrogen/shuttle, +/obj/item/pipewrench, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Gx" = ( +/obj/structure/closet/walllocker/medical/secure{ + name = "O- Blood Locker"; + pixel_x = -32; + req_access = list(113) + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/machinery/alarm{ + pixel_y = 25; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"GO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"GP" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Hangar and Pod Bay" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"GW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"GX" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24; + req_one_access = list(24,11,55) + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"GZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"Hr" = ( +/obj/machinery/alarm{ + pixel_y = 25; + req_one_access = list(113) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Ht" = ( +/obj/effect/overmap/visitable/ship/kataphract_ship, +/obj/machinery/hologram/holopad/long_range, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"HK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"HR" = ( +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"HS" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"Ig" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/template_noop, +/area/space) +"In" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + frequency = 1984; + id_tag = "chapter_starboard_vent" + }, +/obj/machinery/airlock_sensor{ + frequency = 1984; + id_tag = "chapter_starboard_sensor"; + pixel_y = 25 + }, +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"Iw" = ( +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav3, +/turf/template_noop, +/area/space) +"Iz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"IA" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"IJ" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + id = "katabridgeshutter"; + name = "Bridge Shutters"; + req_access = list(113); + req_one_access = null + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"Jg" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"Jy" = ( +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/iff_beacon/name_change, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"JD" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"JI" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"JQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"JW" = ( +/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."; + icon = 'icons/obj/vehicles.dmi'; + icon_state = "droppod"; + name = "SUPB Pod" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"JX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Ka" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "kata_ship_port"; + layer = 3.3; + pixel_y = 28; + tag_airpump = "kata_ship_pump"; + tag_chamber_sensor = "kata_ship_sensor"; + tag_exterior_door = "kata_ship_out"; + tag_interior_door = "kata_ship_in" + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"Kd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"Kg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Ko" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapter Trading Area" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Ks" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Kw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"KB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"KP" = ( +/obj/structure/fuel_port/hydrogen{ + pixel_y = -31 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"KQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"KT" = ( +/obj/effect/shuttle_landmark/nav_kataphract_ship/nav5, +/turf/template_noop, +/area/space) +"KX" = ( +/obj/structure/closet/secure_closet/custodial/offship, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"Ll" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Lq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"LD" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/kataphract_shuttle/main_compartment) +"LE" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "KLAXAN ONLY!!" + }, +/obj/item/reagent_containers/food/snacks/koiswaffles, +/obj/item/reagent_containers/food/snacks/koiskebab3, +/obj/item/reagent_containers/food/snacks/koissteak, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"LS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/window/northleft{ + dir = 8 + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"Mk" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"Mv" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"MC" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Hangar and Pod Bay" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"MD" = ( +/obj/machinery/telecomms/allinone/ship, +/turf/simulated/floor/tiled{ + name = "cooled floor"; + temperature = 278 + }, +/area/kataphract_chapter/medical) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"MH" = ( +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"MP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"MT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"Nd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Ne" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/purple/full{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"Nh" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"Ni" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"Nl" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"No" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"Nq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/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/kataphract_chapter/hangar) +"Nv" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + frequency = 1380; + id_tag = "kataphract_shuttle_exterior_sensor"; + pixel_x = -40; + pixel_y = -30 + }, +/turf/unsimulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"NF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"NG" = ( +/obj/machinery/computer/ship/navigation{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"NJ" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/spacecash/c500, +/obj/item/spacecash/c10{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"Oa" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"Oh" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Os" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24; + req_access = list(113) + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Ou" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/office) +"OA" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/commissary) +"OF" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window{ + dir = 1; + name = "Suit Storage"; + req_one_access = list(113) + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"OJ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"OT" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/high{ + dir = 4; + name = "north bump"; + pixel_x = 24; + req_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"OY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/warehouse) +"Pb" = ( +/obj/machinery/access_button/airlock_exterior{ + frequency = 1983; + master_tag = "chapter_port_airlock"; + pixel_x = 21; + pixel_y = -22 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"Pm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"Pr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Ps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"PD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light, +/turf/simulated/floor/airless, +/area/kataphract_chapter/port_solars) +"PG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"PO" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1984; + master_tag = "chapter_starboard_airlock"; + pixel_x = 8; + pixel_y = 23 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/port_solars_array) +"PW" = ( +/obj/effect/shuttle_landmark/kataphract_transport/transit, +/turf/template_noop, +/area/space) +"Qh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"QD" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/sign/flag/hegemony{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"QE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"QF" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"QT" = ( +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/trading_area) +"Re" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "kataphract_shuttle_pump" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"Rj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"Rm" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"Ru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/rack, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/obj/item/shield/energy/hegemony, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"Rv" = ( +/obj/machinery/iv_drip, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"RA" = ( +/obj/machinery/computer/ship/sensors, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"RJ" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"RL" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"RM" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"RR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/stool/bar/padded, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"RY" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "kataphract_shuttle_sensor"; + pixel_y = 7; + pixel_x = 25 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"Sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"Si" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"So" = ( +/obj/machinery/power/portgen/basic, +/obj/item/stack/material/graphite{ + amount = 30 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"Sp" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/adv{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -4 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"Sw" = ( +/obj/structure/table/steel, +/obj/item/device/hand_labeler, +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"Sx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/alarm{ + pixel_y = 25; + req_one_access = list(113) + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Sy" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + frequency = 1983; + id_tag = "chapter_port_vent" + }, +/obj/machinery/airlock_sensor{ + frequency = 1983; + id_tag = "chapter_port_sensor"; + pixel_y = 25 + }, +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/starboard_solars_array) +"Sz" = ( +/obj/structure/sign/flag/hegemony/left{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/office) +"SZ" = ( +/obj/structure/table/rack, +/obj/item/stack/rods, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/wood/full, +/obj/item/storage/box/lights/bulbs, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"Td" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Th" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"Tp" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "militia_ship_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "kata_ship_sensor"; + pixel_y = -23; + pixel_x = 4 + }, +/turf/simulated/floor, +/area/kataphract_chapter/trading_area) +"Tt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Tu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/rack, +/obj/item/melee/hammer/powered, +/obj/item/melee/hammer/powered, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"TH" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"TN" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots/hegemony, +/obj/item/clothing/suit/space/void/kataphract/spec, +/obj/item/clothing/head/helmet/space/void/kataphract/spec, +/obj/item/clothing/mask/breath, +/obj/machinery/door/window{ + name = "Knight Quartermaster"; + req_one_access = list(114,116) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/flag/hegemony/left{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"TP" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "kataphract_shuttle_out"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/kataphract_shuttle/main_compartment) +"TV" = ( +/obj/structure/sign/flag/hegemony/right{ + dir = 4; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "kataphract_shuttle"; + name = "interior access button"; + pixel_x = 23; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Ul" = ( +/obj/machinery/computer/shuttle_control/explore/kataphract_transport{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/main_compartment) +"Uz" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/mechanical, +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/propulsion) +"UE" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"UT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"UU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"Vj" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/kataphract, +/obj/item/clothing/head/helmet/space/void/kataphract, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots/hegemony, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"VG" = ( +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "katashroud"; + name = "Sensor Shroud"; + req_access = list(113); + req_one_access = null; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/bridge) +"VJ" = ( +/obj/machinery/appliance/cooker/stove, +/turf/simulated/floor/lino, +/area/kataphract_chapter/cafeteria) +"VU" = ( +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"VZ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"Wi" = ( +/obj/item/pipewrench, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"Wr" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Ws" = ( +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"WG" = ( +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"WI" = ( +/obj/machinery/door/blast/regular{ + id = "kata_armoury" + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"WR" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/high{ + pixel_y = -24; + req_access = list(113) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"WV" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/bed/stool/padded/red, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) +"WY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9; + icon_state = "warning" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/hangar) +"Xa" = ( +/obj/machinery/vending/wallmed2{ + pixel_x = -29; + req_access = null + }, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/medical) +"Xe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/hangar) +"Xf" = ( +/turf/simulated/wall, +/area/kataphract_chapter/propulsion) +"XI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/shuttle/kataphract_shuttle/engine_compartment) +"XS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/trading_area) +"XZ" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/engineering) +"Yb" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/office) +"Yg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/hangar) +"Yi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/light/small{ + brightness_color = "#FA8282"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/kataphract_chapter/propulsion) +"Yo" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/kataphract_chapter/engineering) +"Ys" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/alarm{ + pixel_x = -28; + dir = 4; + req_one_access = list(113) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/kataphract_shuttle/engine_compartment) +"YE" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/caligae/armor, +/obj/item/clothing/shoes/caligae/armor, +/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, +/turf/simulated/floor/tiled/dark, +/area/kataphract_chapter/commissary) +"YT" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/spacecash/c200, +/obj/item/spacecash/c20{ + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/kataphract_chapter/dorms) +"YX" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/kataphract_shuttle/engine_compartment) +"Ze" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/kataphract_chapter/main_ring) +"Zz" = ( +/obj/item/reagent_containers/food/snacks/meatsteak, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/kataphract_chapter/cafeteria) + +(1,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(2,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(3,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(4,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(5,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(6,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(7,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(8,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(9,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(10,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(11,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(12,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(13,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(14,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +PW +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(15,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(16,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(17,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(18,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(19,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(20,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(21,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(22,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(23,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(24,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(25,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(26,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(27,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(28,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(29,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +au +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(30,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iv +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +au +"} +(31,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(32,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(33,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(34,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(35,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eO +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(36,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +hZ +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(37,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(38,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +jh +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(39,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(40,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(41,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(42,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +jh +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(43,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(44,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(45,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(46,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +CW +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +jh +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(47,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(48,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(49,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(50,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +jh +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(51,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(52,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(53,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(54,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +jh +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(55,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(56,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jc +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(57,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(58,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +hV +jk +hV +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(59,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +hV +jv +mQ +mQ +mQ +mQ +mQ +mQ +mQ +PD +mQ +mQ +mQ +mZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(60,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +jg +jg +jg +jg +jg +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(61,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +jg +jg +jg +jg +jg +cn +eu +eu +eu +fK +fK +fK +fK +fK +fK +fK +fK +fK +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(62,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +jg +cn +cn +cn +cn +cn +cn +ev +eP +fs +fK +fZ +mR +fZ +mR +fZ +mR +ge +fK +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(63,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cw +cM +cM +cM +cn +cf +eQ +cf +fK +ga +ge +ge +ge +ge +ge +hF +fK +hW +jk +iB +iB +iB +iB +kr +ig +ig +ig +ig +ig +ig +ig +ig +ig +ig +ig +ig +ig +kr +pX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(64,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cx +cx +cx +dy +cn +ew +eR +ft +fK +gb +ge +pH +pH +ge +ge +hG +fK +hW +jv +mQ +mZ +hV +iB +kr +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kr +kr +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(65,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cy +cx +cY +dz +cn +cf +eS +fu +fK +gc +gD +hd +hg +pH +ge +hH +fK +hW +hV +hV +jk +Pb +iB +kr +Yg +aa +aa +aa +jF +jF +jF +jF +jF +aa +aa +aa +mH +kr +kr +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(66,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cz +cy +cZ +dA +eV +cC +eT +cC +fM +gd +gE +he +hl +pH +ge +fZ +fK +ou +ou +yw +ji +yw +ou +kr +aa +aa +bH +ae +ae +aF +nu +Ul +ae +ae +Jy +aa +aa +kr +kr +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(67,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cz +cy +da +dB +fy +cf +eU +cf +hI +ge +gF +NJ +YT +pH +ge +kE +fK +ou +ou +Sy +jj +jL +ou +ik +aa +aa +ae +ae +Ap +bn +Fd +bn +fL +ae +ae +aa +aa +kr +kr +kr +kr +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(68,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cy +cx +db +dC +cn +cf +eU +cf +fK +gf +gG +hg +Ew +pH +ge +hH +fK +ou +ou +yw +jm +yw +ou +ik +aa +ae +ae +Ll +uy +Nd +vj +BY +zi +dY +jF +mh +aa +aa +kr +kr +kr +kr +kr +kr +kr +kr +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(69,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cx +cx +cx +dD +cn +cf +eU +cf +fK +gg +ge +pH +pH +ge +ge +hF +fK +lb +Ea +iO +jo +DE +Ea +ia +aa +ae +ae +ae +ae +ME +Af +Tu +gU +ae +ae +ae +ae +aa +aA +So +kr +kr +kr +kr +kr +kr +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(70,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +cn +cA +cn +dw +cn +cn +cg +eU +fv +fK +ge +ge +ge +ge +ge +ge +hG +fK +lb +Ea +iS +Kd +kW +Ea +ia +aa +an +JD +LD +iC +le +Ek +bn +HK +kK +sn +pW +px +aa +eq +Nl +kr +dV +zT +lL +Nh +kr +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(71,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +jg +cn +cB +cn +ea +cn +cn +cf +eU +cf +fK +fZ +mT +fZ +gK +fZ +mU +NG +fK +lb +Ea +iT +Dx +kd +Ea +ia +aa +an +xX +bi +bi +GO +aq +bn +lq +nl +Re +hK +TP +aa +eq +hJ +tk +ff +iw +ff +zm +kr +th +th +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(72,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jg +jg +cn +cn +cn +cn +cn +cn +dd +fk +dd +fK +fK +fK +fK +fK +fK +fK +fK +fK +Ea +Ea +Ea +js +Ea +Ea +ia +aa +an +mc +fU +eo +le +iu +BI +TV +nl +ie +RY +AY +qK +eq +GZ +es +kQ +iz +ff +pi +kr +th +th +jG +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Iw +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(73,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ab +ms +ms +ms +ms +ms +ms +ms +ab +cf +cf +cf +cN +cf +dE +cf +cf +eU +cf +cf +cf +cf +cN +cf +cf +cf +ia +jH +av +IA +iU +jt +ke +km +ia +aa +al +al +al +al +YX +fG +NF +XI +al +al +ae +ae +aa +eq +id +kr +xD +oC +cT +oX +kr +th +th +ng +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(74,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +aG +aN +bb +aN +bb +aN +bb +ab +cg +co +fY +nA +fY +eK +fY +gH +gI +im +fY +nB +fY +nA +fY +ht +fI +ia +sX +is +kF +pg +tb +kf +XZ +ia +Yg +al +rM +Os +Ys +dX +ud +Dj +aD +dZ +al +Nv +aa +aa +eq +dW +kr +kr +kr +kr +kr +kr +th +th +nC +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(75,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aO +bc +aZ +bc +bI +aC +ab +cf +cp +cf +cN +de +dG +ee +ez +cf +fx +ee +gi +cf +cN +cf +cp +cf +ia +ac +JI +gB +iW +ju +kg +kC +ia +aa +al +al +Gr +aM +wQ +oT +mt +KP +al +al +aa +hh +ny +ij +wh +kr +mm +TH +iM +dR +kr +th +th +jC +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(76,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +ay +aP +bd +bq +bB +ay +bg +jr +ch +cq +cD +cP +cP +cP +cP +gh +gk +hY +cP +cP +cP +cP +ho +hu +hE +ia +nD +Gj +pT +iX +rS +kf +kD +ia +aa +pp +kq +rs +Ci +Si +ar +Wr +lJ +al +aa +aa +Kw +jp +jp +yj +kr +aw +aw +ix +yE +kr +th +th +nC +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(77,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aQ +be +br +bC +az +aC +jr +cf +cp +cf +cP +df +dH +ef +eB +ek +fz +fN +io +nj +cP +cf +cp +cf +ia +HS +KB +iG +iY +jy +kh +OF +kY +aa +bP +Tt +nf +aM +vA +ba +lT +Tt +ls +aa +WY +iP +Iz +hJ +hJ +kr +JW +RL +iM +iw +kr +th +th +ng +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(78,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ab +ab +ci +aP +bf +bs +bD +ay +aC +jr +cf +cp +cf +cP +dg +dI +fE +fE +gO +fA +ek +ek +nk +cP +cf +cp +fu +ia +lu +et +iE +iZ +SZ +ki +aB +kY +aa +bP +dM +fV +wp +iN +iN +nf +UT +dM +aa +ax +nd +Iz +hJ +Nl +kr +aw +aw +ix +iw +kr +tM +fw +JX +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(79,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ab +ab +QD +aH +aR +bb +bt +bb +bJ +aC +ab +cj +cp +cf +du +dh +dJ +eh +eC +eZ +fB +fO +ek +gJ +du +cf +cp +fH +ia +am +en +Yo +ja +jA +kj +lV +kY +aa +bP +aa +dM +fV +al +al +fV +dM +aa +aa +ax +nd +Iz +hJ +hJ +lo +ff +ff +Xe +kn +qS +jY +th +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(80,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +FC +bJ +aI +aS +bg +bu +bE +bK +bQ +ab +ds +cF +cf +du +di +dK +ei +eD +eD +eD +fP +ek +nk +du +cf +cp +fI +ia +Wi +BV +if +jb +jB +ki +mJ +ia +aa +bP +aa +aa +dM +al +al +dM +aa +aa +aa +ax +tH +iy +GW +wP +gw +kQ +kQ +Pm +mw +kr +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(81,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aC +aC +aT +bh +bv +bh +bL +bR +ab +cf +cp +cf +du +dj +dK +ei +eD +eD +eD +fP +ek +nm +du +cf +cp +cf +ia +ih +RM +iI +jd +jD +kk +mK +ia +aa +MT +kG +kG +lg +aa +aa +aa +aa +aa +aa +eq +Ps +gj +gj +Ws +kr +Mv +gZ +lk +Eg +kr +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(82,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +hm +aC +aC +aU +ao +IJ +dc +uh +EP +ab +ck +cp +cf +du +dk +dL +ej +eE +fa +fC +fQ +ek +gM +du +cf +cp +cf +ia +tu +WG +iL +je +jE +kl +Qh +ia +aa +mG +aa +aa +bP +aa +aa +aa +aa +aa +rq +eq +dW +hJ +lA +zL +kr +mm +RL +CE +iA +kr +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(83,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aC +aC +aV +RA +No +aC +aC +bT +ab +cl +cp +cf +cP +dl +dK +ek +ek +fb +ek +ek +ek +nm +cP +cf +cp +cf +ia +ia +ia +ia +jf +jK +ia +ia +ia +kN +kN +kN +kN +bk +lI +lI +lI +lI +lI +kN +GP +ru +MC +la +la +la +la +la +kN +eb +kr +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(84,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +ay +aC +aC +aU +UE +aC +aC +aC +bS +cb +cf +cp +cf +cP +dm +dK +ek +eF +fc +eF +fc +eF +nt +cP +cf +cp +cf +mV +cf +ep +iK +jJ +kp +kA +kH +kI +cf +cf +cf +cN +xW +hJ +hJ +kT +hJ +hJ +hJ +hJ +dW +hJ +Ko +kP +kP +mi +Xf +Xf +mI +MP +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(85,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aC +aI +aW +ha +kc +Ht +bM +bU +cc +cC +cr +cf +cQ +cQ +eA +eY +cQ +cQ +cQ +cQ +cQ +cQ +cQ +EG +ni +iq +mW +iq +iq +iQ +ko +ky +kz +kz +kz +kB +kL +rd +Ni +hk +PI +mF +Ag +mF +mF +CH +CH +Nq +JQ +FJ +cI +QE +mp +Xf +Av +MP +ai +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(86,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +ay +aC +aC +aU +CY +aC +aC +aC +bV +ce +cf +cp +cf +gu +dn +dN +fX +eG +fd +fD +DG +gl +gP +cQ +cf +cp +cf +nb +cf +iJ +gt +cf +kp +cf +cf +iJ +cf +kO +cf +cN +hJ +hJ +hJ +vJ +hJ +hJ +hJ +Aq +OT +lK +Ko +kP +kS +mi +Xf +gS +Pr +lS +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(87,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aC +aC +aV +yK +RJ +aC +aC +bW +ab +cl +cp +cf +gu +do +sC +Bi +eH +fe +nv +fS +gm +gQ +cQ +cf +cp +cf +ly +ly +ly +ly +ly +jI +ly +la +la +kP +jP +la +la +la +la +la +ah +ah +ah +la +la +la +la +la +lM +nr +mq +Xf +aE +Pr +ai +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(88,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +hm +aC +aC +aU +wI +kV +lR +uh +wk +ab +cf +cp +cf +gu +dp +Oa +rZ +OA +hc +hv +fT +gn +il +cQ +cf +cp +cf +ly +Gx +Xa +Sp +ly +jM +ly +nF +la +kP +kS +la +la +lm +lp +AP +lW +lG +lG +la +kx +lB +Oh +mO +lN +kS +mi +Xf +jV +Lq +WR +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(89,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aC +aC +aX +bp +bz +bp +bN +bY +ab +cf +cp +cf +cR +cR +cR +WI +WI +cR +cR +cR +mL +cR +cR +cf +cp +fI +ly +yk +Aw +bo +ly +uN +ly +nF +la +kP +kU +kX +la +ln +lp +BN +lX +lp +mo +la +aj +kP +kP +kP +kP +KQ +rv +ue +bF +Ks +Kg +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(90,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +Mk +bI +aI +aY +bg +bu +bE +bO +bQ +ab +cg +cp +cf +cR +pc +dQ +dq +dq +fg +dq +dQ +gp +Vj +cR +cf +cp +cf +nh +gv +Aw +Rv +ly +jM +ly +ly +la +kP +kP +kS +la +ip +lp +pL +lY +md +lp +mx +kP +kP +kP +kP +kP +kS +mi +Xf +Hr +lc +Pr +th +th +iV +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(91,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ab +ab +yy +aJ +aO +bc +bA +bc +bI +aC +ab +cf +cp +cf +cR +cW +dq +dq +dq +fh +TF +Ru +Sf +Vj +cR +cf +Ze +Rj +ym +UU +Aw +bo +ly +jM +ty +FK +la +kP +kP +kS +la +lw +lp +it +lZ +me +lv +my +kZ +lD +kZ +kZ +kZ +lU +mE +Xf +AZ +er +mI +ak +MP +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(92,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +pN +ab +ab +ci +aP +bd +bq +bB +ay +aC +jr +cf +cp +cf +cR +dv +dq +dq +dq +fi +gq +gr +AG +Vj +cR +cf +cp +cf +ed +Aw +Aw +Aa +ly +jM +ly +yY +la +la +Er +kS +la +lr +lp +uA +ma +ml +mo +la +yi +lE +kP +kP +kP +ca +mi +Xf +ns +HR +ns +th +Yi +jl +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(93,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aQ +be +br +bC +az +aC +jr +cf +cp +cf +cR +TN +so +YE +bw +fj +eL +dT +Fk +AD +cR +cf +cp +cf +nh +Aw +Aw +bo +ly +jM +ly +MD +la +la +kP +kS +la +yO +nc +at +mb +QT +gT +la +jZ +mf +kv +XS +XS +mg +mp +Xf +th +th +th +th +th +ng +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(94,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +ay +aP +bf +bs +bD +ay +bg +jr +ch +cs +cD +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +ho +hu +hE +ly +kR +Aw +Aw +ka +jM +ly +ly +la +la +kP +kS +la +lt +la +la +la +la +la +la +GX +lF +DX +ic +bX +kP +mi +Xf +Uz +Sw +no +th +th +nC +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(95,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +az +aR +bb +aN +bb +bJ +aC +ab +cf +cp +cf +cN +dr +dU +ep +cf +cf +cf +ep +cf +cf +cN +cf +cp +cf +ly +mN +Aw +bo +ly +jM +ly +rm +rm +la +ii +kU +ld +lx +la +dO +dO +dO +dO +la +la +la +la +la +yD +yr +VZ +Xf +na +MH +BX +th +th +jC +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(96,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ms +aK +aZ +bc +aZ +bc +VG +bc +ab +cg +ct +fY +nA +fY +cO +fY +fY +gN +fY +fY +nz +fY +nA +fY +hw +fI +ly +mv +nq +wT +ly +uN +ly +rm +rm +la +iR +lh +qW +iR +iR +iR +iR +iR +iR +iR +iR +iR +la +la +lz +kP +mi +Xf +KX +MH +ku +th +th +nC +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(97,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ab +ms +ms +ms +ms +ms +ab +ms +ab +cf +cf +cf +cN +cf +cf +cf +cf +fl +cf +cf +gt +cf +cN +cf +cf +cf +ly +ly +ly +ly +ly +jM +ly +rm +rm +kJ +iR +lh +lf +lj +lO +lh +lO +lj +mA +lh +mA +lh +la +la +lC +kP +mp +Xf +EJ +MH +MH +MH +cm +ng +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(98,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +mY +ks +cv +cu +cu +nw +nw +nw +cu +cu +eW +gC +eW +fW +aL +aL +aL +aL +fW +fW +fW +fW +cH +uR +uR +jN +uR +uR +fm +kJ +iR +lh +lf +lh +OY +lP +lO +lh +mA +lP +mA +lh +la +la +lz +kP +mi +Ez +MH +MH +ku +th +th +cd +bZ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(99,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ab +ab +cv +cv +cu +xC +cS +ap +ad +nw +cf +fl +cf +fW +nx +iF +WV +hp +hx +gx +LE +fW +cH +uR +jq +mD +jU +uR +pf +kJ +iR +bj +qm +mj +mj +mB +mj +mj +mj +mP +vV +mC +la +la +Sx +kP +nM +Xf +Th +vf +Ne +th +th +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(100,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cu +jx +cE +ap +cJ +nw +cf +fl +fu +fW +np +Zz +lQ +hq +hy +hB +VJ +fW +cH +uR +jw +eI +mu +uR +pf +kJ +iR +lh +lh +lh +lO +mk +lO +lh +mA +mk +mA +lh +la +la +lz +kP +mi +Xf +Ef +FS +th +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(101,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cu +cG +cU +nE +cJ +nw +cf +fl +fH +fW +dS +hb +lQ +hr +hz +hB +hL +fW +cH +uR +PO +jQ +kb +uR +pf +kJ +iR +lh +li +ll +lO +lh +pM +mz +mA +lh +mA +lh +la +la +QF +kP +mp +Xf +th +th +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(102,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cu +Sz +cJ +el +vQ +cu +cg +fl +fI +fW +eJ +gV +hj +hq +hA +hB +hM +fW +pf +pf +OJ +jR +OJ +pf +pf +kJ +kJ +kJ +kJ +kJ +jO +jO +jO +jO +jO +kJ +kJ +kJ +kw +kw +op +yr +sB +th +th +th +th +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(103,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cu +jz +cV +ex +eX +nW +gs +fn +gs +gR +gy +gW +hj +hj +hB +hB +hN +fW +pf +pf +In +jS +jW +pf +pf +kJ +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +kw +Cp +kP +kP +kP +Cp +kw +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(104,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cu +Eh +Rm +dx +mM +cu +cf +fo +cf +in +gz +gX +hj +hj +hB +hB +hO +fW +pf +pf +OJ +jT +OJ +pf +pf +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +kw +ir +kP +kP +kP +ib +kw +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(105,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cu +cu +cu +cu +cu +cu +cg +fo +fI +fW +go +gY +hj +hr +hC +hB +hP +fW +hW +hV +hV +jk +jX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +kw +zF +PG +Td +Td +LS +kw +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(106,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cK +cK +cX +Et +cL +eM +ch +fp +cD +fW +np +tw +lQ +hq +hC +hB +hQ +fW +hW +hT +mQ +jn +hV +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +kw +FX +Dl +qt +FX +kw +kw +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(107,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cX +cL +cL +cX +cL +cL +Ou +cf +fq +cf +fW +dS +fF +lQ +hr +hC +hB +hR +fW +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ne +zI +Tp +ne +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(108,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +RR +cL +qA +cL +cL +cu +iD +fr +VU +fW +dP +rN +Jg +hs +hD +gA +hS +fW +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ne +Ka +lH +ne +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(109,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cv +Fc +cX +Yb +Dm +cu +eu +eu +eu +fW +fW +fW +fW +fW +fW +fW +fW +fW +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ne +nn +qd +ne +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(110,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +cv +cv +cv +cv +cv +cv +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(111,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +hV +hT +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +jn +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(112,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +hV +jk +hV +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(113,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jk +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(114,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +jc +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(115,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(116,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +hU +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(117,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(118,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Cx +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(119,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +KT +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(120,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +hU +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(121,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(122,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(123,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(124,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +hU +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Bv +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(125,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(126,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(127,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(128,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +hU +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(129,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +Ig +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(130,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +dF +dF +dF +dF +dF +dF +dF +dF +jc +dF +dF +dF +dF +dF +dF +dF +dF +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(131,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +ec +dF +ec +dF +ec +dF +ec +dF +jc +dF +ec +dF +ec +dF +ec +dF +ec +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(132,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +eg +ey +eN +ey +eN +ey +eN +ey +hU +ey +mS +ey +mS +ey +mS +ey +mX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(133,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +em +dF +em +dF +em +dF +em +dF +jc +dF +em +dF +em +dF +em +dF +em +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(134,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +hX +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(135,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(136,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(137,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(138,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(139,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(140,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(141,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(142,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(143,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(144,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(145,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(146,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(147,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(148,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(149,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(150,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(151,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(152,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(153,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(154,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(155,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(156,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(157,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(158,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(159,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} +(160,1,1) = {" +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +iB +"} diff --git a/code/modules/ghostroles/spawner/human/kataphract.dm b/maps/away/ships/kataphracts/kataphract_ship_ghostroles.dm similarity index 65% rename from code/modules/ghostroles/spawner/human/kataphract.dm rename to maps/away/ships/kataphracts/kataphract_ship_ghostroles.dm index 8ad31ab629c..3cf154cec4b 100644 --- a/code/modules/ghostroles/spawner/human/kataphract.dm +++ b/maps/away/ships/kataphracts/kataphract_ship_ghostroles.dm @@ -1,13 +1,12 @@ /datum/ghostspawner/human/kataphract short_name = "kataphract_hop" name = "Kataphract-Hopeful" - desc = "Display honour in everything you do. Be an excellent person." + desc = "A Zo'saa (squire) of the traveling Kataphract Guild. Display honour in everything you do. Be an excellent person. Listen to the Saa's (Knights). Remember, you serve the Izweski Hegemony." tags = list("External") - enabled = FALSE spawnpoints = list("kataphract") req_perms = null - max_count = 2 + max_count = 3 uses_species_whitelist = FALSE mob_name_prefix = "Zosaa " @@ -26,8 +25,9 @@ /datum/ghostspawner/human/kataphract/klax short_name = "kataphract_hop_klax" name = "Kataphract-Hopeful Klaxan" - desc = "Display honour in everything you do. Be an excellent person. Learn how to be a proper Kataphract by your fellow Unathi." + desc = "A Zo'saa (squire) from the K'lax hive, here to learn what it means to be honourable. Remember, you serve the Izweski Hegemony on behalf of your K'laxan compatriots." max_count = 1 + uses_species_whitelist = TRUE spawnpoints = list("kataphract_klax") @@ -37,9 +37,10 @@ /datum/ghostspawner/human/kataphract/knight short_name = "kataphract_knight" - name = "Kataphract Knight" - desc = "Display honour in everything you do. Be an excellent person. Be a co-leader of the Kataphract Chapter, along with the other knight." - max_count = 2 + name = "Kataphract Knight Captain" + desc = "A Saa (Knight) of the traveling Kataphract Guild. Display honour in everything you do. Be an excellent person. You are the foremost authority on your vessel. Lead by example." + max_count = 1 + uses_species_whitelist = TRUE mob_name_prefix = "Saa " @@ -47,13 +48,13 @@ outfit = /datum/outfit/admin/kataphract/knight - assigned_role = "Kataphract Knight" - special_role = "Kataphract Knight" + assigned_role = "Kataphract Knight Captain" + special_role = "Kataphract Knight Captain" /datum/ghostspawner/human/kataphract/quartermaster short_name = "kataphract_quart" - name = "Kataphract Quartermaster" - desc = "Display honour in everything you do. Be an excellent person. Ensure the Kataphracts are well-stocked and ready for anything." + name = "Kataphract Knight Quartermaster" + desc = "A Saa (Knight) of the traveling Kataphract Guild. Display honour in everything you do. Be an excellent person. Ensure the Kataphracts are well-stocked and ready for anything. Lead by example with the Knight Captain. Remember, you serve the Izweski Hegemony." max_count = 1 mob_name_prefix = "Saa " @@ -62,23 +63,8 @@ outfit = /datum/outfit/admin/kataphract/quartermaster - assigned_role = "Kataphract Quartermaster" - special_role = "Kataphract Quartermaster" - -/datum/ghostspawner/human/kataphract/trader - short_name = "kataphract_trad" - name = "Kataphract Trader" - desc = "Display honour in everything you do. Be an excellent person. Buy and sell items on the market, ensure the Quartermaster has stock. Conduct trade with any visitors." - max_count = 1 - - mob_name_prefix = "Saa " - - spawnpoints = list("kataphract_trader") - - outfit = /datum/outfit/admin/kataphract/trader - - assigned_role = "Kataphract Trader" - special_role = "Kataphract Trader" + assigned_role = "Kataphract Knight Quartermaster" + special_role = "Kataphract Knight Quartermaster" // Kataphract who are not combat ready /datum/outfit/admin/kataphract @@ -86,10 +72,13 @@ uniform = /obj/item/clothing/under/unathi belt = /obj/item/melee/energy/sword/hegemony - shoes = /obj/item/clothing/shoes/caligae/grey + shoes = /obj/item/clothing/shoes/caligae id = /obj/item/card/id/distress/kataphract back = /obj/item/storage/backpack/satchel + + l_ear = /obj/item/device/radio/headset/ship + backpack_contents = list( /obj/item/storage/box/donkpockets = 1 ) @@ -99,7 +88,7 @@ H.w_uniform.color = pick("#1f8c3c", "#ab7318", "#1846ba") /datum/outfit/admin/kataphract/get_id_access() - return list(access_kataphract) + return list(access_kataphract, access_kataphract_trader, access_external_airlocks) /datum/outfit/admin/kataphract/klax @@ -140,16 +129,16 @@ suit = /obj/item/clothing/accessory/poncho/red /datum/outfit/admin/kataphract/knight/get_id_access() - return list(access_kataphract, access_kataphract_knight) + return list(access_kataphract, access_kataphract_knight, access_kataphract_quartermaster, access_kataphract_trader, access_external_airlocks) /datum/outfit/admin/kataphract/quartermaster name = "Kataphract Quartermaster" /datum/outfit/admin/kataphract/quartermaster/get_id_access() - return list(access_kataphract, access_kataphract_quartermaster) + return list(access_kataphract, access_kataphract_quartermaster, access_kataphract_trader, access_external_airlocks) -/datum/outfit/admin/kataphract/trader +/datum/outfit/admin/kataphract/trader // Unused from an old trimmed out ghostrole, but handy to have still name = "Kataphract Trader" /datum/outfit/admin/kataphract/trader/get_id_access() - return list(access_kataphract, access_kataphract_trader) + return list(access_kataphract, access_kataphract_trader, access_external_airlocks) \ No newline at end of file diff --git a/maps/away/ships/militia_ship.dmm b/maps/away/ships/militia_ship.dmm index a1e468eef0d..51c41bb7fed 100644 --- a/maps/away/ships/militia_ship.dmm +++ b/maps/away/ships/militia_ship.dmm @@ -534,7 +534,7 @@ /turf/simulated/floor, /area/ship/militia_ship) "gHC" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor, @@ -1012,7 +1012,7 @@ /turf/simulated/floor/tiled/white, /area/ship/militia_ship) "pfE" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, diff --git a/maps/away/ships/orion_express_ship.dmm b/maps/away/ships/orion_express_ship.dmm index 6568faea057..c6fe34cc773 100644 --- a/maps/away/ships/orion_express_ship.dmm +++ b/maps/away/ships/orion_express_ship.dmm @@ -1601,11 +1601,6 @@ }, /turf/simulated/floor/tiled/dark, /area/ship/orion_express_ship) -"mrO" = ( -/obj/effect/shuttle_landmark/orion_express_shuttle/hangar, -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/ship/orion_express_ship) "mun" = ( /obj/structure/bed/padded, /obj/item/bedsheet/brown, @@ -1742,7 +1737,7 @@ /turf/simulated/floor, /area/ship/orion_express_ship) "nAQ" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor, @@ -2657,6 +2652,7 @@ icon_state = "door_locked"; id_tag = "orion_traveler_n_out" }, +/obj/effect/shuttle_landmark/orion_express_shuttle/hangar, /turf/simulated/floor, /area/ship/orion_express_ship) "tEO" = ( @@ -35021,7 +35017,7 @@ sTK qjk dLy xuX -mrO +soM qBd qBd qBd diff --git a/maps/away/ships/sfa_patrol_ship.dmm b/maps/away/ships/sfa_patrol_ship.dmm index 7de1436d5fc..bcf3de230b2 100644 --- a/maps/away/ships/sfa_patrol_ship.dmm +++ b/maps/away/ships/sfa_patrol_ship.dmm @@ -1635,7 +1635,7 @@ /turf/simulated/floor/tiled/dark, /area/ship/sfa_patrol_ship) "lGR" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, @@ -2606,10 +2606,6 @@ /turf/simulated/floor, /area/ship/sfa_patrol_ship) "vPL" = ( -/obj/structure/fuel_port{ - pixel_x = 10; - pixel_y = 32 - }, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -2617,6 +2613,10 @@ pixel_x = -10; pixel_y = 32 }, +/obj/structure/fuel_port/phoron{ + pixel_x = 10; + pixel_y = 32 + }, /turf/simulated/floor/tiled/dark, /area/ship/sfa_patrol_ship) "vQR" = ( diff --git a/maps/away/ships/tcfl_peacekeeper_ship.dmm b/maps/away/ships/tcfl_peacekeeper_ship.dmm index 3e5c4bc8a07..69badecd492 100644 --- a/maps/away/ships/tcfl_peacekeeper_ship.dmm +++ b/maps/away/ships/tcfl_peacekeeper_ship.dmm @@ -952,7 +952,7 @@ /area/shuttle/tcfl_shuttle) "gmC" = ( /obj/structure/lattice/catwalk/indoor, -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = 29 }, /turf/simulated/floor, @@ -1434,10 +1434,10 @@ /turf/simulated/floor/tiled/dark, /area/ship/tcfl_peacekeeper_ship) "jbc" = ( -/obj/structure/fuel_port{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/ship/tcfl_peacekeeper_ship) "jbQ" = ( @@ -1795,6 +1795,7 @@ /turf/simulated/floor, /area/ship/tcfl_peacekeeper_ship) "kQl" = ( +/obj/effect/floor_decal/industrial/warning, /obj/effect/shuttle_landmark/tcfl_shuttle/hangar, /turf/simulated/floor, /area/ship/tcfl_peacekeeper_ship) @@ -29441,7 +29442,7 @@ dcm dcm dcm wJV -kQl +pPl dfd sWY gMA @@ -30213,7 +30214,7 @@ jyv jRX kJI lej -dfd +kQl sWY yjk hzX diff --git a/maps/away/ships/tirakqi_freighter.dmm b/maps/away/ships/tirakqi_freighter.dmm index 8081b362d27..36eed0b524a 100644 --- a/maps/away/ships/tirakqi_freighter.dmm +++ b/maps/away/ships/tirakqi_freighter.dmm @@ -1304,12 +1304,12 @@ /turf/simulated/floor, /area/ship/tirakqi_freighter) "vwF" = ( -/obj/structure/fuel_port{ - pixel_x = -32 - }, /obj/structure/bed/stool/chair/office/hover/command{ dir = 4 }, +/obj/structure/fuel_port/phoron{ + pixel_x = -32 + }, /turf/simulated/floor/shuttle/black, /area/shuttle/tirakqi_shuttle) "vxE" = ( diff --git a/maps/away/ships/tramp_freighter.dmm b/maps/away/ships/tramp_freighter.dmm index 1dc9d1ca1b5..df90bab0f0b 100644 --- a/maps/away/ships/tramp_freighter.dmm +++ b/maps/away/ships/tramp_freighter.dmm @@ -56,7 +56,7 @@ /turf/simulated/wall/shuttle/space_ship, /area/ship/tramp_freighter) "ajL" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor, @@ -1293,7 +1293,7 @@ /turf/simulated/floor, /area/ship/tramp_freighter) "jIP" = ( -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /turf/simulated/floor/shuttle/black, diff --git a/maps/sccv_horizon/code/sccv_horizon.dm b/maps/sccv_horizon/code/sccv_horizon.dm index 502f55a1b28..54b60aac596 100644 --- a/maps/sccv_horizon/code/sccv_horizon.dm +++ b/maps/sccv_horizon/code/sccv_horizon.dm @@ -114,7 +114,8 @@ /datum/shuttle/autodock/overmap/tcfl_shuttle, /datum/shuttle/autodock/overmap/ee_shuttle, /datum/shuttle/autodock/overmap/fsf_shuttle, - /datum/shuttle/autodock/overmap/freighter_shuttle + /datum/shuttle/autodock/overmap/freighter_shuttle, + /datum/shuttle/autodock/overmap/kataphract_transport ) evac_controller_type = /datum/evacuation_controller/starship diff --git a/maps/sccv_horizon/code/sccv_horizon_overmap.dm b/maps/sccv_horizon/code/sccv_horizon_overmap.dm index 8eafe63a1eb..48430485903 100644 --- a/maps/sccv_horizon/code/sccv_horizon_overmap.dm +++ b/maps/sccv_horizon/code/sccv_horizon_overmap.dm @@ -15,7 +15,8 @@ initial_generic_waypoints = list( "nav_hangar_horizon_1", "nav_hangar_horizon_2", - "nav_hangar_horizon_3", + "nav_dock_horizon_1", + "nav_dock_horizon_2", "deck_one_fore_of_horizon", "deck_one_starboard_side", "deck_one_port_side", @@ -77,9 +78,16 @@ base_turf = /turf/simulated/floor/plating base_area = /area/hangar/auxiliary -/obj/effect/shuttle_landmark/horizon/nav3 +//external landmarks for overmap ships +/obj/effect/shuttle_landmark/horizon/dock1 name = "Starboard Primary Docking Arm" - landmark_tag = "nav_hangar_horizon_3" + landmark_tag = "nav_dock_horizon_1" + base_turf = /turf/simulated/floor/reinforced/airless + base_area = /area/space + +/obj/effect/shuttle_landmark/horizon/dock2 //shares a spot with the TCFL ERT shuttle, but having multiple use cases is fine, ERTs are adminspawned only as well + name = "Port Primary Docking Arm" + landmark_tag = "nav_dock_horizon_2" base_turf = /turf/simulated/floor/reinforced/airless base_area = /area/space diff --git a/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm b/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm index 190be1ae97a..ebc3df4afcc 100644 --- a/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm +++ b/maps/sccv_horizon/sccv_horizon-1_deck_1.dmm @@ -12655,7 +12655,7 @@ /area/hangar/operations) "jXW" = ( /obj/structure/lattice/catwalk/indoor, -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_x = -32 }, /obj/structure/bed/handrail{ @@ -22552,7 +22552,7 @@ /obj/effect/floor_decal/corner/brown/full{ dir = 1 }, -/obj/structure/fuel_port{ +/obj/structure/fuel_port/phoron{ pixel_y = 32 }, /obj/structure/table/rack, diff --git a/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm b/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm index 863aa5fbf02..daa86d52096 100644 --- a/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm +++ b/maps/sccv_horizon/sccv_horizon-3_deck_3.dmm @@ -4949,10 +4949,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/deck_three/primary/starboard) -"iZ" = ( -/obj/effect/shuttle_landmark/horizon/nav3, -/turf/simulated/floor/reinforced/airless, -/area/template_noop) "ja" = ( /obj/machinery/alarm{ dir = 8; @@ -10931,6 +10927,7 @@ name = "Emergency Services Dock"; req_access = list(13) }, +/obj/effect/shuttle_landmark/horizon/dock2, /turf/simulated/floor/plating, /area/hallway/secondary/entry/emergency) "tX" = ( @@ -21221,6 +21218,10 @@ /obj/item/hullbeacon/red, /turf/simulated/open/airless, /area/horizon/exterior) +"MR" = ( +/obj/effect/shuttle_landmark/horizon/dock1, +/turf/simulated/floor/plating, +/area/horizon/hallway/deck_three/primary/starboard/docks) "MS" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/green{ @@ -38699,7 +38700,7 @@ at at at at -iZ +at at at at @@ -39306,7 +39307,7 @@ at at at at -OX +MR OX OX OX