diff --git a/.github/alternate_byond_versions.txt b/.github/alternate_byond_versions.txt index 005803964c..7b50af4688 100644 --- a/.github/alternate_byond_versions.txt +++ b/.github/alternate_byond_versions.txt @@ -5,5 +5,3 @@ # Format is version: map # Example: # 500.1337: runtimestation - -515.1610: lv624 diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 978ede1e65..9636c6c48e 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -66,30 +66,16 @@ jobs: odlint: name: Lint with OpenDream - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 - - name: Get OpenDream Version - run: | - source dependencies.sh - echo "OPENDREAM_VERSION=$OPENDREAM_VERSION" >> $GITHUB_ENV - - name: Restore OpenDream cache - uses: actions/cache@v3 - id: cache-od + - uses: actions/checkout@v4 + - uses: robinraju/release-downloader@v1.9 with: - path: ~/OpenDream - key: ${{ runner.os }}-opendream-${{ env.OPENDREAM_VERSION }} - - name: Download OpenDream - if: steps.cache-od.outputs.cache-hit != 'true' - run: | - bash tools/ci/download_od.sh - - name: Setup OpenDream - if: steps.cache-od.outputs.cache-hit != 'true' - run: | - bash tools/ci/setup_od.sh - - name: Run OpenDream - run: | - bash tools/ci/run_od.sh + repository: "OpenDreamProject/OpenDream" + tag: "latest" + fileName: "DMCompiler_linux-x64.tar.gz" + extract: true + - run: ./DMCompiler_linux-x64/DMCompiler --suppress-unimplemented colonialmarines.dme compile_all_maps: if: "!contains(github.event.head_commit.message, '[ci skip]')" diff --git a/.tgs.yml b/.tgs.yml index ba3fc6b26c..ed84385e3c 100644 --- a/.tgs.yml +++ b/.tgs.yml @@ -1,5 +1,5 @@ version: 1 -byond: "514.1588" +byond: "515.1627" static_files: - name: config - name: data diff --git a/.vscode/settings.json b/.vscode/settings.json index 201562aaf7..c7b218b775 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,7 +9,7 @@ "**/.pnp.*": true }, "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "files.eol": "\n", "files.insertFinalNewline": true, diff --git a/code/__DEFINES/__spacemandmm.dm b/code/__DEFINES/__spacemandmm.dm index b62bbee425..9a044949db 100644 --- a/code/__DEFINES/__spacemandmm.dm +++ b/code/__DEFINES/__spacemandmm.dm @@ -40,5 +40,5 @@ /world/Del() var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL") if (debug_server) - LIBCALL(debug_server, "auxtools_shutdown")() + call_ext(debug_server, "auxtools_shutdown")() . = ..() diff --git a/code/__DEFINES/_macros.dm b/code/__DEFINES/_macros.dm index 31f4b2aca0..07c3eb664e 100644 --- a/code/__DEFINES/_macros.dm +++ b/code/__DEFINES/_macros.dm @@ -8,17 +8,8 @@ #define subtypesof(A) (typesof(A) - A) -#ifdef EXPERIMENT_515_DONT_CACHE_REF /// Takes a datum as input, returns its ref string #define text_ref(datum) ref(datum) -#else -/// Takes a datum as input, returns its ref string, or a cached version of it -/// This allows us to cache \ref creation, which ensures it'll only ever happen once per datum, saving string tree time -/// It is slightly less optimal then a []'d datum, but the cost is massively outweighed by the potential savings -/// It will only work for datums mind, for datum reasons -/// : because of the embedded typecheck -#define text_ref(datum) (isdatum(datum) ? (datum:cached_ref ||= "\ref[datum]") : ("\ref[datum]")) -#endif #define addToListNoDupe(L, index) if(L) L[index] = null; else L = list(index) diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm index b27d178b12..3356782946 100644 --- a/code/__DEFINES/shuttles.dm +++ b/code/__DEFINES/shuttles.dm @@ -109,6 +109,7 @@ #define MOBILE_SHUTTLE_LIFEBOAT_PORT "lifeboat-port" #define MOBILE_SHUTTLE_LIFEBOAT_STARBOARD "lifeboat-starboard" +#define MOBILE_SHUTTLE_LIFEBOAT_COMPACT "lifeboat-compact" #define MOBILE_SHUTTLE_VEHICLE_ELEVATOR "vehicle_elevator" #define DROPSHIP_MIDWAY "dropship_midway" diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm index a4fb6d40be..e2c89df90e 100644 --- a/code/__DEFINES/tgs.dm +++ b/code/__DEFINES/tgs.dm @@ -1,6 +1,6 @@ // tgstation-server DMAPI -#define TGS_DMAPI_VERSION "7.1.1" +#define TGS_DMAPI_VERSION "7.1.2" // All functions and datums outside this document are subject to change with any version and should not be relied on. @@ -312,6 +312,7 @@ var/datum/tgs_chat_embed/structure/embed /datum/tgs_message_content/New(text) + ..() if(!istext(text)) TGS_ERROR_LOG("[/datum/tgs_message_content] created with no text!") text = null @@ -354,6 +355,7 @@ var/proxy_url /datum/tgs_chat_embed/media/New(url) + ..() if(!istext(url)) CRASH("[/datum/tgs_chat_embed/media] created with no url!") @@ -367,6 +369,7 @@ var/proxy_icon_url /datum/tgs_chat_embed/footer/New(text) + ..() if(!istext(text)) CRASH("[/datum/tgs_chat_embed/footer] created with no text!") @@ -383,6 +386,7 @@ var/proxy_icon_url /datum/tgs_chat_embed/provider/author/New(name) + ..() if(!istext(name)) CRASH("[/datum/tgs_chat_embed/provider/author] created with no name!") @@ -395,6 +399,7 @@ var/is_inline /datum/tgs_chat_embed/field/New(name, value) + ..() if(!istext(name)) CRASH("[/datum/tgs_chat_embed/field] created with no name!") @@ -510,7 +515,7 @@ /* The MIT License -Copyright (c) 2017-2023 Jordan Brown +Copyright (c) 2017-2024 Jordan Brown Permission is hereby granted, free of charge, to any person obtaining a copy of this software and diff --git a/code/__DEFINES/weapon_stats.dm b/code/__DEFINES/weapon_stats.dm index 05206a136c..4816fa38e5 100644 --- a/code/__DEFINES/weapon_stats.dm +++ b/code/__DEFINES/weapon_stats.dm @@ -149,7 +149,7 @@ As such, don't expect any values assigned to common firearms to even consider ho #define FIRE_DELAY_TIER_10 2.5 #define FIRE_DELAY_TIER_11 2 #define FIRE_DELAY_TIER_LMG 1.5 -#define FIRE_DELAY_TIER_SG 1.5 +#define FIRE_DELAY_TIER_SG 1.0 #define FIRE_DELAY_TIER_SMG 1.5 #define FIRE_DELAY_TIER_12 1 diff --git a/code/__HELPERS/nameof.dm b/code/__HELPERS/nameof.dm index 7cd5777f46..5a2fd60e71 100644 --- a/code/__HELPERS/nameof.dm +++ b/code/__HELPERS/nameof.dm @@ -8,8 +8,4 @@ /** * NAMEOF that actually works in static definitions because src::type requires src to be defined */ -#if DM_VERSION >= 515 #define NAMEOF_STATIC(datum, X) (nameof(type::##X)) -#else -#define NAMEOF_STATIC(datum, X) (#X || ##datum.##X) -#endif diff --git a/code/_byond_version_compat.dm b/code/_byond_version_compat.dm index 26968f0f83..c41fdc830e 100644 --- a/code/_byond_version_compat.dm +++ b/code/_byond_version_compat.dm @@ -1,56 +1,17 @@ // This file contains defines allowing targeting byond versions newer than the supported //Update this whenever you need to take advantage of more recent byond features -#define MIN_COMPILER_VERSION 514 -#define MIN_COMPILER_BUILD 1588 +#define MIN_COMPILER_VERSION 515 +#define MIN_COMPILER_BUILD 1627 #if (DM_VERSION < MIN_COMPILER_VERSION || DM_BUILD < MIN_COMPILER_BUILD) && !defined(SPACEMAN_DMM) && !defined(OPENDREAM) //Don't forget to update this part -#error Your version of BYOND is too out-of-date to compile this project. Go to https://secure.byond.com/download and update. -#error You need version 514.1588 or higher -#endif - -/* -#if (DM_VERSION == 514 && DM_BUILD > 1575 && DM_BUILD <= 1577) -#error Your version of BYOND currently has a crashing issue that will prevent you from running Dream Daemon test servers. -#error We require developers to test their content, so an inability to test means we cannot allow the compile. -#error Please consider downgrading to 514.1575 or lower. -#endif -*/ - -/* -// Keep savefile compatibilty at minimum supported level -#if DM_VERSION >= 515 -/savefile/byond_version = MIN_COMPILER_VERSION -#endif -*/ - -// 515 split call for external libraries into call_ext -#if DM_VERSION < 515 -#define LIBCALL call -#else -#define LIBCALL call_ext +#error Your version of BYOND is too out-of-date to compile this project. Go to https://www.byond.com/download and update. +#error You need version 515.1627 or higher #endif // So we want to have compile time guarantees these methods exist on local type, unfortunately 515 killed the .proc/procname and .verb/verbname syntax so we have to use nameof() // For the record: GLOBAL_VERB_REF would be useless as verbs can't be global. -#if DM_VERSION < 515 - -/// Call by name proc references, checks if the proc exists on either this type or as a global proc. -#define PROC_REF(X) (.proc/##X) -/// Call by name verb references, checks if the verb exists on either this type or as a global verb. -#define VERB_REF(X) (.verb/##X) - -/// Call by name proc reference, checks if the proc exists on either the given type or as a global proc -#define TYPE_PROC_REF(TYPE, X) (##TYPE.proc/##X) -/// Call by name verb reference, checks if the verb exists on either the given type or as a global verb -#define TYPE_VERB_REF(TYPE, X) (##TYPE.verb/##X) - -/// Call by name proc reference, checks if the proc is an existing global proc -#define GLOBAL_PROC_REF(X) (/proc/##X) - -#else - /// Call by name proc references, checks if the proc exists on either this type or as a global proc. #define PROC_REF(X) (nameof(.proc/##X)) /// Call by name verb references, checks if the verb exists on either this type or as a global verb. @@ -64,16 +25,4 @@ /// Call by name proc reference, checks if the proc is an existing global proc #define GLOBAL_PROC_REF(X) (/proc/##X) -#endif - -#if (DM_VERSION == 515) -/// fcopy will crash on 515 linux if given a non-existant file, instead of returning 0 like on 514 linux or 515 windows -/// var case matches documentation for fcopy. -/world/proc/__fcopy(Src, Dst) - if (istext(Src) && !fexists(Src)) - return 0 - return fcopy(Src, Dst) -#define fcopy(Src, Dst) world.__fcopy(Src, Dst) - -#endif diff --git a/code/_experiments.dm b/code/_experiments.dm index 6e5addb5f9..39c4c45e7e 100644 --- a/code/_experiments.dm +++ b/code/_experiments.dm @@ -3,29 +3,7 @@ // Any flag you see here can be flipped with the `-D` CLI argument. // For example, if you want to enable EXPERIMENT_MY_COOL_FEATURE, compile with -DEXPERIMENT_MY_COOL_FEATURE -// EXPERIMENT_515_QDEL_HARD_REFERENCE -// - Hold a hard reference for qdeleted items, and check ref_count, rather than using refs. Requires 515+. - -// EXPERIMENT_515_DONT_CACHE_REF -// - Avoids `text_ref` caching, aided by improvements to ref() speed in 515. - -#if DM_VERSION < 515 - -// You can't X-macro custom names :( -#ifdef EXPERIMENT_515_QDEL_HARD_REFERENCE -#warn EXPERIMENT_515_QDEL_HARD_REFERENCE is only available on 515+ -#undef EXPERIMENT_515_QDEL_HARD_REFERENCE -#endif - -#ifdef EXPERIMENT_515_DONT_CACHE_REF -#warn EXPERIMENT_515_DONT_CACHE_REF is only available on 515+ -#undef EXPERIMENT_515_DONT_CACHE_REF -#endif - -#elif defined(UNIT_TESTS) - -//#define EXPERIMENT_515_QDEL_HARD_REFERENCE -#define EXPERIMENT_515_DONT_CACHE_REF +#if defined(UNIT_TESTS) #endif diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index bbbb0fc5f5..a499bc769c 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -620,3 +620,27 @@ This maintains a list of ip addresses that are able to bypass topic filtering. protection = CONFIG_ENTRY_HIDDEN|CONFIG_ENTRY_LOCKED /datum/config_entry/flag/auto_profile + +/datum/config_entry/number/client_warn_version + default = null + min_val = 500 + +/datum/config_entry/number/client_warn_build + default = null + min_val = 0 + +/datum/config_entry/string/client_warn_message + default = "Your version of BYOND may have issues or be blocked from accessing this server in the future." + +/datum/config_entry/flag/client_warn_popup + +/datum/config_entry/number/client_error_version + default = null + min_val = 500 + +/datum/config_entry/string/client_error_message + default = "Your version of BYOND is too old, may have issues, and is blocked from accessing this server." + +/datum/config_entry/number/client_error_build + default = null + min_val = 0 diff --git a/code/controllers/mc/globals.dm b/code/controllers/mc/globals.dm index 7b5cc94d36..b5547564b7 100644 --- a/code/controllers/mc/globals.dm +++ b/code/controllers/mc/globals.dm @@ -13,7 +13,10 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars) GLOB = src var/datum/controller/exclude_these = new - gvars_datum_in_built_vars = exclude_these.vars + list(NAMEOF(src, gvars_datum_protected_varlist), NAMEOF(src, gvars_datum_in_built_vars), NAMEOF(src, gvars_datum_init_order)) + // I know this is dumb but the nested vars list hangs a ref to the datum. This fixes that + var/list/controller_vars = exclude_these.vars.Copy() + controller_vars["vars"] = null + gvars_datum_in_built_vars = controller_vars + list(NAMEOF(src, gvars_datum_protected_varlist), NAMEOF(src, gvars_datum_in_built_vars), NAMEOF(src, gvars_datum_init_order)) QDEL_IN(exclude_these, 0) //signal logging isn't ready log_world("[vars.len - gvars_datum_in_built_vars.len] global variables") diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm index e94d6b1aff..37c305d59c 100644 --- a/code/controllers/subsystem/garbage.dm +++ b/code/controllers/subsystem/garbage.dm @@ -139,13 +139,6 @@ SUBSYSTEM_DEF(garbage) pass_counts[i] = 0 fail_counts[i] = 0 -#ifdef EXPERIMENT_515_QDEL_HARD_REFERENCE -// 1 from the hard reference in the queue, and 1 from the variable used before this -#define IS_DELETED(datum, _) (refcount(##datum) == 2) -#else -#define IS_DELETED(datum, gcd_at_time) (isnull(##datum) || ##datum.gc_destroyed != gcd_at_time) -#endif - /datum/controller/subsystem/garbage/proc/HandleQueue(level = GC_QUEUE_FILTER) if (level == GC_QUEUE_FILTER) delslasttick = 0 @@ -162,7 +155,7 @@ SUBSYSTEM_DEF(garbage) lastlevel = level - //We do this rather then for(var/refID in queue) because that sort of for loop copies the whole list. + //We do this rather then for(var/list/ref_info in queue) because that sort of for loop copies the whole list. //Normally this isn't expensive, but the gc queue can grow to 40k items, and that gets costly/causes overrun. for (var/i in 1 to length(queue)) var/list/L = queue[i] @@ -173,21 +166,15 @@ SUBSYSTEM_DEF(garbage) continue var/queued_at_time = L[GC_QUEUE_ITEM_QUEUE_TIME] - if(queued_at_time > cut_off_time) break // Everything else is newer, skip them count++ -#ifdef EXPERIMENT_515_QDEL_HARD_REFERENCE var/datum/D = L[GC_QUEUE_ITEM_REF] -#else - var/GCd_at_time = L[GC_QUEUE_ITEM_GCD_DESTROYED] - var/refID = L[GC_QUEUE_ITEM_REF] - var/datum/D - D = locate(refID) -#endif - - if (IS_DELETED(D, GCd_at_time)) // So if something else coincidently gets the same ref, it's not deleted by mistake + + // 1 from the hard reference in the queue, and 1 from the variable used before this + // If that's all we've got, send er off + if (refcount(D) == 2) ++gcedlasttick ++totalgcs pass_counts[level]++ @@ -221,11 +208,7 @@ SUBSYSTEM_DEF(garbage) var/type = D.type var/datum/qdel_item/I = items[type] - var/message = "## TESTING: GC: -- [text_ref(D)] | [type] was unable to be GC'd --" -#if DM_VERSION >= 515 - message = "[message] (ref count of [refcount(D)])" -#endif - log_world(message) + log_world("## TESTING: GC: -- [text_ref(D)] | [type] was unable to be GC'd -- (ref count of [refcount(D)])") #ifdef TESTING for(var/c in GLOB.admins) //Using testing() here would fill the logs with ADMIN_VV garbage @@ -261,8 +244,6 @@ SUBSYSTEM_DEF(garbage) queue.Cut(1,count+1) count = 0 -#undef IS_DELETED - /datum/controller/subsystem/garbage/proc/Queue(datum/D, level = GC_QUEUE_FILTER) if (isnull(D)) return @@ -271,20 +252,11 @@ SUBSYSTEM_DEF(garbage) return var/queue_time = world.time -#ifdef EXPERIMENT_515_QDEL_HARD_REFERENCE - var/refid = D -#else - var/refid = text_ref(D) -#endif - - var/static/uid = 0 - uid = WRAP(uid+1, 1, SHORT_REAL_LIMIT - 1) if (D.gc_destroyed <= 0) - D.gc_destroyed = uid + D.gc_destroyed = queue_time var/list/queue = queues[level] - - queue[++queue.len] = list(queue_time, refid, D.gc_destroyed) // not += for byond reasons + queue[++queue.len] = list(queue_time, D, D.gc_destroyed) // not += for byond reasons //this is mainly to separate things profile wise. /datum/controller/subsystem/garbage/proc/HardDelete(datum/D, force) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 7fe2b56eba..e06e1ac458 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -8,6 +8,10 @@ SUBSYSTEM_DEF(ticker) var/current_state = GAME_STATE_STARTUP //State of current round used by process() var/force_ending = FALSE //Round was ended by admin intervention + + /// If TRUE, there is no lobby phase, the game starts immediately. + var/start_immediately = FALSE + var/bypass_checks = FALSE //Bypass mode init checks var/setup_failed = FALSE //If the setup has failed at any point var/setup_started = FALSE @@ -79,6 +83,10 @@ SUBSYSTEM_DEF(ticker) var/mob/new_player/player = i if(player.ready) // TODO: port this == PLAYER_READY_TO_PLAY) ++totalPlayersReady + + if(start_immediately) + time_left = 0 + if(time_left < 0 || delay_start) return diff --git a/code/datums/datum.dm b/code/datums/datum.dm index 7d497785a7..3e317ffd60 100644 --- a/code/datums/datum.dm +++ b/code/datums/datum.dm @@ -54,13 +54,6 @@ */ var/list/cooldowns -#ifndef EXPERIMENT_515_DONT_CACHE_REF - /// A cached version of our \ref - /// The brunt of \ref costs are in creating entries in the string tree (a tree of immutable strings) - /// This avoids doing that more then once per datum by ensuring ref strings always have a reference to them after they're first pulled - var/cached_ref -#endif - /// A weak reference to another datum var/datum/weakref/weak_reference diff --git a/code/datums/medal_awards.dm b/code/datums/medal_awards.dm index 54af48fd33..fe4e7e3c0e 100644 --- a/code/datums/medal_awards.dm +++ b/code/datums/medal_awards.dm @@ -3,6 +3,8 @@ #define MARINE_VALOR_MEDAL "medal of valor" #define MARINE_HEROISM_MEDAL "medal of exceptional heroism" +#define ALL_MARINE_MEDALS list(MARINE_CONDUCT_MEDAL, MARINE_BRONZE_HEART_MEDAL, MARINE_VALOR_MEDAL, MARINE_HEROISM_MEDAL) + #define XENO_SLAUGHTER_MEDAL "royal jelly of slaughter" #define XENO_RESILIENCE_MEDAL "royal jelly of resilience" #define XENO_SABOTAGE_MEDAL "royal jelly of sabotage" @@ -35,7 +37,6 @@ GLOBAL_LIST_EMPTY(jelly_awards) giver_mob = list() giver_ckey = list() - /proc/give_medal_award(medal_location, as_admin = FALSE) if(as_admin && !check_rights(R_ADMIN)) as_admin = FALSE @@ -45,14 +46,22 @@ GLOBAL_LIST_EMPTY(jelly_awards) var/list/recipient_ranks = list() for(var/datum/data/record/record in GLOB.data_core.general) var/recipient_name = record.fields["name"] + if(usr.real_name == recipient_name && !as_admin) + continue recipient_ranks[recipient_name] = record.fields["rank"] possible_recipients += recipient_name + var/chosen_recipient = tgui_input_list(usr, "Who do you want to award a medal to?", "Medal Recipient", possible_recipients) if(!chosen_recipient) return FALSE + var/list/choosable_medals = list(MARINE_CONDUCT_MEDAL) + + if(as_admin) + choosable_medals = ALL_MARINE_MEDALS + // Pick a medal - var/medal_type = tgui_input_list(usr, "What type of medal do you want to award?", "Medal Type", list(MARINE_CONDUCT_MEDAL, MARINE_BRONZE_HEART_MEDAL, MARINE_VALOR_MEDAL, MARINE_HEROISM_MEDAL)) + var/medal_type = tgui_input_list(usr, "What type of medal do you want to award?", "Medal Type", choosable_medals) if(!medal_type) return FALSE @@ -165,7 +174,7 @@ GLOBAL_LIST_EMPTY(jelly_awards) to_chat(user, SPAN_WARNING("You must have an authenticated ID Card to award medals.")) return - if(!((card.paygrade in GLOB.co_paygrades) || (card.paygrade in GLOB.highcom_paygrades))) + if(!((card.paygrade in GLOB.co_paygrades) || (card.paygrade in GLOB.platco_paygrades) || (card.paygrade in GLOB.highcom_paygrades))) to_chat(user, SPAN_WARNING("Only a Senior Officer can award medals!")) return @@ -179,6 +188,14 @@ GLOBAL_LIST_EMPTY(jelly_awards) user.visible_message("ERROR: ID card not registered for [user.real_name] in USCM registry. Potential medal fraud detected.") return + if(!(FACTION_USCM in user.faction_group)) + to_chat(user, SPAN_WARNING("Medals only available for USCM personnel.")) + return + + if(length(GLOB.medal_awards)) + to_chat(user, SPAN_WARNING("Only one medal may be awarded per operation.")) + return + if(give_medal_award(get_turf(printer))) user.visible_message(SPAN_NOTICE("[printer] prints a medal.")) diff --git a/code/datums/paygrades/paygrade.dm b/code/datums/paygrades/paygrade.dm index bb0a3aa84b..968956539d 100644 --- a/code/datums/paygrades/paygrade.dm +++ b/code/datums/paygrades/paygrade.dm @@ -51,7 +51,13 @@ GLOBAL_LIST_INIT(co_paygrades, list( "MO6E", "MO6C", "MO5", - "MO4" + "MO4", +)) + +GLOBAL_LIST_INIT(platco_paygrades, list( + "MO3", + "MO2", + "MO1", )) GLOBAL_LIST_INIT(wy_paygrades, list( diff --git a/code/datums/vehicles.dm b/code/datums/vehicles.dm index ac71cc1fc7..4c74ece75d 100644 --- a/code/datums/vehicles.dm +++ b/code/datums/vehicles.dm @@ -30,6 +30,10 @@ name = "Movie APC" interior_id = "apc_movie" +/datum/map_template/interior/arc + name = "ARC" + interior_id = "arc" + /datum/map_template/interior/fancy_locker name = "Fancy Locker" interior_id = "fancylocker" diff --git a/code/game/area/golden_arrow.dm b/code/game/area/golden_arrow.dm index 7c35640d06..20d67e3bad 100644 --- a/code/game/area/golden_arrow.dm +++ b/code/game/area/golden_arrow.dm @@ -54,6 +54,10 @@ name = "\improper Platoon Sergeant Office" icon_state = "alpha" +/area/golden_arrow/shared_office + name = "\improper Shared Office" + icon_state = "alpha" + /area/golden_arrow/squad_one name = "\improper Squad One Prep" icon_state = "charlie" @@ -69,3 +73,11 @@ /area/golden_arrow/firingrange name = "\improper Firing Range" icon_state = "firingrange" + +/area/golden_arrow/platoonprep + name = "\improper Platoon Prep" + icon_state = "bravo" + +/area/golden_arrow/platoonarmory + name = "\improper Platoon Armory" + icon_state = "alpha" diff --git a/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm b/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm index b1fe23d236..9fe36dec66 100644 --- a/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm +++ b/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm @@ -77,6 +77,9 @@ /datum/game_mode/colonialmarines/ai/get_roles_list() return GLOB.platoon_to_role_list[MAIN_SHIP_PLATOON] +/datum/game_mode/colonialmarines/ai/check_queen_status() + return + GLOBAL_LIST_INIT(platoon_to_jobs, list(/datum/squad/marine/alpha = list(/datum/job/command/bridge/ai = JOB_SO,\ /datum/job/marine/leader/ai = JOB_SQUAD_LEADER,\ /datum/job/marine/medic/ai = JOB_SQUAD_MEDIC,\ diff --git a/code/game/machinery/ARES/ARES_procs.dm b/code/game/machinery/ARES/ARES_procs.dm index 831f76e489..64a30a230d 100644 --- a/code/game/machinery/ARES/ARES_procs.dm +++ b/code/game/machinery/ARES/ARES_procs.dm @@ -174,6 +174,8 @@ GLOBAL_LIST_INIT(maintenance_categories, list( return ARES_ACCESS_HIGH if(card.paygrade in GLOB.co_paygrades) return ARES_ACCESS_CO + if(card.paygrade in GLOB.platco_paygrades) + return ARES_ACCESS_COMMAND if(ACCESS_MARINE_SENIOR in card.access) return ARES_ACCESS_SENIOR if(ACCESS_WY_GENERAL in card.access) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 6ccb0b5b18..76ff409669 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -79,7 +79,7 @@ recipe.resources[material] = I.matter[material] //Doesn't take more if it's just a sheet or something. Get what you put in. else recipe.resources[material] = round(I.matter[material]*1.25) // More expensive to produce than they are to recycle. - qdel(I) + QDEL_NULL(I) //Create parts for lathe. for(var/component in components) diff --git a/code/game/machinery/doors/brig_system.dm b/code/game/machinery/doors/brig_system.dm index 58c3282abe..f36e5b72c2 100644 --- a/code/game/machinery/doors/brig_system.dm +++ b/code/game/machinery/doors/brig_system.dm @@ -279,7 +279,7 @@ var/obj/item/card/id/id_card = human.get_idcard() if (id_card) - if ((id_card.paygrade in GLOB.co_paygrades) || (id_card.paygrade in GLOB.highcom_paygrades) || (id_card.paygrade == "PvI")) + if ((id_card.paygrade in GLOB.co_paygrades) || ((id_card.paygrade in GLOB.platco_paygrades)) || (id_card.paygrade in GLOB.highcom_paygrades) || (id_card.paygrade == "PvI")) return TRUE return FALSE diff --git a/code/game/objects/items/devices/personal_data_transmitter.dm b/code/game/objects/items/devices/personal_data_transmitter.dm index 6e8aa001ca..2e92b3f0b0 100644 --- a/code/game/objects/items/devices/personal_data_transmitter.dm +++ b/code/game/objects/items/devices/personal_data_transmitter.dm @@ -139,6 +139,7 @@ /obj/item/device/pdt_locator_tube/Destroy() linked_bracelet = null + QDEL_NULL(battery) return ..() /obj/item/clothing/accessory/pdt_bracelet diff --git a/code/game/objects/items/props/helmetgarb.dm b/code/game/objects/items/props/helmetgarb.dm index 35558bf019..ce63aaa13a 100644 --- a/code/game/objects/items/props/helmetgarb.dm +++ b/code/game/objects/items/props/helmetgarb.dm @@ -496,6 +496,30 @@ desc = "The USCM had its funding pulled for these when it became apparent that not every deployed enlisted was wearing a helmet 24/7; much to the bafflement of UA High Command." icon_state = "helmet_gasmask" +/obj/item/prop/helmetgarb/helmet_gasmask/on_enter_storage(obj/item/storage/internal/helmet_internal_inventory) + ..() + if(!istype(helmet_internal_inventory)) + return + var/obj/item/clothing/head/helmet/helmet_item = helmet_internal_inventory.master_object + + if(!istype(helmet_item)) + return + + helmet_item.flags_inventory |= BLOCKGASEFFECT + helmet_item.flags_inv_hide |= HIDEFACE + +/obj/item/prop/helmetgarb/helmet_gasmask/on_exit_storage(obj/item/storage/internal/helmet_internal_inventory) + ..() + if(!istype(helmet_internal_inventory)) + return + var/obj/item/clothing/head/helmet/helmet_item = helmet_internal_inventory.master_object + + if(!istype(helmet_item)) + return + + helmet_item.flags_inventory &= ~(BLOCKGASEFFECT) + helmet_item.flags_inv_hide &= ~(HIDEFACE) + /obj/item/prop/helmetgarb/trimmed_wire name = "trimmed barbed wire" desc = "It is a length of barbed wire that's had most of the sharp points filed down so that it is safe to handle." diff --git a/code/game/objects/items/reagent_containers/food/snacks.dm b/code/game/objects/items/reagent_containers/food/snacks.dm index 8aae33b5f2..d27d6adb09 100644 --- a/code/game/objects/items/reagent_containers/food/snacks.dm +++ b/code/game/objects/items/reagent_containers/food/snacks.dm @@ -2760,6 +2760,10 @@ var/list/boxes = list() // If the boxes are stacked, they come here var/boxtag = "" +/obj/item/pizzabox/Destroy(force) + QDEL_NULL(pizza) + return ..() + /obj/item/pizzabox/update_icon() overlays = list() diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index c798acd047..693acd61ef 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -611,6 +611,38 @@ /obj/item/storage/belt/marine/smartgunner/standard has_gamemode_skin = FALSE +/obj/item/storage/belt/marine/smartgunner/upp + name = "\improper Type 90 pattern machinegunner belt" + desc = "Recently adopted by UPP military, this belt allows machinegunners to carry more ammo boxes into battle. It also found use with SOF breachers using Type 23 shotguns." + icon_state = "upp_machinegun" + item_state = "upp_machinegun" + storage_slots = 7 + bypass_w_limit = list( + /obj/item/ammo_magazine/pkp, + ) + can_hold = list( + /obj/item/attachable/bayonet, + /obj/item/device/flashlight/flare, + /obj/item/ammo_magazine/pkp, + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/pistol, + /obj/item/ammo_magazine/revolver, + /obj/item/ammo_magazine/sniper, + /obj/item/ammo_magazine/handful, + /obj/item/explosive/grenade, + /obj/item/explosive/mine, + /obj/item/reagent_container/food/snacks, + ) + + has_gamemode_skin = FALSE + item_state_slots = list( + WEAR_L_HAND = "upp_belt", + WEAR_R_HAND = "upp_belt") + +/obj/item/storage/belt/marine/smartgunner/upp/fill_preset_inventory() + return + /obj/item/storage/belt/marine/quackers name = "Mr. Quackers" desc = "What are we going to do today, Mr. Quackers?" @@ -1721,6 +1753,26 @@ new /obj/item/ammo_magazine/smartgun(src) new /obj/item/ammo_magazine/smartgun(src) +/obj/item/storage/belt/gun/smartgunner/upp + name = "\improper Type 92 pattern machinegunner sidearm rig" + desc = "Type 92 is an experimental ammo-carrying rig issued to UPP machinegunners which combines a sidearm holster with box-shaped pouches for limited storage." + icon_state = "upp_machinegun_pistol" + storage_slots = 7 + can_hold = list( + /obj/item/weapon/gun/pistol/t73, + /obj/item/ammo_magazine/pistol/t73, + /obj/item/ammo_magazine/pistol/t73_impact, + /obj/item/weapon/gun/pistol/np92, + /obj/item/ammo_magazine/pistol/np92, + /obj/item/weapon/gun/revolver/upp, + /obj/item/ammo_magazine/revolver/upp, + /obj/item/ammo_magazine/pkp, + ) + has_gamemode_skin = FALSE + item_state_slots = list( + WEAR_L_HAND = "upp_belt", + WEAR_R_HAND = "upp_belt") + /obj/item/storage/belt/gun/mortarbelt name="\improper M276 pattern mortar operator belt" desc="An M276 load-bearing rig configured to carry ammunition for the M402 mortar, along with a sidearm." diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index fa1c08b410..ae476b0f73 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -143,8 +143,8 @@ new /obj/item/ammo_magazine/smartgun(src) new /obj/item/ammo_magazine/smartgun(src) new /obj/item/ammo_magazine/smartgun(src) - new /obj/item/storage/belt/marine/smartgunner(src) - new /obj/item/storage/belt/gun/smartgunner(src) + new /obj/item/ammo_magazine/smartgun(src) + new /obj/item/ammo_magazine/smartgun(src) new /obj/item/clothing/glasses/night/m56_goggles/no_nightvision(src) /obj/structure/closet/secure_closet/smartgunner_forecon @@ -161,8 +161,8 @@ new /obj/item/ammo_magazine/smartgun(src) new /obj/item/ammo_magazine/smartgun(src) new /obj/item/ammo_magazine/smartgun(src) - new /obj/item/storage/belt/marine/smartgunner/standard(src) - new /obj/item/storage/belt/gun/smartgunner/standard(src) + new /obj/item/ammo_magazine/smartgun(src) + new /obj/item/ammo_magazine/smartgun(src) new /obj/item/clothing/glasses/night/m56_goggles/no_nightvision(src) /obj/structure/closet/cryo/Initialize() diff --git a/code/game/objects/structures/gun_rack.dm b/code/game/objects/structures/gun_rack.dm index 400002fa35..0a3e668444 100644 --- a/code/game/objects/structures/gun_rack.dm +++ b/code/game/objects/structures/gun_rack.dm @@ -5,6 +5,7 @@ icon_state = "m41a" density = TRUE var/allowed_type + var/populate_type var/max_stored = 5 var/initial_stored = 5 @@ -17,7 +18,7 @@ if(initial_stored) var/i = 0 while(i < initial_stored) - contents += new allowed_type(src) + contents += new populate_type(src) i++ update_icon() @@ -47,6 +48,10 @@ /obj/structure/gun_rack/m41 allowed_type = /obj/item/weapon/gun/rifle/m41aMK1 + populate_type = /obj/item/weapon/gun/rifle/m41aMK1 + +/obj/structure/gun_rack/m41/unloaded + populate_type = /obj/item/weapon/gun/rifle/m41aMK1/unloaded /obj/structure/gun_rack/type71 icon_state = "type71" @@ -54,6 +59,10 @@ max_stored = 6 initial_stored = 6 allowed_type = /obj/item/weapon/gun/rifle/type71 + populate_type = /obj/item/weapon/gun/rifle/type71 + +/obj/structure/gun_rack/type71/unloaded + populate_type = /obj/item/weapon/gun/rifle/type71/unloaded /obj/structure/gun_rack/apc name = "APC ammo compartment" diff --git a/code/game/objects/structures/pipes/pipes.dm b/code/game/objects/structures/pipes/pipes.dm index 8459b9c100..35b3ba4711 100644 --- a/code/game/objects/structures/pipes/pipes.dm +++ b/code/game/objects/structures/pipes/pipes.dm @@ -53,6 +53,7 @@ for(var/obj/structure/pipes/P in connected_to) P.remove_connection(src) + connected_to.Cut() GLOB.mainship_pipes -= src @@ -97,6 +98,7 @@ /obj/structure/pipes/proc/remove_connection(obj/structure/pipes/P) connected_to -= P + P.connected_to -= src /obj/structure/pipes/proc/get_connection(direction) var/obj/structure/pipes/best_connected_pipe = null diff --git a/code/game/world.dm b/code/game/world.dm index e67fca2856..77d48d3593 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -16,7 +16,7 @@ var/list/reboot_sfx = file2list("config/reboot_sfx.txt") /world/New() var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL") if (debug_server) - LIBCALL(debug_server, "auxtools_init")() + call_ext(debug_server, "auxtools_init")() enable_debugging() internal_tick_usage = 0.2 * world.tick_lag hub_password = "kMZy3U5jJHSiBQjr" @@ -381,13 +381,14 @@ var/datum/BSQL_Connection/connection else CRASH("unsupported platform") - var/init = LIBCALL(lib, "init")() + var/init = call_ext(lib, "init")() if("0" != init) CRASH("[lib] init error: [init]") /world/proc/HandleTestRun() // Wait for the game ticker to initialize Master.sleep_offline_after_initializations = FALSE + SSticker.start_immediately = TRUE UNTIL(SSticker.initialized) //trigger things to run the whole process diff --git a/code/global.dm b/code/global.dm index dca2fe7701..3ed9249ca6 100644 --- a/code/global.dm +++ b/code/global.dm @@ -1,7 +1,7 @@ //This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:31 #define MAIN_SHIP_NAME SSmapping.get_main_ship_name() #define MAIN_SHIP_DEFAULT_NAME "USS Golden Arrow" -#define SHIP_MAP_NAMES list("USS Almayer", "USS Golden Arrow", "SSV Chapaev", "USS Rover") +#define SHIP_MAP_NAMES list("USS Almayer", "USS Golden Arrow", "USS Golden Arrow (Classic)", "SSV Chapaev", "USS Rover") #define MAIN_SHIP_PLATOON text2path(SSmapping.get_main_ship_platoon()) #define MAIN_SHIP_DEFAULT_PLATOON "/datum/squad/marine/alpha" @@ -120,7 +120,7 @@ var/list/AAlarmWireColorToIndex //Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam #define MAX_MESSAGE_LEN 1024 -#define MAX_EMOTE_LEN 256 +#define MAX_EMOTE_LEN 1024 #define MAX_PAPER_MESSAGE_LEN 3072 #define MAX_BOOK_MESSAGE_LEN 9216 #define MAX_NAME_LEN 28 diff --git a/code/modules/admin/view_variables/modify_variables.dm b/code/modules/admin/view_variables/modify_variables.dm index 5b2ec3f0e5..e9595baf22 100644 --- a/code/modules/admin/view_variables/modify_variables.dm +++ b/code/modules/admin/view_variables/modify_variables.dm @@ -245,11 +245,15 @@ GLOBAL_PROTECT(VVpixelmovement) if("DELETE FROM LIST") L.Cut(index, index+1) + + var/temp_type = O.type + if (O) if (O.vv_edit_var(objectvar, L)) to_chat(src, "Your edit was rejected by the object.", confidential = TRUE) return - log_world("### ListVarEdit by [src]: [O.type] [objectvar]: REMOVED=[html_encode("[original_var]")]") + + log_world("### ListVarEdit by [src]: [temp_type] [objectvar]: REMOVED=[html_encode("[original_var]")]") log_admin("[key_name(src)] modified [original_name]'s [objectvar]: REMOVED=[original_var]") message_admins("[key_name_admin(src)] modified [original_name]'s [objectvar]: REMOVED=[original_var]") return diff --git a/code/modules/admin/view_variables/reference_tracking.dm b/code/modules/admin/view_variables/reference_tracking.dm index f6f2b86f31..35f464354c 100644 --- a/code/modules/admin/view_variables/reference_tracking.dm +++ b/code/modules/admin/view_variables/reference_tracking.dm @@ -28,9 +28,7 @@ var/starting_time = world.time -#if DM_VERSION >= 515 log_reftracker("Refcount for [type]: [refcount(src)]") -#endif //Time to search the whole game for our ref DoSearchVar(GLOB, "GLOB", search_time = starting_time) //globals diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index c3a0c52d0c..5dc0600287 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -5,8 +5,6 @@ #define UPLOAD_LIMIT 10485760 //Restricts client uploads to the server to 10MB //Boosted this thing. What's the worst that can happen? #define MIN_CLIENT_VERSION 0 //Just an ambiguously low version for now, I don't want to suddenly stop people playing. //I would just like the code ready should it ever need to be used. -#define GOOD_BYOND_MAJOR 513 -#define GOOD_BYOND_MINOR 1500 GLOBAL_LIST_INIT(blacklisted_builds, list( "1407" = "bug preventing client display overrides from working leads to clients being able to see things/mobs they shouldn't be able to see", @@ -358,14 +356,34 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( INVOKE_ASYNC(src, /client/proc/set_macros) // Version check below if we ever need to start checking against BYOND versions again. - - /*if((byond_version < world.byond_version) || ((byond_version == world.byond_version) && (byond_build < world.byond_build))) - src << "Your version of Byond (v[byond_version].[byond_build]) differs from the server (v[world.byond_version].[world.byond_build]). You may experience graphical glitches, crashes, or other errors. You will be disconnected until your version matches or exceeds the server version.
\ - Direct Download (Windows Installer): http://www.byond.com/download/build/[world.byond_version]/[world.byond_version].[world.byond_build]_byond.exe
\ - Other versions (search for [world.byond_build] or higher): http://www.byond.com/download/build/[world.byond_version]
" + var/breaking_version = CONFIG_GET(number/client_error_version) + var/breaking_build = CONFIG_GET(number/client_error_build) + var/warn_version = CONFIG_GET(number/client_warn_version) + var/warn_build = CONFIG_GET(number/client_warn_build) + + if (byond_version < breaking_version || (byond_version == breaking_version && byond_build < breaking_build)) //Out of date client. + to_chat_immediate(src, SPAN_DANGER("Your version of BYOND is too old:")) + to_chat_immediate(src, CONFIG_GET(string/client_error_message)) + to_chat_immediate(src, "Your version: [byond_version].[byond_build]") + to_chat_immediate(src, "Required version: [breaking_version].[breaking_build] or later") + to_chat_immediate(src, "Visit BYOND's website to get the latest version of BYOND.") qdel(src) - return*/ - //hardcode for now + return + + if (byond_version < warn_version || (byond_version == warn_version && byond_build < warn_build)) //We have words for this client. + if(CONFIG_GET(flag/client_warn_popup)) + var/msg = "Your version of BYOND may be getting out of date:
" + msg += CONFIG_GET(string/client_warn_message) + "

" + msg += "Your version: [byond_version].[byond_build]
" + msg += "Required version to remove this message: [warn_version].[warn_build] or later
" + msg += "Visit BYOND's website to get the latest version of BYOND.
" + src << browse(msg, "window=warning_popup") + else + to_chat(src, SPAN_DANGER("Your version of BYOND may be getting out of date:")) + to_chat(src, CONFIG_GET(string/client_warn_message)) + to_chat(src, "Your version: [byond_version].[byond_build]") + to_chat(src, "Required version to remove this message: [warn_version].[warn_build] or later") + to_chat(src, "Visit BYOND's website to get the latest version of BYOND.") if (num2text(byond_build) in GLOB.blacklisted_builds) log_access("Failed login: [key] - blacklisted byond build ([byond_version].[byond_build])") @@ -376,10 +394,6 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( qdel(src) return - //do this check after the blacklist check to avoid confusion - if((byond_version < GOOD_BYOND_MAJOR) || ((byond_version == GOOD_BYOND_MAJOR) && (byond_build < GOOD_BYOND_MINOR))) - to_chat(src, FONT_SIZE_HUGE(SPAN_BOLDNOTICE("YOUR BYOND VERSION IS NOT WELL SUITED FOR THIS SERVER. Download latest BETA build or you may suffer random crashes or disconnects."))) - // Initialize tgui panel stat_panel.initialize( inline_html = file("html/statbrowser.html"), diff --git a/code/modules/clothing/gloves/marine_gloves.dm b/code/modules/clothing/gloves/marine_gloves.dm index f12876f389..16fbc969b5 100644 --- a/code/modules/clothing/gloves/marine_gloves.dm +++ b/code/modules/clothing/gloves/marine_gloves.dm @@ -114,6 +114,12 @@ flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE adopts_squad_color = FALSE +/obj/item/clothing/gloves/marine/pve_mopp + name = "\improper M2 MOPP gloves" + desc = "M2 MOPP gloves to protect your insides from nerve gas and deadly chemicals. You'd probably feel safer if there was duct tape wrapped around these." + icon_state = "cbrn" + item_state = "cbrn" + /obj/item/clothing/gloves/marine/veteran name = "armored gloves" desc = "Non-standard para-aramid fiber gloves. They're insulated and heavily armored." diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 372c4844d5..a2366692f9 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -351,8 +351,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( )) /obj/item/clothing/head/helmet/marine - name = "\improper M10 pattern marine helmet" - desc = "A standard M10 Pattern Helmet. The inside label, along with washing information, reads, 'The difference between an open-casket and closed-casket funeral. Wear on head for best results.'. There is a built-in camera on the right side." + name = "\improper M10 pattern ballistic helmet" + desc = "Standard issue high molecular density polymer combat helmet. Resistant to glancing hits from small arms and shrapnel, incorporates tactical camera, IFF signal transponder, and heads up display eyepiece. Also features white/black hot IR viewing modes from the camera system." icon = 'icons/obj/items/clothing/cm_hats.dmi' icon_state = "helmet" item_state = "helmet" @@ -755,8 +755,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( flags_atom = NO_SNOW_TYPE /obj/item/clothing/head/helmet/marine/tech/tanker - name = "\improper M50 tanker helmet" - desc = "The lightweight M50 tanker helmet is designed for use by armored crewmen in the USCM. It offers low weight protection, and allows agile movement inside the confines of an armored vehicle. Features a toggleable welding screen for eye protection." + name = "\improper Mk20 tanker helmet" + desc = "The older Mk20 Advanced Armored Crew Helmet is a variant of the precursor program to the Mk30, with a flipdown welding visor attached. Camera on the side and biometric transmitter ties into the sensor matrix." icon_state = "tanker_helmet" armor_melee = CLOTHING_ARMOR_MEDIUMLOW armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH @@ -769,7 +769,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/medic name = "\improper M10 corpsman helmet" - desc = "An M10 marine helmet version worn by marine hospital corpsmen. Has red cross painted on its front." + desc = "M10 combat helmet issued to marine hospital corpsmen. Has a red cross painted on its front for attracting the injured and snipers' attentions alike." icon_state = "med_helmet" specialty = "M10 pattern medic" built_in_visors = list(new /obj/item/device/helmet_visor, new /obj/item/device/helmet_visor/medical/advanced) @@ -790,15 +790,15 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( flags_atom = NO_SNOW_TYPE /obj/item/clothing/head/helmet/marine/leader - name = "\improper M11 pattern helmet" - desc = "A variant of the standard M10 pattern. The front plate is reinforced. This one contains a small built-in camera and has cushioning to project your fragile brain." + name = "\improper M09 pattern helmet" + desc = "Back issue model of an older combat helmet. Uncomfortable, but the added protection is supposedly worth it. It's been wired up the same, so it still ties into the sensor matrix fine." icon_state = "sl_helmet" armor_bio = CLOTHING_ARMOR_MEDIUMHIGH specialty = "M11 pattern marine" /obj/item/clothing/head/helmet/marine/rto - name = "\improper M12 pattern dust helmet" - desc = "An experimental brain-bucket. A dust ruffle hangs from back instead of the standard lobster shell design. Moderately better at deflecting blunt objects at the cost of humiliation, can also hold a second visor optic. But who will be laughing at the memorial? Not you, you'll be busy getting medals for your fantastic leadership." + name = "\improper M12 pattern helmet" + desc = "Failed procurement, limited run successor to the old M10 Ballistic Helmet. New ceramic composites and suspension system show a remarkable increase in blunt impact resistance, while a revamped wiring structure added space for a second optic socket." icon_state = "io" item_state = "io" armor_melee = CLOTHING_ARMOR_MEDIUMHIGH @@ -813,7 +813,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/specialist name = "\improper B18 helmet" - desc = "The B18 Helmet that goes along with the B18 Defensive Armor. It's heavy, reinforced, and protects more of the face." + desc = "Helmet and faceplate component of the B18 armor system. Nanobonded carbonfiber laminated with ultrahigh molecular density polymer, with an integral rebreather and heads up display." icon_state = "grenadier_helmet" item_state = "grenadier_helmet" armor_melee = CLOTHING_ARMOR_HIGH @@ -828,8 +828,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( specialty = "B18" /obj/item/clothing/head/helmet/marine/grenadier - name = "\improper M3-G4 grenadier helmet" - desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Comes with inbuilt ear blast protection." + name = "\improper M12 grenadier helmet" + desc = "Strictly speaking, the M12 is more of an offshoot of the B-series armor systems, and is fully enclosed, with hearing protection and anti-impact liquid armor layers to cushion blast. USCMC assault teams sometimes use these in close combat, grenade heavy operations." icon_state = "grenadier_helmet" item_state = "grenadier_helmet" armor_melee = CLOTHING_ARMOR_MEDIUMHIGH @@ -845,26 +845,26 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE /obj/item/clothing/head/helmet/marine/scout - name = "\improper M3-S light helmet" + name = "\improper M10-S light helmet" icon_state = "scout_helmet" - desc = "A custom helmet designed for USCM Scouts." + desc = "M10 fitted with thermal camouflage and improved radar absorbent shell. Issued to USCMC Scouts." min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT specialty = "M3-S light" flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE /obj/item/clothing/head/helmet/marine/pyro - name = "\improper M35 pyrotechnician helmet" + name = "\improper M10-P pyrotechnician helmet" icon_state = "pyro_helmet" - desc = "A helmet designed for USCM Pyrotechnicians." + desc = "M10 variant with complete facial coverage and internal breathing apparatus. Environmentally sealed with a full fitting of polymer compounds to resist burning." min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROT specialty = "M35 pyrotechnician" flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE /obj/item/clothing/head/helmet/marine/M3T - name = "\improper M3-T bombardier helmet" + name = "\improper M10-R bombardier helmet" icon_state = "sadar_helmet" - desc = "A custom-built helmet for explosive weaponry users. Comes with inbuilt ear blast protection, firing a rocket launcher without this is not recommended." + desc = "M10 combat helmet fitted with enhanced suspension liner and improved hearing protection, for firing high-concussion weapons like the M5 RPG." min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT armor_bomb = CLOTHING_ARMOR_HIGH specialty = "M3-T bombardier" @@ -873,8 +873,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( unacidable = TRUE /obj/item/clothing/head/helmet/marine/pilot - name = "\improper M30 tactical helmet" - desc = "The M30 tactical helmet has a left eyepiece filter used to filter tactical data. It is required to fly the dropships manually and in safety." + name = "\improper Mk30 tactical helmet" + desc = "Standard flight helmet of the UA treaty forces. Probably one of the few good things that came out of the Joint Procurement Office. Eyepiece allows for augmented reality effects, giving relevant data in real time." icon_state = "helmetp" armor_melee = CLOTHING_ARMOR_MEDIUMLOW armor_bomb = CLOTHING_ARMOR_MEDIUMLOW @@ -892,8 +892,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( flags_atom = NO_SNOW_TYPE /obj/item/clothing/head/helmet/marine/ghillie - name = "\improper M45 ghillie helmet" - desc = "A lightweight M45 helmet with ghillie coif used by USCM snipers on recon missions." + name = "\improper M10 ghillie helmet" + desc = "M10 helmet fitted with thermal camouflage ghillie strips. Used and customized by USCMC Scout Snipers." icon_state = "ghillie_coif" armor_bomb = CLOTHING_ARMOR_MEDIUM armor_bio = CLOTHING_ARMOR_LOW @@ -943,15 +943,15 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/mp/provost/marshal name = "\improper Provost Marshal Cap" - desc = "The expensive headwear of a Provost Marshal. Contains shards of kevlar to keep its valuable contents safe." + desc = "The expensive headwear of a Provost Marshal. Venlar lined, boron carbide tiled, tailored to wear semi-comfortably." icon_state = "pvmarshalhat" item_state = "pvmarshalhat" flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE flags_inventory = BLOCKSHARPOBJ|FULL_DECAP_PROTECTION /obj/item/clothing/head/helmet/marine/sof - name = "\improper SOF Operator Helmet" - desc = "A special variant of the M10 Pattern Helmet worn by USCM SOF." + name = "\improper M09 Custom Helmet" + desc = "Partially due to old stocks, partially due to preference. USCM MARSOC commando ballistic helmet, customized and updated to mission requirements." icon_state = "marsoc_helmet" armor_melee = CLOTHING_ARMOR_MEDIUMHIGH armor_bullet = CLOTHING_ARMOR_HIGH @@ -971,7 +971,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/veteran/pmc name = "\improper PMC tactical cap" - desc = "A protective cap made from flexible kevlar. Standard issue for most security forms in the place of a helmet." + desc = "Venlar padded cap with rheological armor reinforcement. A bit finicky to fit right, but lightweight while protecting like a helmet." icon_state = "pmc_hat" armor_energy = CLOTHING_ARMOR_MEDIUMLOW armor_bomb = CLOTHING_ARMOR_MEDIUM @@ -1000,7 +1000,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/veteran/pmc/gunner name = "\improper PMC gunner helmet" - desc = "A modification of the standard Armat Systems M3 armor." + desc = "An M10 combat helmet modified with full face visor and cutting edge materials, used by W-Y's inhouse corporate tactical teams." icon_state = "heavy_helmet" flags_armor_protection = BODY_FLAG_HEAD|BODY_FLAG_FACE|BODY_FLAG_EYES armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index b13fab0ae5..1b1ff8d606 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -31,6 +31,17 @@ icon_state = "kutjevo_respirator" item_state = "kutjevo_respirator" +/obj/item/clothing/mask/gas/pve_mopp + name = "\improper M2 MOPP mask" + desc = "The M2 MOPP mask includes a full covering cowl that securely attaches to the MOPP suit. It is capable of protecting of a variety of radiological and biological threats." + icon = 'icons/obj/items/clothing/cm_hats.dmi' + icon_state = "cbrn_hood" + item_state = "cbrn_hood" + flags_inv_hide = HIDEEARS|HIDEFACE|HIDEALLHAIR + item_icons = list( + WEAR_FACE = 'icons/mob/humans/onmob/head_1.dmi' + ) + /obj/item/clothing/mask/gas/pmc name = "\improper M8 pattern armored balaclava" desc = "An armored balaclava designed to conceal both the identity of the operator and act as an air-filter." @@ -72,7 +83,6 @@ - //Plague Dr suit can be found in clothing/suits/bio.dm /obj/item/clothing/mask/gas/plaguedoctor name = "plague doctor mask" diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index edd988090d..1a11545ea4 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -81,6 +81,14 @@ armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW knife_type = /obj/item/attachable/bayonet +/obj/item/clothing/shoes/marine/pve_mopp + name = "\improper M2 MOPP boots" + desc = "M2 MOPP boots excel at keeping viscera or other biological contaminants away from your feet." + icon_state = "cbrn" + item_state = "cbrn" + armor_rad = CLOTHING_ARMOR_GIGAHIGHPLUS + armor_bio = CLOTHING_ARMOR_GIGAHIGHPLUS + /obj/item/clothing/shoes/dress name = "dress shoes" desc = "Pre-polished fancy dress shoes. You can see your reflection in them." diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm index 0ac2106e9d..93160e68ff 100644 --- a/code/modules/clothing/suits/marine_armor.dm +++ b/code/modules/clothing/suits/marine_armor.dm @@ -396,14 +396,14 @@ /obj/item/device/motiondetector, /obj/item/device/walkman, ) + var/list/smartgun_back = list( + /obj/item/storage/large_holster/machete, + ) /obj/item/clothing/suit/storage/marine/smartgunner/Initialize() . = ..() if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "M56 combat harness") name = "M56 snow combat harness" - else - name = "M56 combat harness" - //select_gamemode_skin(type) /obj/item/clothing/suit/storage/marine/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning = FALSE) . = ..() @@ -424,6 +424,10 @@ if(slot != WEAR_BACK) return + + if(is_type_in_list(equipping_item, smartgun_back)) + return + . = COMPONENT_HUMAN_CANCEL_ATTEMPT_EQUIP if(equipping_item.flags_equip_slot == SLOT_BACK) @@ -438,6 +442,44 @@ /obj/item/clothing/suit/storage/marine/smartgunner/standard flags_atom = NO_SNOW_TYPE +/obj/item/clothing/suit/storage/marine/smartgunner/upp + name = "\improper UH7-I heavy plated harness" + desc = "An experimental set of heavy armor with additional harnesses designed to support QYJ-72-I smartmachinegun. Heavy plates along with harnesses make wearing backpacks extremely uncomfortable and borderline impossible." + icon_state = "upp_armor_heavy" + storage_slots = 1 + slowdown = SLOWDOWN_ARMOR_HEAVY + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS|BLOCK_KNOCKDOWN + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_HIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) + allowed = list( + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/mine, + /obj/item/attachable/bayonet, + /obj/item/weapon/gun/pkp, + /obj/item/storage/backpack/general_belt, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + + +/obj/item/clothing/suit/storage/marine/smartgunner/upp/Initialize() + . = ..() + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/minigun, + /obj/item/ammo_magazine/pkp, + ) + + /obj/item/clothing/suit/storage/marine/leader name = "\improper B12 pattern marine armor" desc = "Semi-experimental body armor system similar to M3, incorporating primarily carbon fiber instead of boron carbide. \nDesigned in a lovely olive green, slightly improved protection against blunt impact and biological hazards." @@ -1358,7 +1400,7 @@ /obj/item/clothing/suit/storage/marine/faction/UPP/mp name = "\improper UL4 camouflaged jacket" - desc = "A lightweight jacket, issued to troops when they're not expected to engage in combat. Still studded to the brim with kevlar shards, though the synthread construction reduces its effectiveness." + desc = "A lightweight jacket, issued to troops when they're not expected to engage in combat. Some level of shrapnel and low velocity gunfire protection is provided by para-aramid inserts, though not much." icon_state = "upp_coat_mp" slowdown = SLOWDOWN_ARMOR_NONE flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS diff --git a/code/modules/clothing/suits/marine_coat.dm b/code/modules/clothing/suits/marine_coat.dm index 6e6752ba7b..2ccc2d948a 100644 --- a/code/modules/clothing/suits/marine_coat.dm +++ b/code/modules/clothing/suits/marine_coat.dm @@ -11,11 +11,11 @@ flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_ARMS flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT - armor_melee = CLOTHING_ARMOR_LOW - armor_bullet = CLOTHING_ARMOR_LOW + armor_melee = CLOTHING_ARMOR_VERYLOW + armor_bullet = CLOTHING_ARMOR_VERYLOW armor_laser = CLOTHING_ARMOR_NONE armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_LOW //marginally better against shrapnel. armor_bio = CLOTHING_ARMOR_NONE armor_rad = CLOTHING_ARMOR_NONE armor_internaldamage = CLOTHING_ARMOR_NONE @@ -77,13 +77,13 @@ //Marine service & tanker jacket + MP themed variants /obj/item/clothing/suit/storage/jacket/marine/service name = "marine service jacket" - desc = "A service jacket typically worn by officers of the USCM. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "A USCMC service jacket, usually officer issue. While technically armored to frag/handgun ammunition, it's best if you don't try your luck." has_buttons = TRUE icon_state = "coat_officer" /obj/item/clothing/suit/storage/jacket/marine/pilot name = "\improper M70B1 light flak jacket" - desc = "A light flak jacket used by dropship pilots to protect themselves while flying in the cockpit. This specific flak jacket has been designed for style and comfort over protection, and it shows. Don't get hit by any stray bullets!" + desc = "M70 variant that reduces bulk and protective for ergonomics. Consider this to have the same amount of protection from flak as an officer's service jacket." icon_state = "pilot_alt" has_buttons = TRUE flags_atom = NO_SNOW_TYPE @@ -91,7 +91,7 @@ /obj/item/clothing/suit/storage/jacket/marine/service/mp name = "military police service jacket" - desc = "A marine service jacket adopted for use by Military Police personnel on board USCM ships. Ironically most ships require their MP departments to use full armor, making these barely used by on duty MPs. This variant is also available to regular Marines, if they are willing to bear the shame." + desc = "Marine service jacket in USCMC Military Police scheme. Usually not used due to local standards requiring service armor instead." has_buttons = TRUE icon_state = "coat_mp" flags_atom = NO_SNOW_TYPE diff --git a/code/modules/clothing/under/gimmick.dm b/code/modules/clothing/under/gimmick.dm index d8e0a16fc7..62ffbf391c 100644 --- a/code/modules/clothing/under/gimmick.dm +++ b/code/modules/clothing/under/gimmick.dm @@ -129,7 +129,7 @@ /obj/item/clothing/head/helmet/gimmick/robocop name = "polished metal helm" - desc = "The impersonal face of the law. Constructed from titanium and laminated with kevlar." + desc = "The impersonal face of the law. Titanium alloy frame backed with ballistic polymer layers." icon_state = "robocop_helmet" item_state = "robocop_helmet" armor_melee = CLOTHING_ARMOR_HIGH @@ -146,7 +146,7 @@ /obj/item/clothing/suit/armor/gimmick/robocop name = "polished metal armor" - desc = "Clean and well maintained, unlike the ugly streets of Detroit. Constructed from titanium and laminated with kevlar." + desc = "Clean and well maintained, unlike the ugly streets of Detroit. Titanium alloy shell, molybdenum armor plating backed with ballistic polymer." icon_state = "robocop_armor" item_state = "robocop_armor" slowdown = 1 diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index ea73409af6..fae81f0216 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -62,8 +62,8 @@ flags_atom = NO_SNOW_TYPE /obj/item/clothing/under/marine/engineer - name = "\improper USCM ComTech uniform" - desc = "Standard-issue Marine combat technician fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets." + name = "\improper USCM combat technician uniform" + desc = "USCMC combat technician's fatigues, shielded by venlar panels and no longer electrically insulated due to 'budget reprioritization'." icon_state = "marine_engineer" worn_state = "marine_engineer" specialty = "USCM Combat Technician" @@ -78,7 +78,7 @@ /obj/item/clothing/under/marine/rto name = "\improper USCM radio telephone operator uniform" - desc = "Standard-issue RTO fatigues. They have shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "The uniform of a USCMC radio-telephone operator. Venlar panels provide marginal protection from shrapnel and ballistics." icon_state = "marine_rto" item_state = "marine_rto" specialty = "marine Radio Telephone Operator" @@ -103,7 +103,7 @@ /obj/item/clothing/under/marine/chef name = "\improper USCM Mess Technician uniform" - desc = "Standard-issue Mess Technician uniform. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "The stain resistant uniform of a mess technician. Why the USCMC requires them to wear the venlar armor inserts is unknown." icon_state = "chef_uniform" worn_state = "chef_uniform" flags_jumpsuit = FALSE @@ -111,8 +111,8 @@ flags_atom = NO_SNOW_TYPE /obj/item/clothing/under/marine/mp - name = "military police jumpsuit" - desc = "Standard-issue Military Police uniform. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + name = "USCMC military police uniform" + desc = "Cut and stab resistant USCMC military police uniform. The venlar liner also offers marginal ballistic defense." icon_state = "MP_jumpsuit" worn_state = "MP_jumpsuit" suit_restricted = list(/obj/item/clothing/suit/storage/marine, /obj/item/clothing/suit/armor/riot/marine, /obj/item/clothing/suit/storage/jacket/marine/service/mp) @@ -129,7 +129,7 @@ /obj/item/clothing/under/marine/warden name = "military warden jumpsuit" - desc = "Standard-issue Military Warden uniform. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "Military Police Warden's jumpsuit. Armored as per usual." icon_state = "warden_jumpsuit" worn_state = "warden_jumpsuit" suit_restricted = list(/obj/item/clothing/suit/storage/marine, /obj/item/clothing/suit/armor/riot/marine, /obj/item/clothing/suit/storage/jacket/marine/service/warden) @@ -139,7 +139,7 @@ /obj/item/clothing/under/marine/officer name = "marine officer uniform" - desc = "Softer than silk. Lighter than feather. More protective than Kevlar. Fancier than a regular jumpsuit, too. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "Substantially comfier officer's uniform. Still has the protection of a sheet of paper against actual threats but at least you won't be uncomfortable while bleeding out." icon_state = "officertanclothes" item_state = "officertanclothes" worn_state = "officertanclothes" @@ -150,15 +150,15 @@ /obj/item/clothing/under/marine/officer/intel name = "\improper marine intelligence officer sweatsuit" - desc = "Tighter than a vice. Slicker than beard oil. Covered from head to toe in pouches, pockets, bags, straps, and belts. Clearly, you are not only the most intelligent of intelligence officers, but the most fashionable as well. This suit took an entire R&D team five days to develop. It is more expensive than the entire Almayer... probably." + desc = "Intelligence work is dangerous, but it's slightly less dangerous when your duty uniform can almost stop a bullet. Also features many pockets and attachment points for all storage needs." icon_state = "io" item_state = "io" worn_state = "io" specialty = "marine intelligence officer" /obj/item/clothing/under/marine/officer/warrant - name = "\improper chief MP uniform" - desc = "A uniform typically worn by a Chief MP of the USCM. It has shards of light Kevlar to help protect against stabbing weapons, bullets, and shrapnel from explosions. This uniform includes a small EMF distributor to help nullify energy-based weapon fire, along with a hazmat chemical filter woven throughout the material to ward off biological and radiation hazards." + name = "\improper USCM MP chief uniform" + desc = "USCMC Military Police Chief's uniform. Alongside the standard armor panels, it has an uncomfortable energy dispersive polymer lining, and is also rated for low MOPP conditions." icon_state = "WO_jumpsuit" item_state = "WO_jumpsuit" worn_state = "WO_jumpsuit" @@ -197,7 +197,7 @@ /obj/item/clothing/under/marine/officer/pilot/dcc name = "dropship crew chief bodysuit" - desc = "A bodysuit worn by dropship crew chiefs of the USCM, and is meant for survival in inhospitable conditions. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "Dropship crew chief's bodysuit. The program that procured the latest line for some reason implemented a dozen odd survival features into it, which all don't really work. It also accepts standard venlar panels." icon_state = "crewchief_flightsuit" item_state = "crewchief_flightsuit" worn_state = "crewchief_flightsuit" @@ -216,7 +216,7 @@ /obj/item/clothing/under/marine/officer/bridge name = "marine service uniform" - desc = "A service uniform worn by members of the USCM. Do the corps proud. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "Officer's uniform, a little outdated. Why it needs to be frag rated is beyond everyone." icon_state = "BO_jumpsuit" item_state = "BO_jumpsuit" worn_state = "BO_jumpsuit" @@ -226,7 +226,7 @@ /obj/item/clothing/under/marine/officer/boiler name = "marine operations uniform" - desc = "An operations uniform worn by members of the USCM. Do the corps proud. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "Officer's uniform, a little outdated." icon_state = "uscmboiler" item_state = "uscmboiler" worn_state = "uscmboiler" @@ -235,7 +235,7 @@ /obj/item/clothing/under/marine/officer/command name = "\improper USCM officer uniform" - desc = "The well-ironed utility uniform of a USCM officer. Even looking at it the wrong way could result in being court-martialed. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "A USCMC commanding officer's uniform, custom cut for maximum comfort while staying within regulation." icon_state = "CO_jumpsuit" worn_state = "CO_jumpsuit" specialty = "USCM officer" @@ -250,7 +250,7 @@ /obj/item/clothing/under/marine/officer/ce name = "chief engineer uniform" - desc = "A uniform for a military engineer. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "The uniform of the chief engineer. Specially treated for hazardous conditions work, high density layers provide some level of radiation protection." armor_bio = CLOTHING_ARMOR_MEDIUMLOW armor_rad = CLOTHING_ARMOR_MEDIUMLOW icon_state = "EC_jumpsuit" @@ -261,7 +261,7 @@ /obj/item/clothing/under/marine/officer/engi name = "engineer uniform" - desc = "A uniform for a military engineer. It has shards of light Kevlar to help protect against stabbing weapons and bullets." + desc = "The uniform of a maintenance technician. Specially treated for hazardous materials handing and hostile conditions." armor_bio = CLOTHING_ARMOR_LOW armor_rad = CLOTHING_ARMOR_LOW icon_state = "mt_jumpsuit" @@ -272,9 +272,9 @@ item_state_slots = list(WEAR_BODY = "mt_jumpsuit") /obj/item/clothing/under/marine/officer/engi/OT - name = "ordnance engineer uniform" - desc = "A uniform for a professional bomb maker. It has shards of light Kevlar to help protect against stabbing weapons, bullets, and shrapnel from explosions. Padded with extra plates to take the brunt force of an explosion." - armor_bomb = CLOTHING_ARMOR_LOW + name = "ordnance technician uniform" + desc = "Ordinance technician's uniform. Improved protection from explosives and shrapnel provided by more extensive venlar coverage and hard bracing elements." + armor_bomb = CLOTHING_ARMOR_MEDIUM icon_state = "ot_jumpsuit" worn_state = "ot_jumpsuit" item_state_slots = list(WEAR_BODY = "ot_jumpsuit") @@ -527,7 +527,7 @@ min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT has_sensor = UNIFORM_HAS_SENSORS sensor_faction = FACTION_UPP - suit_restricted = list(/obj/item/clothing/suit/storage/marine/faction/UPP, /obj/item/clothing/suit/gimmick/jason, /obj/item/clothing/suit/storage/snow_suit/soviet, /obj/item/clothing/suit/storage/snow_suit/survivor, /obj/item/clothing/suit/storage/webbing) + suit_restricted = list(/obj/item/clothing/suit/storage/marine/faction/UPP, /obj/item/clothing/suit/gimmick/jason, /obj/item/clothing/suit/storage/snow_suit/soviet, /obj/item/clothing/suit/storage/snow_suit/survivor, /obj/item/clothing/suit/storage/webbing, /obj/item/clothing/suit/storage/marine/smartgunner/upp) flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE /obj/item/clothing/under/marine/veteran/UPP/boiler @@ -1031,7 +1031,7 @@ /obj/item/clothing/under/marine/veteran/royal_marine name = "royal marines commando uniform" - desc = "The field uniform of the royal marines commando. They have shards of light Kevlar to help protect against stabbing weapons and bullets. Onpar with similar USCM equipment" + desc = "The field uniform of the royal marines commando. They have shards of light Kevlar to help protect against stabbing weapons and bullets. Onpar with similar USCM equipment." icon_state = "rmc_uniform" worn_state = "rmc_uniform" flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE @@ -1044,10 +1044,24 @@ /obj/item/clothing/under/marine/veteran/royal_marine/lt name = "royal marines commando officers uniform" - desc = "The officers uniform of the royal marines commando. They have shards of light Kevlar to help protect against stabbing weapons and bullets. Onpar with similar USCM equipment" + desc = "The officers uniform of the royal marines commando. They have shards of light Kevlar to help protect against stabbing weapons and bullets. Onpar with similar USCM equipment." icon_state = "rmc_uniform_lt" worn_state = "rmc_uniform_lt" +/obj/item/clothing/under/marine/pve_mopp + name = "\improper M2 MOPP suit" + desc = "M2 MOPP suits are purpose built to defend the wearer against biological and radioactive contaminants, from nerve gas to nuclear fallout." + desc_lore = "The several-paragraph long expository pamphlet that usually comes with these is missing." + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + flags_jumpsuit = NO_FLAGS + icon_state = "cbrn" + worn_state = "cbrn" + + item_icons = list( + WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi', + ) + + /obj/item/clothing/under/marine/cbrn //CBRN MOPP suit name = "\improper M3 MOPP suit" desc = "M3 MOPP suits are specially designed and engineered to protect the wearer from unshielded exposure to any Chemical, Biological, Radiological, or Nuclear (CBRN) threats in the field. Despite somewhat resembling commonplace synthetic rubber HAZMAT suits, the Venlar composition provides a significantly more dense and durable baseline material, allowing for modifications without the loss of its air-tight nature. The wearer’s comfort has been significantly taken into consideration, with the suit providing sufficient freedom of movement for even delicate maneuvers and movements once it is donned. As the sealed environment retains many issues from the past, measures have been taken to significantly reduce the suit's passive heat absorption and increase internal absorbance through linings, as well as the capability to fully integrate with external cooling, air cycling, and other life support systems. Strips of M11 detector paper are included with each suit, designed to be slotted into the dominant arm of the wearer’s protective suit, the non-dominant wrist, and then back to the knee, providing at-a-glance warning signs across alternating sides of the body while working. The arm and knee markers are intended to be on the user's dominant The papers change color upon contact with harmful chemical agents, displaying a clear white initially and turning red when activated. The suit has a recommended lifespan of twenty-four hours once contact with a toxic environment is made, but depending on the severity this can be shortened to eight hours or less. Beyond that point, the accuracy of the detector papers deteriorates significantly, as does the protection of the suit itself." diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm index 7b6572a781..243ecd9342 100644 --- a/code/modules/cm_marines/overwatch.dm +++ b/code/modules/cm_marines/overwatch.dm @@ -464,10 +464,17 @@ return change_lead(user, params["ref"]) + if("award_medal") + print_medal(user, src) + return + if("insubordination") mark_insubordination() + return + if("transfer_marine") transfer_squad() + return if("change_locations_ignored") switch(z_hidden) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index b89708e5af..5644e8c515 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -564,8 +564,8 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/mod88(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/bridge(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_L_HAND) /datum/equipment_preset/uscm_ship/so/load_status(mob/living/carbon/human/new_human, client/mob_client) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index f37b1d6a86..a04dd5c94b 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1660,3 +1660,11 @@ // clamped to max 500 if(dizziness > 100 && !is_dizzy) INVOKE_ASYNC(src, PROC_REF(dizzy_process)) + +/mob/living/carbon/human/point_to_atom(atom/A, turf/T) + if(isitem(A)) + var/obj/item/item = A + if(item == get_active_hand() || item == get_inactive_hand()) + item.showoff(src) + return TRUE + return ..() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm index 780a46ca12..7d1d9f98b5 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm @@ -83,7 +83,7 @@ . = ..() AddComponent(/datum/component/footstep, 2, 50, 15, 1, "metalbang") - playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30) + playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30, falloff = 5) for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(src), 30) - src) var/relative_dir = get_dir(current_mob, src) var/final_dir = dir2text(relative_dir) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index a3e4900326..6ab143b8d8 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -502,13 +502,13 @@ As sniper rifles have both and weapon mods can change them as well. ..() deals w if(slot in list(WEAR_L_HAND, WEAR_R_HAND)) set_gun_user(user) - if(HAS_TRAIT_FROM_ONLY(src, TRAIT_GUN_LIGHT_DEACTIVATED, user)) + if(HAS_TRAIT_FROM_ONLY(src, TRAIT_GUN_LIGHT_DEACTIVATED, WEAKREF(user))) force_light(on = TRUE) - REMOVE_TRAIT(src, TRAIT_GUN_LIGHT_DEACTIVATED, user) + REMOVE_TRAIT(src, TRAIT_GUN_LIGHT_DEACTIVATED, WEAKREF(user)) else set_gun_user(null) force_light(on = FALSE) - ADD_TRAIT(src, TRAIT_GUN_LIGHT_DEACTIVATED, user) + ADD_TRAIT(src, TRAIT_GUN_LIGHT_DEACTIVATED, WEAKREF(user)) return ..() diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index d7ec91b8ec..4f0daf2a2b 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -540,6 +540,11 @@ Defined in conflicts.dm of the #defines folder. pixel_shift_x = 14 hud_offset_mod = -4 +/obj/item/attachable/smartbarrel/suppressed + name = "suppressed smartgun barrel" + icon_state = "silenced_smartgun" + gun_traits = list(TRAIT_GUN_SILENCED) + // Mateba barrels /obj/item/attachable/mateba diff --git a/code/modules/projectiles/gun_helpers.dm b/code/modules/projectiles/gun_helpers.dm index 486e25315e..7f339851cf 100644 --- a/code/modules/projectiles/gun_helpers.dm +++ b/code/modules/projectiles/gun_helpers.dm @@ -312,7 +312,7 @@ DEFINES in setup.dm, referenced here. var/tac_reload_time = 15 if(user.skills) tac_reload_time = max(15 - 5*user.skills.get_skill_level(SKILL_FIREARMS), 5) - if(do_after(user,tac_reload_time, INTERRUPT_ALL, BUSY_ICON_FRIENDLY) && magazine.loc == old_mag_loc && !current_mag) + if(do_after(user,tac_reload_time, (INTERRUPT_ALL & (~INTERRUPT_MOVED)) , BUSY_ICON_FRIENDLY) && magazine.loc == old_mag_loc && !current_mag) if(isstorage(magazine.loc)) var/obj/item/storage/master_storage = magazine.loc master_storage.remove_from_storage(magazine) diff --git a/code/modules/projectiles/guns/misc.dm b/code/modules/projectiles/guns/misc.dm index 9c8b305a4f..098dafb5fd 100644 --- a/code/modules/projectiles/guns/misc.dm +++ b/code/modules/projectiles/guns/misc.dm @@ -272,13 +272,26 @@ return FALSE if(!skillcheck(user, SKILL_FIREARMS, SKILL_FIREARMS_TRAINED)) to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) - return 0 + return FALSE /obj/item/weapon/gun/pkp/iff name = "\improper QYJ-72-I General Purpose Machine Gun" desc = "The QYJ-72-I is an experimental variant of common UPP GPMG featuring IFF capabilities which were developed by reverse-engineering USCM smartweapons. Aside from that, not much has been done to this machinegun: it's still heavy, overheats rather quickly and is able to lay down range unprecedented amounts of lead. \nAlt-click it to open the feed cover and allow for reloading." actions_types = list(/datum/action/item_action/toggle_iff_pkp) + aim_slowdown = SLOWDOWN_ADS_SPECIALIST var/iff_enabled = TRUE + var/requires_harness = TRUE + +/obj/item/weapon/gun/pkp/iff/able_to_fire(mob/living/user) + . = ..() + if(.) + if(!ishuman(user)) + return FALSE + var/mob/living/carbon/human/H = user + if(requires_harness) + if(!H.wear_suit || !(H.wear_suit.flags_inventory & SMARTGUN_HARNESS)) + balloon_alert(user, "harness required") + return FALSE /obj/item/weapon/gun/pkp/iff/set_bullet_traits() LAZYADD(traits_to_give, list( diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm index 0e7ff3c9af..76e3e07106 100644 --- a/code/modules/projectiles/guns/revolvers.dm +++ b/code/modules/projectiles/guns/revolvers.dm @@ -293,6 +293,11 @@ icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m44r" item_state = "m44r" + + cocked_sound = 'sound/weapons/gun_revolver_spun.ogg' + unload_sound = 'sound/weapons/handling/pkd_open_chamber.ogg' + chamber_close_sound = 'sound/weapons/handling/pkd_close_chamber.ogg' + current_mag = /obj/item/ammo_magazine/internal/revolver/m44 force = 8 flags_gun_features = GUN_INTERNAL_MAG|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 76470513f3..ba2e925ed5 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -409,6 +409,10 @@ /obj/item/weapon/gun/rifle/m41aMK1/ap //for making it start with ap loaded current_mag = /obj/item/ammo_magazine/rifle/m41aMK1/ap +/obj/item/weapon/gun/rifle/m41aMK1/unloaded //for making it start unloaded and with the safety on + current_mag = null + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_TRIGGER_SAFETY + /obj/item/weapon/gun/rifle/m41aMK1/tactical starting_attachment_types = list(/obj/item/attachable/attached_gun/grenade/mk1, /obj/item/attachable/suppressor, /obj/item/attachable/magnetic_harness, /obj/item/attachable/stock/rifle/collapsible) current_mag = /obj/item/ammo_magazine/rifle/m41aMK1/ap @@ -1331,6 +1335,10 @@ STOCK.Attach(src) update_attachable(STOCK.slot) +/obj/item/weapon/gun/rifle/type71/unloaded + current_mag = null + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_TRIGGER_SAFETY + /obj/item/weapon/gun/rifle/type71/rifleman //add GL random_spawn_chance = 100 diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm index de915250ec..dca1410900 100644 --- a/code/modules/projectiles/guns/smartgun.dm +++ b/code/modules/projectiles/guns/smartgun.dm @@ -756,3 +756,8 @@ /obj/item/weapon/gun/smartgun/rmc/Initialize(mapload, ...) . = ..() MD.iff_signal = FACTION_TWE + +/obj/item/weapon/gun/smartgun/silenced + name = "XM56E smartgun" + desc = "An experimental smartgun variant currently undergoing field testing. This model is outfitted with integrated suppressor and modified internal mechanism." + starting_attachment_types = list(/obj/item/attachable/smartbarrel/suppressed) diff --git a/code/modules/projectiles/guns/specialist/launcher/launcher.dm b/code/modules/projectiles/guns/specialist/launcher/launcher.dm index 70f00aa83c..d0731b2d43 100644 --- a/code/modules/projectiles/guns/specialist/launcher/launcher.dm +++ b/code/modules/projectiles/guns/specialist/launcher/launcher.dm @@ -38,6 +38,10 @@ new preload(cylinder) update_icon() +/obj/item/weapon/gun/launcher/Destroy(force) + QDEL_NULL(cylinder) + return ..() + /obj/item/weapon/gun/launcher/verb/toggle_draw_mode() set name = "Switch Storage Drawing Method" set category = "Object" diff --git a/code/modules/reagents/chemistry_machinery/reagent_grinder.dm b/code/modules/reagents/chemistry_machinery/reagent_grinder.dm index 1de4a84451..3c596b6a79 100644 --- a/code/modules/reagents/chemistry_machinery/reagent_grinder.dm +++ b/code/modules/reagents/chemistry_machinery/reagent_grinder.dm @@ -68,7 +68,10 @@ /obj/structure/machinery/reagentgrinder/Destroy() cleanup() - . = ..() + + QDEL_NULL(beaker) + + return ..() /obj/structure/machinery/reagentgrinder/update_icon() icon_state = "juicer"+num2text(!isnull(beaker)) diff --git a/code/modules/shuttle/shuttles/crashable/lifeboats.dm b/code/modules/shuttle/shuttles/crashable/lifeboats.dm index 11b376563d..3a6ee2ecbb 100644 --- a/code/modules/shuttle/shuttles/crashable/lifeboats.dm +++ b/code/modules/shuttle/shuttles/crashable/lifeboats.dm @@ -40,6 +40,13 @@ preferred_direction = EAST port_direction = EAST +/obj/docking_port/mobile/crashable/lifeboat/compact + name = "compact lifeboat" + id = MOBILE_SHUTTLE_LIFEBOAT_COMPACT + preferred_direction = EAST + port_direction = EAST + width = 20 + /obj/docking_port/mobile/crashable/lifeboat/evac_launch() . = ..() @@ -123,6 +130,14 @@ id = "almayer-lifeboat2" roundstart_template = /datum/map_template/shuttle/lifeboat_starboard +/// compact dock +/obj/docking_port/stationary/lifeboat_dock/compact + name = "Compact Lifeboat Docking Port" + dir = NORTH + width = 20 + id = "compact-lifeboat" + roundstart_template = /datum/map_template/shuttle/lifeboat_compact + /obj/docking_port/stationary/lifeboat_dock/Initialize(mapload) . = ..() GLOB.lifeboat_almayer_docks += src @@ -143,3 +158,8 @@ /datum/map_template/shuttle/lifeboat_starboard name = "Starboard door lifeboat" shuttle_id = MOBILE_SHUTTLE_LIFEBOAT_STARBOARD + +/// Starboard-door lifeboat, bow east +/datum/map_template/shuttle/lifeboat_compact + name = "Compact lifeboat" + shuttle_id = MOBILE_SHUTTLE_LIFEBOAT_COMPACT diff --git a/code/modules/tgs/LICENSE b/code/modules/tgs/LICENSE index 2bedf9a63a..324c48e993 100644 --- a/code/modules/tgs/LICENSE +++ b/code/modules/tgs/LICENSE @@ -1,6 +1,6 @@ The MIT License -Copyright (c) 2017-2023 Jordan Brown +Copyright (c) 2017-2024 Jordan Brown Permission is hereby granted, free of charge, to any person obtaining a copy of this software and diff --git a/code/modules/tgs/core/datum.dm b/code/modules/tgs/core/datum.dm index 898516f124..f734fd0527 100644 --- a/code/modules/tgs/core/datum.dm +++ b/code/modules/tgs/core/datum.dm @@ -7,7 +7,7 @@ TGS_DEFINE_AND_SET_GLOBAL(tgs, null) var/list/warned_deprecated_command_runs /datum/tgs_api/New(datum/tgs_event_handler/event_handler, datum/tgs_version/version) - . = ..() + ..() src.event_handler = event_handler src.version = version diff --git a/code/modules/tgs/core/tgs_version.dm b/code/modules/tgs/core/tgs_version.dm index a5dae1241a..bc561e6748 100644 --- a/code/modules/tgs/core/tgs_version.dm +++ b/code/modules/tgs/core/tgs_version.dm @@ -1,4 +1,5 @@ /datum/tgs_version/New(raw_parameter) + ..() src.raw_parameter = raw_parameter deprefixed_parameter = replacetext(raw_parameter, "/tg/station 13 Server v", "") var/list/version_bits = splittext(deprefixed_parameter, ".") diff --git a/code/modules/tgui/tgui_input_list.dm b/code/modules/tgui/tgui_input_list.dm index 198fb58ce5..8088ba5ffb 100644 --- a/code/modules/tgui/tgui_input_list.dm +++ b/code/modules/tgui/tgui_input_list.dm @@ -1,78 +1,40 @@ -/* Copyright 2020 bobbahbrown (https://github.com/bobbahbrown), watermelon914 (https://github.com/watermelon914) - * - * Permission is hereby granted, free of charge, to any person obtaining a copy of this software - * and associated documentation files (the "Software"), to deal in the Software without restriction, - * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, - * subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - /** * Creates a TGUI input list window and returns the user's response. * * This proc should be used to create alerts that the caller will wait for a response from. * Arguments: - * * user - The user to show the alert to. - * * message - The content of the alert, shown in the body of the TGUI window. - * * title - The title of the list input, shown on the top of the TGUI window. - * * buttons - The options that can be chosen by the user, each string is assigned a button on the UI. - * * timeout - The timeout of the alert, after which the list input will close and qdel itself. Set to zero for no timeout. - * * theme - The ui theme to use for the TGUI window. + * * user - The user to show the input box to. + * * message - The content of the input box, shown in the body of the TGUI window. + * * title - The title of the input box, shown on the top of the TGUI window. + * * items - The options that can be chosen by the user, each string is assigned a button on the UI. + * * default - If an option is already preselected on the UI. Current values, etc. + * * timeout - The timeout of the input box, after which the menu will close and qdel itself. Set to zero for no timeout. */ -/proc/tgui_input_list(mob/user, message, title, list/buttons, timeout = 0, theme = null) +/proc/tgui_input_list(mob/user, message, title = "Select", list/items, timeout = 0, theme = null, ui_state = GLOB.always_state) if (!user) user = usr - if(!length(buttons)) - return + if(!length(items)) + return null if (!istype(user)) if (istype(user, /client)) var/client/client = user user = client.mob else - return - var/datum/tgui_list_input/input = new(user, message, title, buttons, timeout, theme) + return null + + if(isnull(user.client)) + return null + + var/datum/tgui_list_input/input = new(user, message, title, items, timeout, theme, ui_state) + if(input.invalid) + qdel(input) + return input.tgui_interact(user) input.wait() if (input) . = input.choice qdel(input) -/** - * Creates an asynchronous TGUI input list window with an associated callback. - * - * This proc should be used to create inputs that invoke a callback with the user's chosen option. - * Arguments: - * * user - The user to show the alert to. - * * message - The content of the alert, shown in the body of the TGUI window. - * * title - The of the alert modal, shown on the top of the TGUI window. - * * buttons - The options that can be chosen by the user, each string is assigned a button on the UI. - * * callback - The callback to be invoked when a choice is made. - * * timeout - The timeout of the alert, after which the modal will close and qdel itself. Set to zero for no timeout. - * * theme - The ui theme to use for the TGUI window. - */ -/proc/tgui_input_list_async(mob/user, message, title, list/buttons, datum/callback/callback, timeout = 60 SECONDS, theme = null) - if (!user) - user = usr - if(!length(buttons)) - return - if (!istype(user)) - if (istype(user, /client)) - var/client/client = user - user = client.mob - else - return - var/datum/tgui_list_input/async/input = new(user, message, title, buttons, callback, timeout, theme) - input.tgui_interact(user) - /** * # tgui_list_input * @@ -84,46 +46,59 @@ var/title /// The textual body of the TGUI window var/message - /// The list of buttons (responses) provided on the TGUI window. These will automatically all be strings - var/list/buttons + /// The list of items (responses) provided on the TGUI window + var/list/items /// Buttons (strings specifically) mapped to the actual value (e.g. a mob or a verb) - var/list/buttons_map + var/list/items_map /// The button that the user has pressed, null if no selection has been made var/choice - /// The time at which the tgui_modal was created, for displaying timeout progress. + /// The default button to be selected + var/default + /// The time at which the tgui_list_input was created, for displaying timeout progress. var/start_time - /// The lifespan of the tgui_modal, after which the window will close and delete itself. + /// The lifespan of the tgui_list_input, after which the window will close and delete itself. var/timeout - /// Boolean field describing if the tgui_modal was closed by the user. + /// Boolean field describing if the tgui_list_input was closed by the user. var/closed - /// String field for the theme to use - var/ui_theme - -/datum/tgui_list_input/New(mob/user, message, title, list/buttons, timeout, theme = null) + /// The TGUI UI state that will be returned in ui_state(). Default: always_state + var/datum/ui_state/state + /// Whether the tgui list input is invalid or not (i.e. due to all list entries being null) + var/invalid = FALSE + /// The theme that this UI should display + var/theme + +/datum/tgui_list_input/New(mob/user, message, title, list/items, timeout, theme, ui_state) src.title = title src.message = message - src.buttons = list() - src.buttons_map = list() - src.ui_theme = theme - + src.items = list() + src.items_map = list() + src.default = default + src.state = ui_state + src.theme = theme + var/list/repeat_items = list() // Gets rid of illegal characters var/static/regex/whitelistedWords = regex(@{"([^\u0020-\u8000]+)"}) - - for(var/i in buttons) + for(var/i in items) + if(!i) + continue var/string_key = whitelistedWords.Replace("[i]", "") + //avoids duplicated keys E.g: when areas have the same name + string_key = avoid_assoc_duplicate_keys(string_key, repeat_items) + src.items += string_key + src.items_map[string_key] = i - src.buttons += string_key - src.buttons_map[string_key] = i - + if(length(src.items) == 0) + invalid = TRUE if (timeout) src.timeout = timeout start_time = world.time QDEL_IN(src, timeout) -/datum/tgui_list_input/Destroy(force, ...) +/datum/tgui_list_input/Destroy(force) SStgui.close_uis(src) - buttons = null - . = ..() + state = null + QDEL_NULL(items) + return ..() /** * Waits for a user's response to the tgui_list_input's prompt before returning. Returns early if @@ -131,12 +106,12 @@ */ /datum/tgui_list_input/proc/wait() while (!choice && !closed) - stoplag(0.2 SECONDS) + stoplag(1) /datum/tgui_list_input/tgui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, "ListInput") + ui = new(user, src, "ListInputModal") ui.open() /datum/tgui_list_input/ui_close(mob/user) @@ -144,64 +119,39 @@ closed = TRUE /datum/tgui_list_input/ui_state(mob/user) - return GLOB.always_state + return state /datum/tgui_list_input/ui_static_data(mob/user) - . = list( - "title" = title, - "message" = message, - "buttons" = buttons, - "theme" = ui_theme - ) + var/list/data = list() + data["init_value"] = default || items[1] + data["items"] = items + data["message"] = message + data["title"] = title + data["theme"] = theme + return data /datum/tgui_list_input/ui_data(mob/user) - . = list() + var/list/data = list() if(timeout) - .["timeout"] = clamp((timeout - (world.time - start_time) - 1 SECONDS) / (timeout - 1 SECONDS), 0, 1) + data["timeout"] = clamp((timeout - (world.time - start_time) - 1 SECONDS) / (timeout - 1 SECONDS), 0, 1) + return data /datum/tgui_list_input/ui_act(action, list/params) . = ..() if (.) return switch(action) - if("choose") - if (!(params["choice"] in buttons)) + if("submit") + if (!(params["entry"] in items)) return - choice = buttons_map[params["choice"]] + set_choice(items_map[params["entry"]]) + closed = TRUE SStgui.close_uis(src) return TRUE if("cancel") - SStgui.close_uis(src) closed = TRUE + SStgui.close_uis(src) return TRUE -/** - * # async tgui_list_input - * - * An asynchronous version of tgui_list_input to be used with callbacks instead of waiting on user responses. - */ -/datum/tgui_list_input/async - /// The callback to be invoked by the tgui_modal upon having a choice made. - var/datum/callback/callback - -/datum/tgui_list_input/async/New(mob/user, message, title, list/buttons, callback, timeout, theme = null) - ..(user, title, message, buttons, timeout, theme) - src.callback = callback - -/datum/tgui_list_input/async/Destroy(force, ...) - QDEL_NULL(callback) - . = ..() - -/datum/tgui_list_input/async/ui_close(mob/user) - . = ..() - qdel(src) - -/datum/tgui_list_input/async/ui_act(action, list/params) - . = ..() - if (!. || choice == null) - return - callback.InvokeAsync(choice) - qdel(src) - -/datum/tgui_list_input/async/wait() - return +/datum/tgui_list_input/proc/set_choice(choice) + src.choice = choice diff --git a/code/modules/vehicles/apc/arc.dm b/code/modules/vehicles/apc/arc.dm new file mode 100644 index 0000000000..eaddf2081c --- /dev/null +++ b/code/modules/vehicles/apc/arc.dm @@ -0,0 +1,157 @@ + +/obj/vehicle/multitile/apc/arc + name = "M540 Armored Recon Carrier" + desc = "An M540 Armored Recon Carrier, also known as an ARC. This is a much lighter and more nimble alternative to the M557A3 APC, often preferred by recon forces for that very reason. Entrance on the right." + + icon = 'icons/obj/vehicles/arc.dmi' + icon_state = "arc_base" + pixel_x = -48 + pixel_y = -48 + + bound_width = 96 + bound_height = 96 + + interior_map = /datum/map_template/interior/arc + + + passengers_slots = 9 + + entrances = list( + "right" = list(-2, 0), + ) + + seats = list( + VEHICLE_DRIVER = null, + VEHICLE_GUNNER = null, + ) + + active_hp = list( + VEHICLE_DRIVER = null, + VEHICLE_GUNNER = null, + ) + + hardpoints_allowed = list( + /obj/item/hardpoint/primary/arc_frontalcannon, + /obj/item/hardpoint/support/flare_launcher, + /obj/item/hardpoint/locomotion/apc_wheels/arc, + ) + +/obj/vehicle/multitile/apc/arc/add_seated_verbs(mob/living/M, seat) + if(!M.client) + return + add_verb(M.client, list( + /obj/vehicle/multitile/proc/get_status_info, + /obj/vehicle/multitile/proc/open_controls_guide, + /obj/vehicle/multitile/proc/name_vehicle, + )) + if(seat == VEHICLE_DRIVER) + add_verb(M.client, list( + /obj/vehicle/multitile/proc/toggle_door_lock, + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + /obj/vehicle/multitile/proc/activate_horn, + )) + else if(seat == VEHICLE_GUNNER) + add_verb(M.client, list( + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + )) + +/obj/vehicle/multitile/apc/arc/remove_seated_verbs(mob/living/M, seat) + if(!M.client) + return + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/get_status_info, + /obj/vehicle/multitile/proc/open_controls_guide, + /obj/vehicle/multitile/proc/name_vehicle, + )) + SStgui.close_user_uis(M, src) + if(seat == VEHICLE_DRIVER) + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/toggle_door_lock, + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + /obj/vehicle/multitile/proc/activate_horn, + )) + else if(seat == VEHICLE_GUNNER) + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + )) + +/obj/vehicle/multitile/apc/arc/initialize_cameras(change_tag = FALSE) + if(!camera) + camera = new /obj/structure/machinery/camera/vehicle(src) + if(change_tag) + camera.c_tag = "#[rand(1,100)] M540 \"[nickname]\" ARC" + if(camera_int) + camera_int.c_tag = camera.c_tag + " interior" + else + camera.c_tag = "#[rand(1,100)] M540 ARC" + if(camera_int) + camera_int.c_tag = camera.c_tag + " interior" + +/obj/vehicle/multitile/apc/arc/set_muzzle_offsets(obj/item/hardpoint/HP) + //sets muzzle flash offsets for APC weapons + switch(HP.slot) + if(HDPT_SUPPORT) //flare + HP.muzzle_flash_pos = list( + "1" = list(-4, -40), + "2" = list(5, 5), + "4" = list(-25, 6), + "8" = list(25, -4) + ) + return ..() + +/* +** PRESETS SPAWNERS +*/ +/obj/effect/vehicle_spawner/arc + name = "ARC Spawner" + icon = 'icons/obj/vehicles/arc.dmi' + icon_state = "arc_base" + pixel_x = -48 + pixel_y = -48 + +/obj/effect/vehicle_spawner/arc/Initialize() + . = ..() + spawn_vehicle() + qdel(src) + +//PRESET: no hardpoints +/obj/effect/vehicle_spawner/arc/spawn_vehicle() + var/obj/vehicle/multitile/apc/arc/APC = new (loc) + + load_misc(APC) + load_hardpoints(APC) + handle_direction(APC) + APC.update_icon() + +//PRESET: only wheels installed +/obj/effect/vehicle_spawner/arc/plain/load_hardpoints(obj/vehicle/multitile/apc/arc/V) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/apc_wheels/arc) + +//PRESET: default hardpoints, destroyed +/obj/effect/vehicle_spawner/arc/decrepit/spawn_vehicle() + var/obj/vehicle/multitile/apc/arc/APC = new (loc) + + load_misc(APC) + load_hardpoints(APC) + handle_direction(APC) + load_damage(APC) + APC.update_icon() + +/obj/effect/vehicle_spawner/arc/decrepit/load_hardpoints(obj/vehicle/multitile/apc/arc/V) + V.add_hardpoint(new /obj/item/hardpoint/primary/arc_frontalcannon) + V.add_hardpoint(new /obj/item/hardpoint/support/flare_launcher) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/apc_wheels/arc) + +//PRESET: default hardpoints +/obj/effect/vehicle_spawner/arc/fixed/load_hardpoints(obj/vehicle/multitile/apc/arc/V) + V.add_hardpoint(new /obj/item/hardpoint/primary/arc_frontalcannon) + V.add_hardpoint(new /obj/item/hardpoint/support/flare_launcher) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/apc_wheels/arc) diff --git a/code/modules/vehicles/apc/arc_weaponless.dm b/code/modules/vehicles/apc/arc_weaponless.dm new file mode 100644 index 0000000000..372c798b14 --- /dev/null +++ b/code/modules/vehicles/apc/arc_weaponless.dm @@ -0,0 +1,147 @@ + +/obj/vehicle/multitile/apc/arc/weaponless + name = "M540-S Armored Recon Carrier" + desc = "An M540-S Armored Recon Carrier, also known as an ARC. This is a much lighter and more nimble version to the M557A3 APC, often preferred by recon forces for that very reason. This variant has had it's weapons removed to lighten it's weight and improve it's stealth capabilities. Entrance on the right." + + icon_state = "arc_weaponless" + + interior_map = /datum/map_template/interior/arc + + passengers_slots = 9 + + entrances = list( + "right" = list(-2, 0), + ) + + seats = list( + VEHICLE_DRIVER = null, + VEHICLE_GUNNER = null, + ) + + active_hp = list( + VEHICLE_DRIVER = null, + VEHICLE_GUNNER = null, + ) + + hardpoints_allowed = list( + /obj/item/hardpoint/support/flare_launcher, + /obj/item/hardpoint/locomotion/apc_wheels/arc, + ) + +/obj/vehicle/multitile/apc/arc/weaponless/add_seated_verbs(mob/living/M, seat) + if(!M.client) + return + add_verb(M.client, list( + /obj/vehicle/multitile/proc/get_status_info, + /obj/vehicle/multitile/proc/open_controls_guide, + /obj/vehicle/multitile/proc/name_vehicle, + )) + if(seat == VEHICLE_DRIVER) + add_verb(M.client, list( + /obj/vehicle/multitile/proc/toggle_door_lock, + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + /obj/vehicle/multitile/proc/activate_horn, + )) + else if(seat == VEHICLE_GUNNER) + add_verb(M.client, list( + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + )) + +/obj/vehicle/multitile/apc/arc/weaponless/remove_seated_verbs(mob/living/M, seat) + if(!M.client) + return + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/get_status_info, + /obj/vehicle/multitile/proc/open_controls_guide, + /obj/vehicle/multitile/proc/name_vehicle, + )) + SStgui.close_user_uis(M, src) + if(seat == VEHICLE_DRIVER) + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/toggle_door_lock, + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + /obj/vehicle/multitile/proc/activate_horn, + )) + else if(seat == VEHICLE_GUNNER) + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/switch_hardpoint, + /obj/vehicle/multitile/proc/cycle_hardpoint, + /obj/vehicle/multitile/proc/toggle_shift_click, + )) + +/obj/vehicle/multitile/apc/arc/weaponless/initialize_cameras(change_tag = FALSE) + if(!camera) + camera = new /obj/structure/machinery/camera/vehicle(src) + if(change_tag) + camera.c_tag = "#[rand(1,100)] M540-S \"[nickname]\" ARC" + if(camera_int) + camera_int.c_tag = camera.c_tag + " interior" + else + camera.c_tag = "#[rand(1,100)] M540-S ARC" + if(camera_int) + camera_int.c_tag = camera.c_tag + " interior" + +/obj/vehicle/multitile/apc/arc/weaponless/set_muzzle_offsets(obj/item/hardpoint/HP) + //sets muzzle flash offsets for APC weapons + switch(HP.slot) + if(HDPT_SUPPORT) //flare + HP.muzzle_flash_pos = list( + "1" = list(-4, -40), + "2" = list(5, 5), + "4" = list(-25, 6), + "8" = list(25, -4) + ) + return ..() + +/* +** PRESETS SPAWNERS +*/ +/obj/effect/vehicle_spawner/arc/weaponless + name = "Weaponless ARC Spawner" + icon = 'icons/obj/vehicles/arc.dmi' + icon_state = "arc_weaponless" + pixel_x = -48 + pixel_y = -48 + +/obj/effect/vehicle_spawner/arc/weaponless/Initialize() + . = ..() + spawn_vehicle() + qdel(src) + +//PRESET: no hardpoints +/obj/effect/vehicle_spawner/arc/weaponless/spawn_vehicle() + var/obj/vehicle/multitile/apc/arc/weaponless/APC = new (loc) + + load_misc(APC) + load_hardpoints(APC) + handle_direction(APC) + APC.update_icon() + +//PRESET: only wheels installed +/obj/effect/vehicle_spawner/arc/weaponless/plain/load_hardpoints(obj/vehicle/multitile/apc/arc/weaponless/V) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/apc_wheels/arc) + +//PRESET: default hardpoints, destroyed +/obj/effect/vehicle_spawner/arc/weaponless/decrepit/spawn_vehicle() + var/obj/vehicle/multitile/apc/arc/weaponless/APC = new (loc) + + load_misc(APC) + load_hardpoints(APC) + handle_direction(APC) + load_damage(APC) + APC.update_icon() + +/obj/effect/vehicle_spawner/arc/weaponless/decrepit/load_hardpoints(obj/vehicle/multitile/apc/arc/weaponless/V) + V.add_hardpoint(new /obj/item/hardpoint/support/flare_launcher) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/apc_wheels/arc) + +//PRESET: default hardpoints +/obj/effect/vehicle_spawner/arc/weaponless/fixed/load_hardpoints(obj/vehicle/multitile/apc/arc/weaponless/V) + V.add_hardpoint(new /obj/item/hardpoint/support/flare_launcher) + V.add_hardpoint(new /obj/item/hardpoint/locomotion/apc_wheels/arc) diff --git a/code/modules/vehicles/apc/interior.dm b/code/modules/vehicles/apc/interior.dm index d3947db2b8..010ea9ac2c 100644 --- a/code/modules/vehicles/apc/interior.dm +++ b/code/modules/vehicles/apc/interior.dm @@ -28,6 +28,11 @@ /obj/structure/interior_exit/vehicle/apc/rear/right icon_state = "door_rear_right" +/obj/structure/interior_exit/vehicle/arc + name = "ARC side door" + icon = 'icons/obj/vehicles/interiors/arc.dmi' + icon_state = "exit_door" + /obj/structure/prop/vehicle name = "Generic vehicle prop" desc = "Adds more flavour to vehicle interior." @@ -40,6 +45,13 @@ breakable = FALSE indestructible = TRUE +/obj/structure/prop/vehicle/arc + name = "ARC chassis" + + icon = 'icons/obj/vehicles/interiors/arc_chassis.dmi' + icon_state = "arc_chassis" + + /obj/structure/prop/vehicle/firing_port_weapon name = "M56 FPW handle" desc = "A control handle for a modified M56B Smartgun installed on the sides of M577 Armored Personnel Carrier as a Firing Port Weapon. \ diff --git a/code/modules/vehicles/hardpoints/holder/tank_turret.dm b/code/modules/vehicles/hardpoints/holder/tank_turret.dm index e25ba4119e..6e5140be5f 100644 --- a/code/modules/vehicles/hardpoints/holder/tank_turret.dm +++ b/code/modules/vehicles/hardpoints/holder/tank_turret.dm @@ -67,6 +67,12 @@ burst_delay = 1.0 SECONDS extra_delay = 5.0 SECONDS +/obj/item/hardpoint/holder/tank_turret/set_bullet_traits() + ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) + /obj/item/hardpoint/holder/tank_turret/update_icon() var/broken = (health <= 0) icon_state = "tank_turret_[broken]" diff --git a/code/modules/vehicles/hardpoints/primary/arc_frontal.dm b/code/modules/vehicles/hardpoints/primary/arc_frontal.dm new file mode 100644 index 0000000000..68dd21aafa --- /dev/null +++ b/code/modules/vehicles/hardpoints/primary/arc_frontal.dm @@ -0,0 +1,39 @@ +/obj/item/hardpoint/primary/arc_frontalcannon + name = "Bleihagel RE-RE850 Frontal Rotary Cannon" + desc = "A peculiar turret with two rotary cannons strapped to the front of it. Normally equipped with an autonomous mode, this one curiously lacks the feature." + icon = 'icons/obj/vehicles/hardpoints/arc.dmi' + + icon_state = "frontalcannon" + disp_icon = "arc" + disp_icon_state = "frontalcannon" + activation_sounds = list('sound/weapons/gun_smartgun1.ogg', 'sound/weapons/gun_smartgun2.ogg', 'sound/weapons/gun_smartgun3.ogg') + + damage_multiplier = 0.15 + + health = 2000 + firing_arc = 120 + + origins = list(0, -2) + + allowed_seat = VEHICLE_DRIVER + + ammo = new /obj/item/ammo_magazine/hardpoint/m56_cupola/frontal_cannon + max_clips = 1 + + use_muzzle_flash = TRUE + angle_muzzleflash = FALSE + muzzleflash_icon_state = "muzzle_flash_double" + + muzzle_flash_pos = list( + "1" = list(1, 5), + "2" = list(1, -30), + "4" = list(17, 3), + "8" = list(-17, 3) + ) + + scatter = 1 + gun_firemode = GUN_FIREMODE_AUTOMATIC + gun_firemode_list = list( + GUN_FIREMODE_AUTOMATIC, + ) + fire_delay = 0.05 SECONDS diff --git a/code/modules/vehicles/hardpoints/primary/autocannon.dm b/code/modules/vehicles/hardpoints/primary/autocannon.dm index e4412597c9..aa4ec68128 100644 --- a/code/modules/vehicles/hardpoints/primary/autocannon.dm +++ b/code/modules/vehicles/hardpoints/primary/autocannon.dm @@ -28,3 +28,9 @@ GUN_FIREMODE_AUTOMATIC, ) fire_delay = 0.7 SECONDS + +/obj/item/hardpoint/primary/autocannon/set_bullet_traits() + ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) diff --git a/code/modules/vehicles/hardpoints/primary/ltb.dm b/code/modules/vehicles/hardpoints/primary/ltb.dm index 195dac44f3..83e8c1ba96 100644 --- a/code/modules/vehicles/hardpoints/primary/ltb.dm +++ b/code/modules/vehicles/hardpoints/primary/ltb.dm @@ -31,3 +31,9 @@ scatter = 0 fire_delay = 10.0 SECONDS + +/obj/item/hardpoint/primary/cannon/set_bullet_traits() + ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) diff --git a/code/modules/vehicles/hardpoints/primary/minigun.dm b/code/modules/vehicles/hardpoints/primary/minigun.dm index 60a1d8ca90..0aee9ae5f7 100644 --- a/code/modules/vehicles/hardpoints/primary/minigun.dm +++ b/code/modules/vehicles/hardpoints/primary/minigun.dm @@ -52,6 +52,12 @@ /// When it was last fired, related to world.time. var/last_fired = 0 +/obj/item/hardpoint/primary/minigun/set_bullet_traits() + ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) + /obj/item/hardpoint/primary/minigun/set_fire_delay(value) fire_delay = value SEND_SIGNAL(src, COMSIG_GUN_AUTOFIREDELAY_MODIFIED, fire_delay * stage_delay_mult) diff --git a/code/modules/vehicles/hardpoints/secondary/tow.dm b/code/modules/vehicles/hardpoints/secondary/tow.dm index ac4c29778b..868bd96117 100644 --- a/code/modules/vehicles/hardpoints/secondary/tow.dm +++ b/code/modules/vehicles/hardpoints/secondary/tow.dm @@ -31,3 +31,9 @@ scatter = 2 fire_delay = 7.0 SECONDS +/obj/item/hardpoint/secondary/towlauncher/set_bullet_traits() + ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) + diff --git a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm index 0060f78344..7df058b4a0 100644 --- a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm +++ b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm @@ -15,3 +15,12 @@ move_max_momentum = 2 move_momentum_build_factor = 1.5 move_turn_momentum_loss_factor = 0.5 + +/obj/item/hardpoint/locomotion/apc_wheels/arc + name = "ARC Wheels" + desc = "Not to be confused with the APC wheels, these are designed for the M540 ARC in mind." + icon = 'icons/obj/vehicles/hardpoints/arc.dmi' + + icon_state = "tires" + disp_icon = "arc" + disp_icon_state = "wheels" diff --git a/code/modules/vehicles/interior/areas.dm b/code/modules/vehicles/interior/areas.dm index f18c4d03c8..326ea8ee4a 100644 --- a/code/modules/vehicles/interior/areas.dm +++ b/code/modules/vehicles/interior/areas.dm @@ -28,6 +28,10 @@ name = "\improper M557A3 APC interior" icon_state = "apc_movie" +/area/vehicle/apc/arc + name = "\improper M540 ARC interior" + icon_state = "arc" + /area/vehicle/van name = "van interior" icon_state = "van" diff --git a/code/modules/vehicles/tank/tank.dm b/code/modules/vehicles/tank/tank.dm index a23eeec5a5..3264b4bcea 100644 --- a/code/modules/vehicles/tank/tank.dm +++ b/code/modules/vehicles/tank/tank.dm @@ -15,8 +15,7 @@ interior_map = /datum/map_template/interior/tank - //tank always has 2 crewmen slot reserved and 1 general slot for other roles. - passengers_slots = 1 + passengers_slots = 4 //this is done in case VCs die inside the tank, so that someone else can come in and take them out. revivable_dead_slots = 2 xenos_slots = 4 diff --git a/colonialmarines.dme b/colonialmarines.dme index 9872ffc48e..4e16283d5c 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -2392,6 +2392,8 @@ #include "code\modules\vehicles\apc\apc_command.dm" #include "code\modules\vehicles\apc\apc_medical.dm" #include "code\modules\vehicles\apc\apc_movie.dm" +#include "code\modules\vehicles\apc\arc.dm" +#include "code\modules\vehicles\apc\arc_weaponless.dm" #include "code\modules\vehicles\apc\interior.dm" #include "code\modules\vehicles\hardpoints\hardpoint.dm" #include "code\modules\vehicles\hardpoints\armor\armor.dm" @@ -2415,6 +2417,7 @@ #include "code\modules\vehicles\hardpoints\hardpoint_ammo\tow_ammo.dm" #include "code\modules\vehicles\hardpoints\holder\holder.dm" #include "code\modules\vehicles\hardpoints\holder\tank_turret.dm" +#include "code\modules\vehicles\hardpoints\primary\arc_frontal.dm" #include "code\modules\vehicles\hardpoints\primary\autocannon.dm" #include "code\modules\vehicles\hardpoints\primary\dual_cannon.dm" #include "code\modules\vehicles\hardpoints\primary\flamer.dm" diff --git a/config/example/config.txt b/config/example/config.txt index 8a976e02a5..ee22fbaf90 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -243,3 +243,5 @@ GAMEMODE_DEFAULT Extended ## How long the mob will take to chestburst, in seconds #EMBRYO_BURST_TIMER 450 + +CLIENT_ERROR_VERSION 514 diff --git a/dependencies.sh b/dependencies.sh index f88c2f9b0a..01d0ca5c97 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -4,8 +4,8 @@ #Final authority on what's required to fully build the project # byond version -export BYOND_MAJOR=514 -export BYOND_MINOR=1588 +export BYOND_MAJOR=515 +export BYOND_MINOR=1627 #rust_g git tag export RUST_G_VERSION=2.1.0 @@ -15,9 +15,7 @@ export NODE_VERSION=14 export NODE_VERSION_PRECISE=14.16.1 # SpacemanDMM git tag -export SPACEMAN_DMM_VERSION=suite-1.7.2 +export SPACEMAN_DMM_VERSION=suite-1.8 # Python version for mapmerge and other tools export PYTHON_VERSION=3.7.9 - -export OPENDREAM_VERSION=0.2.0 diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi index 3b3245f321..44ac56e1af 100644 Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ diff --git a/icons/mob/humans/onmob/belt.dmi b/icons/mob/humans/onmob/belt.dmi index c471b62bb3..68194665bc 100644 Binary files a/icons/mob/humans/onmob/belt.dmi and b/icons/mob/humans/onmob/belt.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_0.dmi b/icons/mob/humans/onmob/items_lefthand_0.dmi index f6fa1b2be3..f23bd09cd7 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_0.dmi and b/icons/mob/humans/onmob/items_lefthand_0.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi index 37b5f9bcc6..04faa8dc5b 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_0.dmi b/icons/mob/humans/onmob/items_righthand_0.dmi index 1877a23923..702c069bdc 100644 Binary files a/icons/mob/humans/onmob/items_righthand_0.dmi and b/icons/mob/humans/onmob/items_righthand_0.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi index 3ad8b52d04..e59858d94b 100644 Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ diff --git a/icons/mob/humans/onmob/suit_slot.dmi b/icons/mob/humans/onmob/suit_slot.dmi index 3ab0dbfa52..7311c0a733 100644 Binary files a/icons/mob/humans/onmob/suit_slot.dmi and b/icons/mob/humans/onmob/suit_slot.dmi differ diff --git a/icons/obj/items/binoculars.dmi b/icons/obj/items/binoculars.dmi index b861687ba6..1797c12eb3 100644 Binary files a/icons/obj/items/binoculars.dmi and b/icons/obj/items/binoculars.dmi differ diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi index f164928fff..b608d278ff 100644 Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi index 75c46ae6a7..ada7540e96 100644 Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/barrel.dmi b/icons/obj/items/weapons/guns/attachments/barrel.dmi index 04d1612ca4..5e051819e4 100644 Binary files a/icons/obj/items/weapons/guns/attachments/barrel.dmi and b/icons/obj/items/weapons/guns/attachments/barrel.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index 52ea934b17..c896053c8e 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi index 04718caddc..248f4ffe44 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi index 717a118282..4a4d07d410 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi index 9ce7e553ba..d3ea7b9531 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi index 9f69b4ac68..09973bb7b8 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi index b51ed60443..14d73cfdc5 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi differ diff --git a/icons/obj/structures/doors/securedoor.dmi b/icons/obj/structures/doors/securedoor.dmi index 9785fdb338..fff522458e 100644 Binary files a/icons/obj/structures/doors/securedoor.dmi and b/icons/obj/structures/doors/securedoor.dmi differ diff --git a/icons/obj/vehicles/arc.dmi b/icons/obj/vehicles/arc.dmi new file mode 100644 index 0000000000..c7299ee22c Binary files /dev/null and b/icons/obj/vehicles/arc.dmi differ diff --git a/icons/obj/vehicles/hardpoints/arc.dmi b/icons/obj/vehicles/hardpoints/arc.dmi new file mode 100644 index 0000000000..873467317d Binary files /dev/null and b/icons/obj/vehicles/hardpoints/arc.dmi differ diff --git a/icons/obj/vehicles/interiors/arc.dmi b/icons/obj/vehicles/interiors/arc.dmi new file mode 100644 index 0000000000..9f921a02f8 Binary files /dev/null and b/icons/obj/vehicles/interiors/arc.dmi differ diff --git a/icons/obj/vehicles/interiors/arc_chassis.dmi b/icons/obj/vehicles/interiors/arc_chassis.dmi new file mode 100644 index 0000000000..8be5d23047 Binary files /dev/null and b/icons/obj/vehicles/interiors/arc_chassis.dmi differ diff --git a/icons/turf/areas_interiors.dmi b/icons/turf/areas_interiors.dmi index 40e6e906ce..0b9d67bc44 100644 Binary files a/icons/turf/areas_interiors.dmi and b/icons/turf/areas_interiors.dmi differ diff --git a/map_config/shipmaps.txt b/map_config/shipmaps.txt index 0140f4655b..fd7e4a932e 100644 --- a/map_config/shipmaps.txt +++ b/map_config/shipmaps.txt @@ -24,4 +24,7 @@ map chapaev endmap map rover +endmap + +map golden_arrow_classic endmap \ No newline at end of file diff --git a/maps/golden_arrow_classic.json b/maps/golden_arrow_classic.json new file mode 100644 index 0000000000..99e28d93be --- /dev/null +++ b/maps/golden_arrow_classic.json @@ -0,0 +1,9 @@ +{ + "map_name": "USS Golden Arrow (Classic)", + "map_path": "map_files/golden_arrow_classic", + "map_file": "golden_arrow_classic.dmm", + "webmap_url": "GoldenArrow", + "traits": [{"Marine Main Ship": true}], + "nightmare_path": "maps/Nightmare/maps/golden_arrow_classic/", + "platoon": "/datum/squad/marine/alpha" +} diff --git a/maps/interiors/arc.dmm b/maps/interiors/arc.dmm new file mode 100644 index 0000000000..50c5f96b62 --- /dev/null +++ b/maps/interiors/arc.dmm @@ -0,0 +1,110 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/void{ + opacity = 0 + }, +/area/space) +"q" = ( +/obj/structure/prop/vehicle/arc{ + layer = 2.01; + mouse_opacity = 0 + }, +/turf/closed/void{ + opacity = 0 + }, +/area/space) +"r" = ( +/obj/effect/landmark/interior/spawn/telephone{ + pixel_x = -13; + pixel_y = 15; + layer = 2.9 + }, +/obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ + dir = 4 + }, +/turf/open/floor, +/area/vehicle/apc/arc) +"G" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8; + dir = 1 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8; + dir = 1 + }, +/turf/open/floor, +/area/vehicle/apc/arc) +"H" = ( +/obj/structure/bed/chair/vehicle{ + dir = 4; + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor, +/area/vehicle/apc/arc) +"I" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/obj/effect/landmark/interior/spawn/interior_viewport{ + pixel_x = 8; + pixel_y = 4; + layer = 2.9 + }, +/turf/open/floor, +/area/vehicle/apc/arc) +"N" = ( +/obj/effect/landmark/interior/spawn/entrance{ + alpha = 50; + exit_type = /obj/structure/interior_exit/vehicle/arc; + name = "ARC exit door"; + tag = "right"; + pixel_y = -10 + }, +/turf/open/floor, +/area/vehicle/apc/arc) +"X" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/vehicle{ + pixel_y = 14; + pixel_x = -8 + }, +/turf/open/floor, +/area/vehicle/apc/arc) + +(1,1,1) = {" +a +a +a +q +"} +(2,1,1) = {" +a +X +G +a +"} +(3,1,1) = {" +a +I +N +a +"} +(4,1,1) = {" +a +r +H +a +"} +(5,1,1) = {" +a +a +a +a +"} diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index 947d71b406..24b7b21870 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -203,23 +203,6 @@ icon_state = "floor2" }, /area/golden_arrow/dorms) -"bw" = ( -/obj/structure/closet/secure_closet{ - req_access_txt = "243;238"; - name = "machinegunner locker" - }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/clothing/suit/storage/marine/faction/UPP/heavy, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) "bC" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ name = "ship-grade camera"; @@ -718,6 +701,15 @@ icon_state = "floor3" }, /area/golden_arrow/engineering) +"gl" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_two) "gm" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -1044,6 +1036,22 @@ icon_state = "floor3" }, /area/golden_arrow/cryo_cells) +"jV" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23/pve, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_two) "jX" = ( /obj/structure/bed{ can_buckle = 0 @@ -1549,15 +1557,6 @@ icon_state = "multi_tiles" }, /area/golden_arrow/engineering) -"pw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/type71, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) "py" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ req_one_access = null; @@ -2085,6 +2084,15 @@ icon_state = "floor2" }, /area/golden_arrow/hangar) +"tS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/gun_rack/type71/unloaded, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_two) "tT" = ( /obj/structure/machinery/shower{ dir = 8 @@ -2126,6 +2134,27 @@ "tZ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_commander_rooms) +"ud" = ( +/obj/structure/closet/secure_closet{ + req_access_txt = "243;238"; + name = "machinegunner locker" + }, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_two) "uf" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -2245,6 +2274,34 @@ icon_state = "floor3" }, /area/golden_arrow/briefing) +"vi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata{ + dir = 4; + icon_state = "floor3" + }, +/area/golden_arrow/cryo_cells) "vk" = ( /obj/structure/machinery/light, /turf/open/floor/strata{ @@ -2567,15 +2624,6 @@ icon_state = "floor2" }, /area/golden_arrow/briefing) -"yu" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) "yH" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/hangar) @@ -2740,22 +2788,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"AU" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23/pve, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) "AW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/coffee, @@ -2776,6 +2808,22 @@ icon_state = "multi_tiles" }, /area/golden_arrow/briefing) +"Bi" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23/pve, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_one) "Bj" = ( /obj/structure/sink{ dir = 4; @@ -3030,15 +3078,6 @@ icon_state = "floor3" }, /area/golden_arrow/prep_hallway) -"CU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/type71, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) "CW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/belt/utility/full, @@ -3120,6 +3159,15 @@ icon_state = "multi_tiles" }, /area/golden_arrow/canteen) +"DN" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_one) "DW" = ( /obj/structure/machinery/floodlight/landing/floor, /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -3470,15 +3518,6 @@ icon_state = "floor3" }, /area/golden_arrow/hangar) -"GT" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) "GU" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata{ @@ -3632,23 +3671,6 @@ "IS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/dorms) -"IW" = ( -/obj/structure/closet/secure_closet{ - req_access_txt = "243;237"; - name = "machinegunner locker" - }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/clothing/suit/storage/marine/faction/UPP/heavy, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) "Jc" = ( /obj/effect/landmark/start/bridge/upp, /turf/open/floor/strata{ @@ -4192,6 +4214,16 @@ icon_state = "floor2" }, /area/golden_arrow/dorms) +"OR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper/crumpled/bloody{ + pixel_y = 6 + }, +/obj/item/attachable/bayonet/upp, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_one) "OX" = ( /turf/open/floor/strata{ icon_state = "floor2" @@ -4421,20 +4453,11 @@ icon_state = "floor3" }, /area/golden_arrow/medical) -"RM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/attachable/bayonet/upp, -/obj/effect/decal/cleanable/blood/drip{ - layer = 6; - plane = 2.8; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/blood/drip{ - layer = 6; - plane = 2.8; - pixel_y = 16; - pixel_x = -7 +"RF" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/gun_rack/type71/unloaded, /turf/open/floor/strata{ icon_state = "floor2" }, @@ -4815,22 +4838,6 @@ icon_state = "multi_tiles" }, /area/golden_arrow/canteen) -"VE" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23/pve, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) "VH" = ( /obj/structure/platform/strata/metal{ dir = 1; @@ -5274,6 +5281,27 @@ icon_state = "floor3" }, /area/golden_arrow/engineering) +"ZQ" = ( +/obj/structure/closet/secure_closet{ + req_access_txt = "243;237"; + name = "machinegunner locker" + }, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata{ + icon_state = "floor2" + }, +/area/golden_arrow/squad_one) "ZU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12501,7 +12529,7 @@ tZ tZ tZ ei -RM +OR dU dU dU @@ -12805,11 +12833,11 @@ kb ic Jc ww -CU +RF dU Ef dU -AU +Bi ww QF hq @@ -12817,11 +12845,11 @@ hq vf vW NU -pw +tS Hp XL Hp -VE +jV CM Gt Qr @@ -12957,11 +12985,11 @@ TB VP TB ww -IW +ZQ dU MH dU -yu +DN ww LL vW @@ -12969,11 +12997,11 @@ es Rm vW NU -bw +ud Hp Jt Hp -GT +gl CM Tz Qr @@ -14644,7 +14672,7 @@ BK BK wH VL -BK +vi iO bC CJ diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index ab5d87ee73..e01219f319 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1,31959 +1,36668 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/structure/machinery/light, -/obj/structure/target{ - name = "ready line Ronald" - }, -/obj/item/clothing/suit/storage/marine/heavy/smooth, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "af" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"ag" = ( -/obj/structure/window/framed/almayer, +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/golden_arrow/briefing) -"ah" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/golden_arrow/hangar) +"aj" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/item/tool/warning_cone{ - pixel_x = -7; - pixel_y = 6 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/golden_arrow/hangar) +"ak" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) "al" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/hangar) +/area/golden_arrow/platoon_commander_rooms) "am" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) +/area/golden_arrow/hangar) "an" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"aq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/vending/walkman{ + pixel_y = 21; + pixel_x = 10; + density = 0 }, -/area/golden_arrow/engineering) +/obj/item/trash/kepler{ + pixel_x = 8; + pixel_y = 44 + }, +/obj/item/trash/barcardine, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) "ar" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"as" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" }, /area/golden_arrow/hangar) -"aw" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 9; - pixel_y = 29 +"au" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/golden_arrow/hangar) -"ax" = ( -/obj/structure/cargo_container/arious/mid, +/area/golden_arrow/platoonarmory) +"aA" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/obj/item/trash/burger, +/obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"aB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/wy/left{ + opacity = 0 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"ay" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 12; - pixel_y = 29 +"aD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Second Platoon Ready Bay Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, /area/golden_arrow/hangar) -"aA" = ( +"aE" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"aB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, /area/golden_arrow/hangar) +"aF" = ( +/obj/structure/shuttle/part/dropship1/transparent/nose_center{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) "aG" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, +/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/elevator, +/area/golden_arrow/supply) +"aH" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "aI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/closed/wall/almayer/outer, +/area/golden_arrow/medical) +"aJ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/storage{ + pixel_x = -18; + pixel_y = -7 + }, +/obj/structure/sign/safety/one{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"aN" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"aJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/golden_arrow/cryo_cells) +"aP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/prop/magazine/book/borntokill, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"aN" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/area/golden_arrow/platoonarmory) +"aS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/hangar) -"aO" = ( -/obj/item/prop/colony/game, -/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/golden_arrow/dorms) -"aQ" = ( -/obj/structure/sign/safety/galley{ - pixel_y = 29 +/area/golden_arrow/prep_hallway) +"aV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"aS" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"aT" = ( -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - network = list("Golden Arrow","Vehicle","Midway"); - pixel_x = -17 - }, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - dir = 4; - icon_state = "shuttle"; - layer = 2.97; - name = "Tactical Map Display"; - pixel_x = -17; - pixel_y = 14 +/area/golden_arrow/hangar) +"aW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) +/area/golden_arrow/platoonprep) "aX" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"aY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/golden_arrow/supply) -"ba" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/stool, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"bb" = ( +"aZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 6 }, -/area/golden_arrow/cryo_cells) -"bf" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"bg" = ( -/obj/structure/machinery/light{ - dir = 1 +"ba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, +/area/golden_arrow/hangar) +"bb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"bh" = ( -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, +"bc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/cable{ + layer = 2.36 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"bl" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/firingrange) -"bo" = ( -/obj/structure/window/framed/almayer, +/area/golden_arrow/platoonprep) +"bd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"be" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/platoon_commander_rooms) -"bq" = ( +/area/golden_arrow/prep_hallway) +"bf" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -26 + }, +/obj/structure/sign/safety/one{ + pixel_x = 14; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"bg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"bh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Maintenance Bay Blast Door"; + closed_layer = 3.3; + layer = 3.3; + open_layer = 3.3 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"bi" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game{ + pixel_y = 10; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"bj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"bk" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoonarmory) +"bl" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/golden_arrow/cryo_cells) +"bm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"bp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"bq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4 + }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "br" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/dorms) -"bu" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, +/area/golden_arrow/cryo_cells) +"bt" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" }, /area/golden_arrow/hangar) -"bw" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) +"bx" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) "by" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/item/tool/warning_cone{ + pixel_y = 16; + pixel_x = -15 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"bB" = ( -/obj/effect/decal/cleanable/dirt, +"bC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"bD" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" +/area/golden_arrow/hangar) +"bE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"bF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/golden_arrow/platoon_commander_rooms) -"bL" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Corpsman"; - has_cryo_gear = 0 +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"bG" = ( +/turf/closed/shuttle/midway{ + icon_state = "30"; + name = "\improper Tripoli" }, -/obj/item/clothing/shoes/marine/knife, -/obj/item/device/radio/headset/almayer/marine, -/obj/item/clothing/under/marine/medic, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/area/golden_arrow/hangar) +"bI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/medical) -"bO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"bQ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/area/golden_arrow/platoonprep) +"bK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = 14; + pixel_x = -4 + }, +/obj/item/ashtray/plastic{ + pixel_y = 3; + pixel_x = -10 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"bN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/hangar) -"bR" = ( -/obj/structure/bed/chair/comfy, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"bP" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"bQ" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"bS" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" + icon_state = "cargo" }, -/obj/structure/platform, -/obj/structure/machinery/light, +/area/golden_arrow/hangar) +"bR" = ( /turf/open/floor/almayer{ + allow_construction = 0; icon_state = "plate" }, +/area/golden_arrow/hangar) +"bS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + icon_state = "shuttle"; + layer = 2.97; + name = "Tactical Map Display"; + pixel_y = 21 + }, +/obj/structure/noticeboard{ + pixel_y = 30; + pixel_x = -21 + }, +/turf/open/floor/almayer, /area/golden_arrow/briefing) -"bZ" = ( -/obj/structure/window/framed/almayer, +"bT" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/golden_arrow/supply) -"ca" = ( -/turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) -"ce" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"bX" = ( +/obj/effect/decal/siding{ + icon_state = "siding9" }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"cb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/golden_arrow/firingrange) -"cj" = ( +/area/golden_arrow/cryo_cells) +"cc" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"cf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/hangar) +"cg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"ci" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case{ + pixel_y = 11 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"cl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/golden_arrow/hangar) +"cj" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"cl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"cm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "co" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "plate" }, -/area/golden_arrow/supply) -"cp" = ( +/area/golden_arrow/hangar) +"cu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"cr" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, +"cv" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black"; + dir = 1 }, -/area/golden_arrow/cryo_cells) -"cs" = ( +/area/golden_arrow/hangar) +"cx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"cB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_one) -"ct" = ( +/area/golden_arrow/hangar) +"cE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + layer = 3.3 }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cJ" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" }, -/area/golden_arrow/hangar) -"cw" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 +/area/golden_arrow/cryo_cells) +"cM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "cargo_arrow" }, -/area/golden_arrow/engineering) -"cy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/golden_arrow/cryo_cells) +"cO" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1, -/obj/item/ammo_magazine/rifle/m41aMK1/heap{ - desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contained High-Explosive Armor-Piercing bullets. It also has some... notches on the side..?"; - current_rounds = 0; - pixel_y = 6; - pixel_x = 13 +/obj/structure/barricade/handrail{ + layer = 3.1; + pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"cQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/golden_arrow/dorms) +"cR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/squad_one) -"cz" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_one) -"cA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 +/area/golden_arrow/hangar) +"cW" = ( +/obj/structure/cargo_container/arious/right, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + pixel_y = 30; + pixel_x = 9; + phone_id = "Overwatch"; + name = "overwatch receiver" }, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;40"; - req_one_access = list() +/obj/structure/machinery/computer/ares_console{ + dir = 4; + pixel_y = 6; + pixel_x = 2 + }, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"cY" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"cZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"cB" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, +/area/golden_arrow/hangar) +"da" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"db" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"de" = ( +/turf/closed/shuttle/midway{ + icon_state = "103"; + name = "\improper Tripoli" + }, /area/golden_arrow/hangar) -"cD" = ( +"df" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"dg" = ( /obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 7 +/obj/item/tool/screwdriver{ + pixel_y = 17; + pixel_x = -8 }, -/obj/item/storage/box/co2_knife{ - pixel_x = 3; - pixel_y = 13 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 5 }, /turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"cG" = ( +/area/golden_arrow/engineering) +"di" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ dir = 5; icon_state = "plating" }, /area/golden_arrow/engineering) -"cH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"cJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, +"dj" = ( +/obj/structure/machinery/chem_dispenser, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/beaker/bluespace, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/medical) -"cL" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, +"dm" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/golden_arrow/hangar) -"cR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"do" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/shared_office) +"dp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"cS" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Platoon Medic Office"; - req_one_access = list(); - req_one_access_txt = "8" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"dr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/spawner/prop_gun/m41aMK1{ + pixel_y = -3; + pixel_x = 6 }, -/area/golden_arrow/medical) -"cT" = ( /turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"cU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/area/golden_arrow/platoonprep) +"ds" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = 11 }, -/area/golden_arrow/prep_hallway) -"cV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/pumpshotgun/special, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_one) -"cZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/area/golden_arrow/hangar) +"du" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/area/golden_arrow/medical) -"dd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/machinery/computer/crew/alt{ + dir = 4; + pixel_x = -10 }, -/area/golden_arrow/medical) -"de" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"dw" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"dg" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"dz" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"dA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/golden_arrow/engineering) -"di" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, /area/golden_arrow/cryo_cells) -"dj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 30 - }, +"dF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/engineering) -"dl" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/coffee{ - pixel_x = -19 +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"dm" = ( +/area/golden_arrow/cryo_cells) +"dH" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"dn" = ( -/obj/structure/bed/chair/comfy{ + icon_state = "blackcorner"; dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/golden_arrow/hangar) +"dL" = ( +/obj/structure/closet/secure_closet{ + icon_broken = "fridgebroken"; + icon_closed = "fridge"; + icon_locked = "fridge1"; + icon_off = "fridge1"; + icon_opened = "fridgeopen"; + icon_state = "fridge1"; + name = "beverage fridge" + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -4; + pixel_x = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -9 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" }, -/area/golden_arrow/canteen) -"dr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"ds" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +/area/golden_arrow/cryo_cells) +"dM" = ( +/turf/closed/shuttle/midway{ + icon_state = "72"; + name = "\improper Tripoli" }, -/obj/item/tool/wirecutters{ - pixel_y = -6 +/area/golden_arrow/hangar) +"dN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" }, -/obj/item/device/multitool{ - pixel_x = -10 +/area/golden_arrow/platoonprep) +"dO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"dt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Storage Bay One Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"dS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"dW" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 10; + buckling_y = 10 }, -/area/golden_arrow/medical) -"dv" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"dZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"ee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"dA" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/area/golden_arrow/hangar) +"ef" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_y = 13; + pixel_x = 1 }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_y = 10; + pixel_x = 4; + layer = 3.2 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + pixel_y = 10; + pixel_x = -7 + }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"dB" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +"eg" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 13; + pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/trash/plate{ + pixel_x = -3 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"eh" = ( +/turf/closed/shuttle/midway{ + icon_state = "75"; + name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"dE" = ( +"ei" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"ek" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/storage/box/pillbottles{ + pixel_y = 9 }, -/area/golden_arrow/medical) -"dG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/storage/box/pillbottles{ + pixel_y = 2 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/cryo_cells) -"dH" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, +/area/golden_arrow/medical) +"em" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_commander_rooms) -"dJ" = ( -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"dO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/area/golden_arrow/engineering) +"en" = ( +/obj/structure/sink{ + pixel_y = 24; + layer = 3.1 + }, +/obj/structure/mirror{ + pixel_y = 35; + pixel_x = -1 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/canteen) -"dP" = ( -/obj/structure/closet/firecloset, +/area/golden_arrow/cryo_cells) +"eo" = ( +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"ep" = ( +/obj/structure/largecrate/random/case/double, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/golden_arrow/hangar) -"dX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"ea" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"eh" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = -5 - }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"ek" = ( -/obj/structure/machinery/light, +"eq" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, /turf/open/floor/almayer{ - icon_state = "redfull" + dir = 5; + icon_state = "plating" }, -/area/golden_arrow/firingrange) -"eo" = ( +/area/golden_arrow/engineering) +"er" = ( /turf/open/floor/almayer{ + dir = 1; icon_state = "cargo_arrow" }, /area/golden_arrow/prep_hallway) -"eu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ev" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; + dir = 9 }, /area/golden_arrow/hangar) +"ew" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) "ey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; +/turf/open/floor/almayer{ dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 + icon_state = "cargo_arrow" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/hangar) +"ez" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = 2; + pixel_x = 5 }, -/area/golden_arrow/synthcloset) -"eB" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"eD" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"eH" = ( -/obj/structure/window/framed/almayer/hull, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, /area/golden_arrow/hangar) -"eJ" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"eL" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +"eF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 14 }, -/area/golden_arrow/cryo_cells) -"eR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/storage/pill_bottle/paracetamol{ + pixel_x = -5 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"eT" = ( +"eI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/golden_arrow/cryo_cells) +"eJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 9 }, /turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"eU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, /area/golden_arrow/hangar) -"eY" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"eL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/golden_arrow/hangar) -"fe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/pipes/vents/pump, +/obj/item/trash/uscm_mre{ + pixel_y = 14; + pixel_x = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"eN" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/golden_arrow/hangar) -"ff" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "blackcorner" + }, +/area/golden_arrow/hangar) +"eP" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, /area/golden_arrow/hangar) -"fg" = ( +"eR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional{ - dir = 10 +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full{ + pixel_y = 12 }, -/area/golden_arrow/briefing) -"fh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/storage/belt/utility/full{ + pixel_y = 2; + pixel_x = 2 }, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"fl" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/area/golden_arrow/engineering) +"eS" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, +/area/golden_arrow/hangar) +"eT" = ( +/obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"fm" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"fo" = ( +"eW" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_commander_rooms) +"eX" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad One Equipment Locker"; + id = "equipment_conny" }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "test_floor4" }, -/area/golden_arrow/cryo_cells) -"fp" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() +/area/golden_arrow/platoonarmory) +"eY" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Second Platoon Ready Bay Blast Door" }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "test_floor4" }, -/area/golden_arrow/engineering) -"fq" = ( -/obj/structure/machinery/conveyor{ - dir = 10 +/area/golden_arrow/hangar) +"fa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/cable{ + icon_state = "4-8" }, -/area/golden_arrow/supply) -"ft" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"fv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "mono" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/area/golden_arrow/cryo_cells) +"fb" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_y = 32 }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"fx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"fe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"fg" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"fy" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/golden_arrow/cryo_cells) +"fh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"fF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/area/golden_arrow/cryo_cells) +"fi" = ( +/obj/structure/largecrate/supply/floodlights, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "cargo" }, -/area/golden_arrow/engineering) -"fJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 +/area/golden_arrow/hangar) +"fj" = ( +/obj/item/tool/weldingtool{ + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/golden_arrow/hangar) +"fl" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 13 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"fL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"fO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"fn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_y = 7; + pixel_x = -4; + layer = 3.03 }, -/area/golden_arrow/medical) -"fW" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/tool/wirecutters{ + pixel_y = -7 }, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"fX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/golden_arrow/hangar) +"fo" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_one_access_txt = "8;12;39;40"; + req_access = list() }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"fY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"gd" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"gf" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"fp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"gg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "\improper Platoon Commander's Quarters"; + req_access = list(); + req_one_access_txt = "19;12" }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "test_floor4" }, -/area/golden_arrow/cryo_cells) -"gh" = ( -/obj/structure/machinery/landinglight/ds1{ +/area/golden_arrow/platoon_commander_rooms) +"ft" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"fx" = ( +/obj/structure/machinery/door/poddoor/railing, +/obj/effect/decal/strata_decals/grime/grime1{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/golden_arrow/engineering) +"fF" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"gn" = ( +"fH" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ + name = "\improper Tripoli" + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"fI" = ( +/obj/structure/barricade/metal{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/barricade/metal{ + dir = 4 }, -/area/golden_arrow/synthcloset) -"gp" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain{ + pixel_y = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"fK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"gq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"fL" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"gt" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 7; + pixel_x = -20 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" }, -/area/golden_arrow/engineering) -"gx" = ( +/area/golden_arrow/prep_hallway) +"fM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() - }, -/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/engineering) -"gz" = ( -/obj/structure/ship_ammo/rocket/widowmaker, +/area/golden_arrow/hangar) +"fN" = ( /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "cargo_arrow" }, /area/golden_arrow/hangar) -"gA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, +"fO" = ( +/obj/structure/machinery/chem_master, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gB" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"gD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + icon_state = "dark_sterile" }, +/area/golden_arrow/medical) +"fP" = ( +/obj/structure/ship_ammo/rocket/napalm, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/golden_arrow/hangar) -"gE" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/supply) -"gG" = ( -/obj/structure/machinery/light{ - dir = 1 +"fR" = ( +/obj/item/prop/colony/canister{ + pixel_y = 19; + pixel_x = 3 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/effect/decal/strata_decals/grime/grime2, +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"fV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/golden_arrow/medical) -"gH" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"fX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"gI" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 - }, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 + icon_state = "dark_sterile" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/medical) +"fZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/golden_arrow/platoon_sergeant) -"gL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/closed/wall/almayer, +/area/golden_arrow/platoonarmory) +"ga" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"gb" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"gc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller{ + pixel_y = 17 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/roller{ + pixel_y = 23 }, -/area/golden_arrow/dorms) -"gM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/firstaid/regular{ + pixel_y = 1; + pixel_x = -2 }, -/area/golden_arrow/platoon_sergeant) -"gQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/platoon_sergeant) -"gS" = ( +/area/golden_arrow/medical) +"gd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/poddoor/railing{ dir = 8; - icon_state = "cargo_arrow" + id = "apcbayrailing1" }, -/area/golden_arrow/prep_hallway) -"gT" = ( -/obj/structure/machinery/conveyor{ +/turf/open/floor/almayer{ + icon_state = "black"; dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/area/golden_arrow/hangar) +"gg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/golden_arrow/supply) -"gW" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 4; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 }, -/area/golden_arrow/engineering) -"ha" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"gh" = ( +/obj/structure/bed/bedroll{ + pixel_y = -8; + pixel_x = 3; + layer = 3.1 }, -/area/golden_arrow/squad_one) -"he" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/clothing/head/cmcap{ + layer = 4.2; + pixel_y = 6; + pixel_x = 4 }, -/turf/open/floor/plating/plating_catwalk, +/turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) -"hk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +"gi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"ho" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, +"gk" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/jacket/marine/service{ + pixel_x = 11 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"gm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/golden_arrow/platoonarmory) +"gp" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"gq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/golden_arrow/medical) -"hq" = ( +/area/golden_arrow/hangar) +"gr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"gs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"hy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, /turf/open/floor/almayer, -/area/golden_arrow/engineering) -"hA" = ( +/area/golden_arrow/hangar) +"gt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/closed/wall/almayer, +/area/golden_arrow/engineering) +"gu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding2" }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"hC" = ( +"gw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/smartgun_battery{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/effect/spawner/random/powercell{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"hD" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"gx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/golden_arrow/firingrange) -"hF" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"hG" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; +"gz" = ( +/obj/structure/machinery/sleep_console{ + dir = 4; pixel_y = 6 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/golden_arrow/medical) -"hL" = ( +"gA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/sign/safety/electronics{ - pixel_x = 31; - pixel_y = 6 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 31; - pixel_y = -6 - }, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/engineering) -"hM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/firingrange) -"hN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - pixel_y = 6 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"hQ" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/golden_arrow/hangar) +"gB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/firingrange) -"hR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, +/area/golden_arrow/hangar) +"gC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"gF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"hS" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/platoon_commander_rooms) -"hU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/device/flashlight{ - pixel_x = -4; - pixel_y = 7 +"gL" = ( +/obj/structure/shuttle/part/dropship1/nose_front_left{ + name = "\improper Tripoli" }, -/obj/item/tool/warning_cone, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"gR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/engineering) -"hW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"gS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 3; + pixel_x = 6 }, -/area/golden_arrow/medical) -"ie" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/storage/box/cups{ + pixel_x = 2; + pixel_y = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 14; + pixel_y = 7 }, -/area/golden_arrow/hangar) -"if" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"gT" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop{ + icon = 'icons/obj/items/paper.dmi'; + icon_state = "newspaper"; + name = "The Marine Corps Gazette"; + desc = "An issue of The Marine Corps Gazette, the official newspaper of the United States Colonial Marines."; + pixel_y = 18; + pixel_x = 6 }, -/area/golden_arrow/engineering) -"ik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"gV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stool{ + pixel_y = 20; + pixel_x = 1 }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"gX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 }, -/area/golden_arrow/canteen) -"il" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, /area/golden_arrow/engineering) -"ip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"gZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"ha" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad Two Equipment Locker"; + id = "equipment_conny" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/golden_arrow/cryo_cells) -"iy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/golden_arrow/platoonarmory) +"hd" = ( +/obj/structure/shuttle/part/dropship1/lower_right_wall{ + name = "\improper Tripoli" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"he" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"hf" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "34"; + name = "\improper Tripoli" }, +/area/golden_arrow/hangar) +"hg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"hh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad Two Weapons Locker"; + id = "weapons_conny"; + pixel_y = -4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonarmory) +"hl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"hn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/cable{ + icon_state = "4-8" }, -/area/golden_arrow/medical) -"iA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, /turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"iC" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -25 +/area/golden_arrow/dorms) +"hp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner{ + pixel_x = 15 }, -/obj/structure/sign/safety/west{ - pixel_x = 3; - pixel_y = -25 +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 5; + pixel_y = 12 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_y = 5; + pixel_x = 2 }, -/area/golden_arrow/prep_hallway) -"iE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"iF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = 1; + pixel_x = -10 }, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"iG" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/engineering) +"hq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" }, -/area/golden_arrow/prep_hallway) -"iK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"iL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"hs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"iN" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"iQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/area/golden_arrow/hangar) +"hu" = ( +/obj/structure/shuttle/part/dropship1/right_outer_wing_connector{ + name = "\improper Tripoli" }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"hx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"hy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/golden_arrow/supply) -"iR" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_commander_rooms) -"iX" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +/area/golden_arrow/hangar) +"hB" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/straight_razor{ + pixel_x = -5; + pixel_y = -5 }, +/obj/item/clothing/head/cmcap/bridge{ + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"hC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"hD" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "39"; + name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"jb" = ( +"hE" = ( +/obj/structure/shuttle/part/dropship1/transparent/upper_right_wing{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"hF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/largecrate/random/case/double{ + pixel_y = 9; + layer = 3.1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"hG" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 30 }, -/area/golden_arrow/medical) -"jc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/cable{ + icon_state = "2-8" }, -/area/golden_arrow/prep_hallway) -"je" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"hI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "NE-out"; + pixel_y = 1; pixel_x = 1 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"jf" = ( +"hJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/medical) -"jg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/medical) -"jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, +"hK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"jl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"js" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; - pixel_y = 10 +"hL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"hM" = ( +/obj/effect/landmark/start/bridge, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_two) -"jt" = ( -/obj/structure/target, -/obj/structure/machinery/light{ - dir = 1 +/area/golden_arrow/cryo_cells) +"hN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/elevator/grating, +/area/golden_arrow/supply) +"hP" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"jy" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/station_alert{ - dir = 8; - pixel_x = 15; - pixel_y = 2 + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/synthcloset) -"jD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/medical) +"hQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"hS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"hT" = ( +/obj/structure/barricade/handrail, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9; + icon = 'icons/obj/structures/props/generic_props.dmi'; + icon_state = "weldtank_old"; + anchored = 1 }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"jG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, +"hU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/medical) -"jN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"jO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/golden_arrow/hangar) +"hW" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"jQ" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "cargo" +"hX" = ( +/obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing{ + name = "\improper Tripoli" }, -/area/golden_arrow/engineering) -"jS" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"hZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"jU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/largecrate/supply/supplies/flares{ + pixel_y = 9; + pixel_x = -3 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "test_floor4" }, -/area/golden_arrow/medical) -"jV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/hangar) +"ie" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; - pixel_x = -1; + layer = 2.5; pixel_y = 1 }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 28 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"if" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"ik" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 2 }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list() +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"il" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/golden_arrow/medical) -"kg" = ( +/area/golden_arrow/platoonprep) +"iq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/golden_arrow/briefing) -"kh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, +/area/golden_arrow/platoonprep) +"ir" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"kk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/golden_arrow/hangar) +"iu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/ares_console{ + dir = 4 }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"iw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"iA" = ( +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_x = 12 + }, +/turf/closed/shuttle/midway/transparent{ + icon_state = "78"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"iC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"iE" = ( +/obj/structure/prop/invuln{ + desc = "big pile energy."; + icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; + icon_state = "pile_0"; + name = "barrel pile"; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"iJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonprep) +"iP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/structure/largecrate/random/case/small{ + pixel_y = 35; + layer = 3.1; + pixel_x = 3 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "W" }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"km" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"iQ" = ( +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "dark_sterile" }, -/area/golden_arrow/hangar) -"kq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/golden_arrow/medical) +"iR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/cryo_cells) -"kr" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/engineering) +"iU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "black"; + dir = 4 }, -/area/golden_arrow/cryo_cells) -"kw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/golden_arrow/hangar) +"iW" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/golden_arrow/platoon_commander_rooms) +"iX" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; dir = 8 }, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"iY" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_y = 24; + pixel_x = 15; + layer = 3.1 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_y = 21; + pixel_x = -6 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"kF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 9 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"kH" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 1 +/area/golden_arrow/hangar) +"iZ" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"jd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"kI" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/hangar) +"je" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + pixel_x = 1; + color = "#333333"; + name = "gym mat"; + buckle_lying = null; + can_buckle = 0; + foldabletype = null; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"jg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/bed/chair{ +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"kO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/golden_arrow/prep_hallway) +"ji" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"kS" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/supply) -"kU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, -/area/golden_arrow/hangar) -"kV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/golden_arrow/prep_hallway) +"jj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"jk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -11; + pixel_y = 9 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"kX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +"jl" = ( +/turf/closed/shuttle/midway{ + icon_state = "54"; + name = "\improper Tripoli" }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/area/golden_arrow/hangar) +"jn" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = null }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/golden_arrow/prep_hallway) -"lc" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap, -/obj/item/tool/soap{ - pixel_y = 4; - pixel_x = 6 - }, -/obj/item/tool/soap{ - pixel_y = -5; - pixel_x = -5 +/area/golden_arrow/engineering) +"jo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/cryo{ + name = "hypersleep semiotic"; + pixel_x = 15; + pixel_y = -26 }, -/obj/item/tool/soap, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/cryo_cells) -"ld" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"lg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"lh" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"lm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"jp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/hangar) -"lo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"ly" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"lA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"lB" = ( +"jr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/effect/decal/strata_decals/grime/grime3, +/obj/structure/largecrate/supply/ammo{ + name = "materials crate"; + fill_from_loc = 1 + }, +/obj/item/stack/sheet/metal/large_stack, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"lE" = ( -/obj/effect/decal/cleanable/dirt, +"jt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"lG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/canteen) -"lK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 +/area/golden_arrow/medical) +"ju" = ( +/obj/item/trash/cigbutt{ + pixel_y = 10; + pixel_x = 4; + layer = 3.2; + randpixel = 0 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = -2; + pixel_y = 1; + layer = 3.2 + }, +/obj/structure/largecrate/supply/weapons/pistols{ + layer = 3.1; + pixel_y = -7 + }, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"jw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"lQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/golden_arrow/cryo_cells) +"jx" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "22"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"jy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway"; + pixel_y = 6; + layer = 3.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"jA" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad Two Weapons Locker"; + id = "weapons_conny"; + pixel_y = -4 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/squad_two) -"lS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"lV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;39" +/area/golden_arrow/platoonarmory) +"jB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 8; + name = "\improper Shared Office"; + req_one_access_txt = "12;32"; + req_access = list() + }, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/squad_one) -"mb" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" +/area/golden_arrow/shared_office) +"jC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/closed/wall/almayer/outer, -/area/golden_arrow/supply) -"mc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"me" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Briefing Room"; - req_access = list() +/area/golden_arrow/hangar) +"jD" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"jE" = ( +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/golden_arrow/briefing) -"mf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = -6; - pixel_y = 12 +/area/golden_arrow/hangar) +"jG" = ( +/obj/item/paper{ + icon_state = "paper_words"; + pixel_y = -3; + pixel_x = 5; + layer = 3.01; + info = "OUT OF ORDER - When I find the dumbass that thought it was a good idea to drive over the elevator with the APC they're gonna get their ass beat."; + name = "OUT OF ORDER" }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"mk" = ( +/area/golden_arrow/hangar) +"jH" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ dir = 8; icon_state = "cargo_arrow" }, -/area/golden_arrow/briefing) -"ml" = ( -/obj/structure/ship_ammo/minirocket, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, /area/golden_arrow/hangar) -"mm" = ( -/obj/structure/cargo_container/lockmart/mid{ - layer = 3.1; - pixel_y = 5 +"jI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"mo" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"jJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/engineering) -"ms" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 4; icon_state = "cargo_arrow" }, /area/golden_arrow/prep_hallway) -"mB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"jK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-4" }, +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"jM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"mD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;39" +"jN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"jO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Weapons Bay One Blast Door"; + id = "bay1door" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/golden_arrow/squad_one) -"mR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/hangar) +"jP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, /turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"mW" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/engineering) +"jS" = ( +/obj/structure/shuttle/part/dropship1/transparent/right_inner_bottom_wing{ + name = "\improper Tripoli" }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"mY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"jT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" }, /area/golden_arrow/cryo_cells) -"mZ" = ( +"jV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/dartboard{ + pixel_y = 41; + layer = 3.2 }, -/area/golden_arrow/supply) -"nb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad Two Armoury"; - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"nd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"jW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/cable{ + icon_state = "4-8" }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"jY" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"kb" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/hangar) +"kc" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/box{ + pixel_y = 9 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"ng" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/obj/structure/largecrate, +"ke" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/cobweb2, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/supply) -"ni" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 +/area/golden_arrow/engineering) +"kf" = ( +/obj/structure/shuttle/part/dropship1/transparent/right_outer_bottom_wing{ + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"kg" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/area/golden_arrow/briefing) -"nj" = ( +/obj/item/bedsheet/rd, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 +/obj/item/prop/magazine/book/theartofwar{ + pixel_x = -1; + layer = 4.1 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Smartgunner" +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"kh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Smartgunner" +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"nm" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 +/area/golden_arrow/briefing) +"ki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"kl" = ( +/obj/structure/shuttle/part/dropship1/nose_front_right{ + name = "\improper Tripoli" }, -/turf/open/floor/almayer, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"nx" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"km" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = -18 }, -/area/golden_arrow/supply) -"ny" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad One Weapons Locker"; + id = "weapons_conny"; + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, +/area/golden_arrow/platoonarmory) +"kn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"nD" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoonarmory) +"kq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/supply) -"nF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/golden_arrow/cryo_cells) +"kr" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ku" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + layer = 3.3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"nG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"nH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/golden_arrow/hangar) +"kw" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/computer/crew/alt{ dir = 4; - icon_state = "cargo_arrow" + pixel_x = -10 }, -/area/golden_arrow/prep_hallway) -"nK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"kD" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -7; + job = "Smartgunner" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Squad Sergeant" }, -/area/golden_arrow/canteen) -"nL" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/firingrange) -"nM" = ( +/area/golden_arrow/cryo_cells) +"kG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"kH" = ( +/obj/structure/ship_ammo/minirocket, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/banners/united_americas_flag{ - pixel_x = -16; - pixel_y = 30 +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"kI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/golden_arrow/briefing) -"nN" = ( -/obj/structure/largecrate/random/secure, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/golden_arrow/hangar) -"nR" = ( +/area/golden_arrow/briefing) +"kL" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"nT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +"kP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 }, -/obj/structure/cargo_container/wy/right, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"nV" = ( -/obj/structure/machinery/light{ +"kQ" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"kT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/cryo_cells) -"nY" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/area/golden_arrow/medical) +"kU" = ( +/turf/closed/shuttle/midway{ + icon_state = "81"; + name = "\improper Tripoli" }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"oa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ +/area/golden_arrow/hangar) +"kW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/briefing) -"oe" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 +/area/golden_arrow/medical) +"kY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/obj/structure/closet/coffin/woodencrate{ + name = "gym equipment" + }, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/catwalk{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"og" = ( -/obj/structure/machinery/light{ - dir = 1 +"ld" = ( +/turf/closed/shuttle/midway{ + icon_state = "83"; + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/hangar) +"le" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/prep_hallway) -"oh" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"ol" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, -/area/golden_arrow/briefing) -"oo" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = list() +/area/golden_arrow/hangar) +"lg" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/golden_arrow/engineering) -"or" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/bedsheet/brown{ + layer = 3.4 }, -/area/golden_arrow/supply) -"ot" = ( -/obj/structure/largecrate/supply/ammo{ - name = "sentry crate"; - fill_from_loc = 1 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/obj/item/ammo_magazine/sentry{ - layer = 3.01 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"lh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/item/defenses/handheld/sentry, +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"ou" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" - }, /area/golden_arrow/hangar) -"ov" = ( -/obj/structure/machinery/light{ - dir = 1 +"li" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 6; + density = 0; + pixel_x = -10 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles, /turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"oA" = ( -/obj/structure/machinery/shower{ - dir = 8 + icon_state = "dark_sterile" }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_commander_rooms) -"oC" = ( -/obj/structure/plasticflaps, -/obj/structure/machinery/conveyor{ +/area/golden_arrow/cryo_cells) +"lj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"lk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/vehicle_spawner/apc_movie/fixed{ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/golden_arrow/supply) -"oH" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/hangar) +"lm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black"; + dir = 1 }, -/area/golden_arrow/canteen) -"oJ" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 +/area/golden_arrow/hangar) +"lo" = ( +/turf/closed/shuttle/midway{ + icon_state = "47"; + name = "\improper Tripoli" }, +/area/golden_arrow/hangar) +"lp" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/obj/effect/decal/cleanable/cobweb, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/golden_arrow/medical) -"oK" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/hangar) +"lq" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/golden_arrow/prep_hallway) -"oL" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/golden_arrow/briefing) -"oM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, +"lu" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"oO" = ( -/obj/structure/machinery/power/terminal{ +/area/golden_arrow/hangar) +"lv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer{ + icon_state = "black" + }, +/area/golden_arrow/hangar) +"lw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"oQ" = ( -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 7; +/area/golden_arrow/dorms) +"ly" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case{ + pixel_y = 11 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/golden_arrow/hangar) +"lA" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; pixel_y = 6 }, -/obj/item/prop/helmetgarb/gunoil, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = -1 + }, +/obj/structure/sign/safety/autodoc{ + pixel_x = -17 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/squad_one) -"oW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/golden_arrow/medical) +"lB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" }, +/area/golden_arrow/dorms) +"lE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"lH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black" }, /area/golden_arrow/hangar) -"oX" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light, +"lK" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "black"; + dir = 1 }, -/area/golden_arrow/engineering) -"pf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/heap/empty, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"pl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"pt" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" +"lL" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/prep_hallway) -"pw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/area/golden_arrow/hangar) +"lO" = ( +/obj/structure/shuttle/part/dropship1/transparent/outer_right_weapons{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"lQ" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 }, +/obj/structure/closet/secure_closet, +/obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"pB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"pD" = ( +"lR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"pF" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"pG" = ( +/area/golden_arrow/engineering) +"lV" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"lW" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 11 + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/coffee{ + pixel_y = 29; + pixel_x = 13 }, -/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/obj/item/trash/burger, +/obj/item/trash/cigbutt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"pJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_one) -"pO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/area/golden_arrow/cryo_cells) +"lY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/tableflag/uscm{ + pixel_x = -8; + pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm{ + pixel_x = 5; + pixel_y = 6 }, -/area/golden_arrow/hangar) -"pR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, -/area/golden_arrow/hangar) -"pS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/area/golden_arrow/platoon_commander_rooms) +"mc" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, +/turf/open/floor/plating, /area/golden_arrow/engineering) -"pW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"me" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Assembly Room"; + req_one_access_txt = "19;12"; + req_access = list() }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"pZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"mf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 }, -/area/golden_arrow/prep_hallway) -"qa" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_one) -"qc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"qf" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"mg" = ( +/turf/closed/shuttle/midway{ + icon_state = "48"; + name = "\improper Tripoli" }, -/area/golden_arrow/cryo_cells) -"qh" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/hangar) +"mj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"ml" = ( +/obj/structure/shuttle/part/dropship1/transparent/upper_left_wing{ + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"mo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" }, -/area/golden_arrow/briefing) -"qi" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "black"; + dir = 1 }, /area/golden_arrow/hangar) -"qm" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"mp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, /area/golden_arrow/cryo_cells) -"qu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" +"mq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ + name = "\improper Tripoli cargo door"; + locked = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, -/area/golden_arrow/briefing) -"qv" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 +/area/golden_arrow/hangar) +"mr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/golden_arrow/briefing) -"qw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"qz" = ( +/area/golden_arrow/prep_hallway) +"mu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"mv" = ( +/obj/structure/shuttle/part/dropship1/transparent/left_inner_bottom_wing{ + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"mx" = ( +/turf/closed/shuttle/midway{ + icon_state = "24"; + name = "\improper Tripoli" }, -/area/golden_arrow/supply) -"qA" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/platoon_sergeant) -"qD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 +/area/golden_arrow/hangar) +"mz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"mA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_two) -"qE" = ( -/obj/structure/barricade/metal{ - dir = 8 +/area/golden_arrow/hangar) +"mE" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/light, -/obj/structure/sign/safety/two{ - pixel_y = -22 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"qI" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/golden_arrow/hangar) +"mG" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open{ + pixel_y = 9; + pixel_x = -12 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/trash/chips{ + layer = 2.7; + pixel_y = -9 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"qQ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/platoon_sergeant) -"qR" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"mH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/golden_arrow/canteen) -"qT" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/area/golden_arrow/briefing) -"qU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 }, /turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"qW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 +/area/golden_arrow/platoonprep) +"mI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 +/obj/structure/cable/heavyduty{ + icon_state = "1-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"mJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/engineering) -"rb" = ( -/obj/structure/machinery/cryopod{ +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"mN" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32; pixel_y = 6 }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "cargo_arrow" }, +/area/golden_arrow/prep_hallway) +"mO" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"rd" = ( -/obj/structure/closet/wardrobe{ - name = "PT uniform" +"mP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/head/headband/red, -/obj/item/clothing/under/shorts/red, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, /area/golden_arrow/cryo_cells) -"rf" = ( -/obj/structure/machinery/landinglight/ds1{ +"mR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"rh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, /area/golden_arrow/cryo_cells) -"rk" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer{ - icon_state = "plate" +"mT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"mU" = ( +/obj/effect/decal/siding{ + icon_state = "siding5" + }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"rl" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 +"mV" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/golden_arrow/briefing) -"ro" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"rq" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"rr" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, -/area/golden_arrow/briefing) -"rt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" }, -/area/golden_arrow/engineering) -"rx" = ( +/area/golden_arrow/hangar) +"mW" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/screwdriver{ + pixel_x = 1; + icon_state = "screwdriver4" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/prop/helmetgarb/gunoil{ + pixel_y = 15; + pixel_x = -14 }, -/area/golden_arrow/canteen) -"ry" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 }, /turf/open/floor/almayer, -/area/golden_arrow/briefing) -"rA" = ( +/area/golden_arrow/platoonprep) +"mX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart, -/obj/item/tool/mop{ - pixel_x = -1; - pixel_y = -10 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/golden_arrow/hangar) +"mY" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research{ + name = "\improper Supply Elevator Hatch" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"mZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"rH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"nb" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/medical) +"ne" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"rI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 28; - pixel_y = 5; - serial_number = 12 +/area/golden_arrow/cryo_cells) +"nf" = ( +/obj/structure/cargo_container/kelland/right{ + opacity = 0 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - pixel_x = 32; - serial_number = 16 +/obj/structure/cargo_container/kelland/right{ + pixel_y = 22; + opacity = 0 }, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 6; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_one) -"rJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"rM" = ( -/obj/structure/cargo_container/wy/mid, +/area/golden_arrow/hangar) +"ng" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ni" = ( +/obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"rV" = ( +"nj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional, -/area/golden_arrow/briefing) -"rX" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Squad Sergeant" +/obj/structure/machinery/computer/overwatch/almayer{ + pixel_y = 24 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Squad Sergeant" +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"nk" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"rZ" = ( +/area/golden_arrow/hangar) +"nl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/cryo_cells) -"sa" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/supply) -"sc" = ( -/obj/structure/pipes/vents/scrubber, +/area/golden_arrow/cryo_cells) +"nn" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"sf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/golden_arrow/platoonprep) +"np" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1; + req_one_access = null; + name = "\improper Supply Launch Bay" }, /turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"sg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/engineering) +"nq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/golden_arrow/dorms) -"sk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/area/golden_arrow/hangar) +"ns" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -16 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/dorms) -"sm" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 +/area/golden_arrow/medical) +"nu" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Smartgunner" }, -/area/golden_arrow/briefing) -"so" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -7; + job = "Squad Sergeant" }, /turf/open/floor/almayer{ - icon_state = "cargo_arrow" + icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"sv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/cryo_cells) +"nv" = ( +/obj/structure/surface/table/almayer, +/obj/item/hardpoint/support/flare_launcher{ + pixel_y = 11 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"sy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/golden_arrow/hangar) +"nw" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 1; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/prop{ + icon = 'icons/obj/items/paper.dmi'; + icon_state = "newspaper"; + name = "The Marine Corps Gazette"; + desc = "An issue of The Marine Corps Gazette, the official newspaper of the United States Colonial Marines."; + pixel_y = -2; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"nx" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/obj/item/tool/warning_cone, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"sC" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/platoon_sergeant) -"sE" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"sI" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/cryo_cells) -"sN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, +"ny" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"sO" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"nE" = ( +/obj/structure/ship_ammo/rocket/widowmaker, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "cargo" }, -/area/golden_arrow/canteen) -"sR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ +/area/golden_arrow/hangar) +"nH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"nI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"sS" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"sU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + dir = 4; + icon_state = "cargo_arrow" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"sV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"sX" = ( +/area/golden_arrow/engineering) +"nJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"sY" = ( -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/service/tanker, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Commander"; - icon_broken = "cabinetdetective_broken"; - icon_closed = "cabinetdetective"; - icon_locked = "cabinetdetective_locked"; - icon_state = "cabinetdetective_locked"; - icon_opened = "cabinetdetective_open"; - icon_off = "cabinetdetective_broken"; - has_cryo_gear = 0 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad One Weapons Locker"; + id = "weapons_conny"; + pixel_y = -4 }, -/obj/item/clothing/under/marine/officer/boiler, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"tb" = ( -/obj/structure/sign/safety/firingrange{ - pixel_x = -24; - pixel_y = 7 + icon_state = "test_floor4" }, -/obj/structure/sign/safety/hazard{ - pixel_x = -24; - pixel_y = -7 +/area/golden_arrow/platoonarmory) +"nL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"tf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/firingrange) -"ti" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"nM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/cryo_cells) -"to" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 +/area/golden_arrow/medical) +"nO" = ( +/obj/vehicle/powerloader{ + dir = 4 }, -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, /area/golden_arrow/hangar) -"tr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"nP" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"tv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/shared_office) +"nR" = ( +/obj/structure/shuttle/part/dropship1/right_inner_wing_connector{ + name = "\improper Tripoli" }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"ty" = ( +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"nS" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/pdt_kit{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/spent_slug{ - pixel_y = 9; - pixel_x = 8 +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/obj/item/prop/helmetgarb/spent_slug{ - pixel_y = 9; - pixel_x = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"nU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"tA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Maintenance Bay Blast Door"; + closed_layer = 3.3; + layer = 3.3; + open_layer = 3.3 }, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"tB" = ( -/obj/structure/closet/firecloset/full, +/area/golden_arrow/hangar) +"nW" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "dark_sterile" }, -/area/golden_arrow/engineering) -"tS" = ( +/area/golden_arrow/cryo_cells) +"nX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;40" - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_two) -"tT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/prep_hallway) +"nY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"tV" = ( -/obj/structure/ship_ammo/rocket/keeper, -/turf/open/floor/almayer{ - icon_state = "cargo" +/area/golden_arrow/hangar) +"nZ" = ( +/obj/item/prop/almayer/box{ + pixel_y = 17 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin14" }, /area/golden_arrow/hangar) -"tX" = ( +"oa" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"ua" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, /area/golden_arrow/hangar) -"ub" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +"od" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/area/golden_arrow/canteen) -"ug" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +/obj/structure/cable{ + icon_state = "0-2" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"um" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/faxmachine/uscm/command/capt, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"uo" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/cryo_cells) +"og" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/cryo_cells) +"oh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "S"; + pixel_x = -8 }, +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "dark_sterile" }, -/area/golden_arrow/supply) -"up" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/golden_arrow/medical) +"oi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/obj/structure/machinery/computer/cryopod{ + pixel_x = 6; + pixel_y = -2 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"ur" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 + icon_state = "plate" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/area/golden_arrow/cryo_cells) +"oj" = ( +/obj/effect/spawner/prop_gun/anti_tank{ + anchored = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/turf/closed/wall/almayer/outer, +/area/golden_arrow/briefing) +"ol" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"us" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/golden_arrow/hangar) +"on" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"uu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"uw" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/largecrate/supply/supplies/sandbags{ + pixel_y = 7; + layer = 4.2 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"uA" = ( -/obj/structure/machinery/light, +/area/golden_arrow/hangar) +"oo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/atm{ + pixel_y = 26 }, -/area/golden_arrow/briefing) -"uE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"os" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Weapons Bay Two Blast Door"; + id = "bay2door" }, -/area/golden_arrow/firingrange) -"uF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, /turf/open/floor/almayer{ - icon_state = "sterile_green" + icon_state = "test_floor4" }, -/area/golden_arrow/medical) -"uG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer, /area/golden_arrow/hangar) -"uH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 +"oy" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"oz" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 3 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"uO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 11; - pixel_y = 5 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 - }, +/area/golden_arrow/hangar) +"oB" = ( +/obj/structure/machinery/door/poddoor/almayer, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"uQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/prep_hallway) +"oD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "test_floor4" }, -/area/golden_arrow/engineering) -"uS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/golden_arrow/hangar) +"oF" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"uX" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" }, -/area/golden_arrow/engineering) -"vb" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - layer = 2.0; - pixel_x = 12 +/area/golden_arrow/hangar) +"oI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/closed/wall/almayer, -/area/golden_arrow/platoon_commander_rooms) -"vc" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"oM" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/golden_arrow/engineering) -"vg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 5 }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"oP" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"oR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"oS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + icon_state = "SW-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"vk" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"vo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"vp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/area/golden_arrow/hangar) +"oU" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"vt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_commander_rooms) -"vA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access_txt = "12" +/area/golden_arrow/cryo_cells) +"oV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = -1 }, -/area/golden_arrow/platoon_sergeant) -"vB" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"oX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"vF" = ( +/area/golden_arrow/hangar) +"pa" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" + icon_state = "cargo" }, -/area/golden_arrow/squad_two) -"vG" = ( -/obj/structure/machinery/power/terminal{ +/area/golden_arrow/hangar) +"pb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/electronics{ - pixel_x = 6; - pixel_y = -1 +/turf/open/floor/almayer{ + icon_state = "dark_sterile" }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -7; - pixel_y = -8 +/area/golden_arrow/medical) +"pe" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"vJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "NE-out"; + pixel_y = 1; pixel_x = 1 }, +/turf/open/floor/almayer{ + icon_state = "blackcorner"; + dir = 4 + }, +/area/golden_arrow/hangar) +"pg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"pi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + pixel_y = 2; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/golden_arrow/cryo_cells) +"pl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/shared_office) +"po" = ( +/obj/structure/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"vK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"pr" = ( +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"pw" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/largecrate/random/case/small{ + pixel_y = 18; + pixel_x = 18; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"px" = ( +/obj/structure/cable{ + layer = 2.45; + pixel_x = 7; + pixel_y = 1 }, +/obj/structure/prop{ + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "0-8"; + color = "#b30000"; + pixel_y = 2; + pixel_x = 2; + name = "cable" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin14" + }, +/area/golden_arrow/hangar) +"py" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"vL" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"vN" = ( +/area/golden_arrow/cryo_cells) +"pz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 + icon_state = "W"; + layer = 3.3 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"vP" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"vS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"pB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"pD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access = null }, -/area/golden_arrow/hangar) -"vU" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"wa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/rewire{ + pixel_y = 32; + pixel_x = 12 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"wc" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters" +"pF" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/cryo{ + name = "hypersleep semiotic"; + pixel_x = 15; + pixel_y = 28 }, -/area/golden_arrow/platoon_commander_rooms) -"wd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"pI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/cable/heavyduty{ + icon_state = "2-4" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"pN" = ( +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 }, -/area/golden_arrow/prep_hallway) -"wi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"pO" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" }, -/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black"; + dir = 8 }, /area/golden_arrow/hangar) -"wl" = ( -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"wn" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"wp" = ( +"pR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable{ + icon_state = "1-4" }, -/area/golden_arrow/prep_hallway) -"wx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"pU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"pV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"pW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"pX" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "27"; + name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"wz" = ( -/obj/effect/decal/cleanable/dirt, +"pZ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"wH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -8; - pixel_y = 8 - }, +"qi" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"qk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/item/device/walkman{ - pixel_x = 4; - pixel_y = -6 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"qm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/engineering) -"wI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"wJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +"qn" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/obj/item/prop/magazine/book/bladerunner, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 2; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"qq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/golden_arrow/platoon_sergeant) -"wK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"wN" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 +"qr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/photocopier{ + pixel_y = 16 }, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = -7 }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"qt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/synthcloset) -"wS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"wV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access_txt = "12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/hangar) +"qu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap{ + pixel_y = 15; + pixel_x = 3 }, -/area/golden_arrow/platoon_sergeant) -"wX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/firingrange) -"xf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"xh" = ( -/obj/structure/cargo_container/arious/right, +/area/golden_arrow/cryo_cells) +"qv" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"qw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"xo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/hangar) +"qx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/safety/conference_room{ + pixel_y = 29 }, -/area/golden_arrow/prep_hallway) -"xx" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"xz" = ( +/area/golden_arrow/platoonprep) +"qz" = ( +/obj/structure/ship_ammo/minirocket, +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"qD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"qG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "NE-out"; + pixel_y = 1; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/area/golden_arrow/medical) -"xB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 6 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"qH" = ( +/obj/structure/shuttle/part/dropship1/lower_left_wall{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"qI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"xJ" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() +/area/golden_arrow/cryo_cells) +"qJ" = ( +/turf/closed/shuttle/elevator{ + dir = 6 }, -/obj/structure/machinery/light{ - dir = 1 +/area/golden_arrow/supply) +"qK" = ( +/turf/closed/shuttle/elevator/button/research, +/area/golden_arrow/supply) +"qL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"qN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/two{ + pixel_x = 14; + pixel_y = -26 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"qP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; + pixel_y = 13; + pixel_x = 3 + }, +/obj/item/facepaint/sunscreen_stick{ + pixel_y = 2; + pixel_x = -2; + layer = 3.2 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 24; + serial_number = 11 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"xK" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/platoonprep) +"qQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"qT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 6; + pixel_x = -5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/trash/plate{ + pixel_y = 5; + pixel_x = -5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/trash/plate{ + pixel_y = 7; + pixel_x = -3 }, -/area/golden_arrow/cryo_cells) -"xM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/item/trash/plate{ + pixel_y = 9; + pixel_x = -4 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"xQ" = ( +"qU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/galley{ - pixel_x = -19 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/cryo_cells) -"xX" = ( +/area/golden_arrow/hangar) +"qW" = ( +/obj/structure/closet/secure_closet/platoon_sergeant, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "cargo_arrow" + icon_state = "plate" }, -/area/golden_arrow/dorms) -"yc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/platoonprep) +"qZ" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 4.2; + pixel_y = 8; + pixel_x = -11 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"ra" = ( +/obj/item/tool/mop{ + pixel_x = -1; + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"rd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "squadarmory"; + name = "\improper Gear Lockers" }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "test_floor4" }, -/area/golden_arrow/engineering) -"ye" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/engineering) -"yg" = ( +/area/golden_arrow/platoonprep) +"rg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/supply_drop/echo, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"rk" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"rl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"rm" = ( /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "test_floor4" }, /area/golden_arrow/supply) -"yj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +"ro" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"rr" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"yo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/status_display{ - pixel_y = -30 +/area/golden_arrow/cryo_cells) +"ru" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -2 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"ys" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +/area/golden_arrow/hangar) +"rv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"rz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"yt" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/hangar) +"rA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/platoon_sergeant) -"yv" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/briefing) -"yw" = ( -/obj/item/toy/deck/uno, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, /area/golden_arrow/dorms) -"yx" = ( +"rF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/dorms) -"yy" = ( -/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor5" + dir = 5; + icon_state = "plating" }, /area/golden_arrow/engineering) -"yA" = ( +"rG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;39"; - req_one_access = list() +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad Two Equipment Locker"; + id = "equipment_conny" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/squad_one) -"yF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/area/golden_arrow/platoonarmory) +"rH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"rI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"rJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"rP" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/shared_office) +"rQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"yJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rS" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/engineering) +"rT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"yL" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" }, -/obj/structure/gun_rack/m41, -/obj/item/ashtray/plastic{ - pixel_y = 14; - pixel_x = 8 +/area/golden_arrow/prep_hallway) +"rU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/squad_one) -"yM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -9; - pixel_y = -3 +/area/golden_arrow/hangar) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"rX" = ( +/obj/structure/cargo_container/wy/right{ + pixel_y = -17; + opacity = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/device/flashlight/lamp/on{ + layer = 4.2; + pixel_y = 19; + pixel_x = 3 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"yO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yT" = ( -/obj/effect/decal/cleanable/dirt, +"rY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"yU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"rZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"sb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"yY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 5 }, -/obj/structure/bed/chair, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"yZ" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/golden_arrow/platoonprep) +"sc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black" }, /area/golden_arrow/hangar) -"za" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"sg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/tool/warning_cone{ + pixel_x = -6; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"sk" = ( +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"so" = ( +/obj/structure/surface/rack{ + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/ointment{ + pixel_y = 34; + pixel_x = 2 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"zk" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); - req_one_access_txt = "8;12;39" +"sq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"sr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"ss" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/golden_arrow/squad_one) -"zl" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/area/golden_arrow/hangar) +"st" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Vehicle Bay One Blast Door"; + id = "apc1blastdoor" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/golden_arrow/engineering) -"zn" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/hangar) +"su" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"sy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "W"; + layer = 3.3 }, -/area/golden_arrow/cryo_cells) -"zt" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"zv" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/firingrange) -"zy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, /area/golden_arrow/hangar) -"zA" = ( +"sz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"zD" = ( +/area/golden_arrow/hangar) +"sF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"sH" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/golden_arrow/hangar) +"sI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, /turf/open/floor/almayer{ dir = 4; icon_state = "cargo_arrow" }, -/area/golden_arrow/hangar) -"zG" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/area/golden_arrow/platoonarmory) +"sJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/golden_arrow/hangar) +"sL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Synthetic Storage Bay"; + id = "synthbay" }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"zI" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/mop{ - pixel_x = -9; - pixel_y = 20 - }, +"sM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, +/obj/effect/decal/strata_decals/grime/grime2, /turf/open/floor/almayer, -/area/golden_arrow/engineering) -"zJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/golden_arrow/hangar) +"sN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zK" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 7; - pixel_y = 29 +"sR" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/engineering) +"sU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"zL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/hangar) +"sW" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/obj/structure/barricade/handrail{ + layer = 3.1; + pixel_y = -1 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"zM" = ( +/area/golden_arrow/cryo_cells) +"sX" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 1; + dir = 4; icon_state = "cargo_arrow" }, -/area/golden_arrow/prep_hallway) -"zP" = ( +/area/golden_arrow/cryo_cells) +"sY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/firingrange) -"zV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"zY" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = list() +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"sZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"zZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/squad_one) -"Ad" = ( /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Ap" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, +/area/golden_arrow/hangar) +"ta" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"As" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Aw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" + dir = 4; + icon_state = "cargo_arrow" }, +/area/golden_arrow/hangar) +"tb" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo_arrow" }, -/area/golden_arrow/canteen) -"Ax" = ( -/obj/structure/machinery/shower{ +/area/golden_arrow/hangar) +"tc" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Ay" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"AA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"AC" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/item/stack/catwalk{ - pixel_x = 12; - pixel_y = -9 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"AG" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"AH" = ( -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"AK" = ( +"td" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/hangar) -"AL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"AO" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"AP" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 +"th" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/obj/structure/sign/safety/manualopenclose{ - layer = 2.11; - pixel_x = 12; - pixel_y = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AQ" = ( -/obj/structure/cargo_container/lockmart/right{ - layer = 3.1; - pixel_y = 5 - }, +"tl" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/golden_arrow/hangar) -"AY" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +/area/golden_arrow/platoon_commander_rooms) +"tn" = ( +/obj/structure/shuttle/part/dropship1/transparent/middle_left_wing{ + name = "\improper Tripoli" }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"ts" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"Bd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/golden_arrow/hangar) +"tt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/engineering) -"Bf" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tv" = ( /obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/coffin/woodencrate{ + name = "gym equipment" + }, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/green, +/obj/item/clothing/gloves/boxing/yellow, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/golden_arrow/hangar) -"Bg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, +"tx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Bh" = ( +/area/golden_arrow/platoon_commander_rooms) +"ty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2; + pixel_x = -1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee/simple, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"Bi" = ( +/area/golden_arrow/cryo_cells) +"tA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"tB" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/area/golden_arrow/cryo_cells) -"Bj" = ( -/obj/structure/window/framed/almayer/white, /turf/open/floor/almayer, -/area/golden_arrow/medical) -"Bo" = ( +/area/golden_arrow/cryo_cells) +"tD" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + pixel_y = 19; + density = 0 + }, /turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Bq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/area/golden_arrow/engineering) +"tG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 }, -/area/golden_arrow/canteen) -"Br" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/cryo_cells) -"Bt" = ( +/area/golden_arrow/hangar) +"tJ" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"tK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"Bu" = ( -/obj/item/ammo_magazine/sentry{ - layer = 3.01 +/area/golden_arrow/hangar) +"tL" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/defenses/handheld/sentry, -/obj/structure/largecrate/supply/ammo{ - name = "sentry crate"; - fill_from_loc = 1 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/area/golden_arrow/squad_one) -"Bv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "Damage Control Locker"; - req_one_access = list() +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/area/golden_arrow/engineering) -"Bw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/rewire{ - pixel_y = -29 +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/open/floor/almayer, +/area/golden_arrow/dorms) +"tM" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; + dir = 5 + }, /area/golden_arrow/hangar) -"Bz" = ( -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"BA" = ( -/obj/effect/decal/cleanable/dirt, +"tP" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 4 +/obj/item/storage/box/co2_knife{ + pixel_x = 3; + pixel_y = 13 }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -3 +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -14; + pixel_y = 16 }, -/obj/item/storage/toolbox{ - pixel_y = -5 +/obj/item/storage/box/pdt_kit/advanced, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"tS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 13 }, -/area/golden_arrow/squad_two) -"BC" = ( -/obj/structure/target, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/firingrange) -"BD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Blast Door" }, -/area/golden_arrow/firingrange) -"BK" = ( -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/area/golden_arrow/hangar) +"tV" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/platoon_sergeant) -"BM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/area/golden_arrow/hangar) +"tW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -7; + pixel_y = 9 }, -/area/golden_arrow/cryo_cells) -"BO" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/prop/magazine/dirty{ + icon_state = "poster3"; + pixel_y = 7; + pixel_x = 3; + name = "Playboy Magazine: Issue March 2182"; + desc = "A copy of Playboy magazine. On the cover is photo of guitarist Sadie Summers, with the headline 'Sadie Summers tells ALL'. The article itself focuses on Sadie's many carnal exploits while on tour as well as her very public brawl at an LA nightclub that occured two years prior to the date of this issue. Flipping through the magazine you see article titles such as 'Jungle Mercenary: Life as an Ex-UPP commando', 'The whys and hows of choosing synthetic girls'." }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"tX" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/platoon_sergeant) -"BP" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"BW" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 +/area/golden_arrow/engineering) +"uc" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 12 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 +/obj/structure/sign/poster{ + pixel_y = 6; + pixel_x = -27; + icon_state = "poster15"; + name = "pulse rifle pinup"; + desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"ud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/golden_arrow/hangar) -"BY" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"BZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Cb" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 +"ug" = ( +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1; + req_one_access = null; + name = "\improper Power Substation" }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 +/area/golden_arrow/engineering) +"uh" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/prep_hallway) +"ui" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 14 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"Ce" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/engineering) +"uk" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"Cf" = ( +/area/golden_arrow/hangar) +"uo" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"uq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/area/golden_arrow/canteen) -"Cg" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Cl" = ( +/area/golden_arrow/engineering) +"ur" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"ut" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/golden_arrow/hangar) -"Cn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/closet/secure_closet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"Co" = ( -/obj/structure/barricade/plasteel{ - dir = 8 +/area/golden_arrow/dorms) +"uv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/firingrange) -"Cr" = ( -/turf/open/space/basic, -/area/space) -"Cs" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/golden_arrow/hangar) +"ux" = ( +/obj/structure/prop{ + name = "\improper seat-like case"; + desc = "It's a case made into an impromptu seat."; + icon_state = "case"; + icon = 'icons/obj/structures/crates.dmi'; + can_buckle = 1; + pixel_y = -2; + layer = 3.6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uz" = ( +/turf/closed/shuttle/midway{ + icon_state = "69"; + name = "\improper Tripoli" }, +/area/golden_arrow/hangar) +"uA" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/canteen) -"Cu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Sergeants Room"; - req_one_access_txt = "12;32" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"Cv" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/area/golden_arrow/briefing) +"uB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/medical) -"Cw" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uC" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = -7 }, -/area/golden_arrow/medical) -"Cy" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +/turf/open/shuttle/dropship{ + icon_state = "rasputin14" }, -/obj/structure/barricade/handrail{ - dir = 8 +/area/golden_arrow/hangar) +"uD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/golden_arrow/supply) -"CA" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"CC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/flamer/special, -/obj/item/explosive/grenade/smokebomb{ - pixel_y = 14; - pixel_x = -5 +"uH" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/item/explosive/grenade/smokebomb{ - pixel_y = 11; - pixel_x = -9 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"CF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 + icon_state = "blackcorner"; + dir = 8 }, +/area/golden_arrow/hangar) +"uI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 15; + pixel_x = -7 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"uK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/golden_arrow/canteen) -"CJ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - name = "Weyland-Yutani premium shampoo"; - desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable{ + icon_state = "2-8" }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"CK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"uM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/hangar) -"CN" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/golden_arrow/hangar) -"CP" = ( +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"uP" = ( +/obj/structure/machinery/power/terminal, /obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/warning_cone{ + pixel_y = 16; + pixel_x = -15 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"CS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/computer/supply_drop_console/limited/alternate, -/turf/open/floor/almayer{ - icon_state = "plate" +"uQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case/double, +/obj/item/toy/beach_ball/holoball{ + pixel_y = 15; + pixel_x = -2 }, -/area/golden_arrow/supply) -"CX" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/golden_arrow/engineering) -"CZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Midway Remote Control Console"; - shuttleId = "dropship_midway" +/area/golden_arrow/hangar) +"uS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Db" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/almayer, -/area/golden_arrow/squad_two) -"Dc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Df" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 16 - }, -/obj/item/device/flashlight/flare{ - pixel_x = 10 - }, -/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"Dg" = ( +/area/golden_arrow/hangar) +"uU" = ( +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = -14; + pixel_x = 2 + }, +/obj/structure/prop{ + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "fuel_enhancer"; + name = "Damaged FS/FES-3 fuel enhancer"; + desc = "A fuel enhancement system for dropships. It improves the thrust produced by the fuel combustion for faster travels. Full of bullet holes and probably needs to be replaced. The label says it was manufactured in 2171"; + density = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"uW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable{ + icon_state = "4-8" }, -/area/golden_arrow/platoon_sergeant) -"Di" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/spent_slug{ - pixel_y = -9; - pixel_x = 8; - name = "spent snailshot"; - layer = 2.7 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/box/guncase/pumpshotgun/special, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"uY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryo Bay" }, -/area/golden_arrow/squad_two) -"Dl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "test_floor4" }, -/area/golden_arrow/canteen) -"Dw" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/area/golden_arrow/cryo_cells) +"va" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/wy/mid{ + opacity = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"vb" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/dorms) +"vd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Dx" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/prop{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "targeting_system"; + name = "\improper Broken AN/AAQ-178 Weapon Targeting System"; + desc = "A targeting system for dropships. It improves firing accuracy on laser targets. Far beyond repair."; + pixel_y = 3; + pixel_x = 7; + density = 1; + layer = 3.1 }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 +/obj/item/prop/almayer/flight_recorder{ + pixel_x = -8; + pixel_y = 9 }, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = -4 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 7; + pixel_y = 15; + layer = 3.11 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"DB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"vf" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/golden_arrow/platoon_commander_rooms) -"DC" = ( +/obj/structure/closet/secure_closet, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"DE" = ( +/area/golden_arrow/dorms) +"vg" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"DF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/golden_arrow/hangar) +"vl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"DM" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, /area/golden_arrow/hangar) -"DR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"vm" = ( +/obj/structure/shuttle/part/dropship1/left_inner_wing_connector{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"vn" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" }, /turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"DX" = ( -/obj/structure/toilet{ - pixel_y = 16 +/area/golden_arrow/hangar) +"vo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"DY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"vp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer{ + icon_state = "black" + }, +/area/golden_arrow/hangar) +"vq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/golden_arrow/platoon_sergeant) -"Ea" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Eb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"Ei" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/flamer/special, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_y = 18 +"vs" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonarmory) +"vt" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/golden_arrow/squad_one) -"Eo" = ( -/obj/structure/platform_decoration, -/obj/structure/platform_decoration{ +/area/golden_arrow/supply) +"vu" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"vv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Ep" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + dir = 8; + icon_state = "cargo_arrow" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/hangar) +"vw" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer{ + icon_state = "test_floor5" }, -/turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"Er" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"vx" = ( +/obj/vehicle/powerloader{ dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Eu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +"vy" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Ey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"vz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"EA" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"vD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"vE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + pixel_y = 24; + density = 0 }, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/golden_arrow/engineering) -"EB" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/medical) +"vF" = ( +/obj/structure/machinery/door/poddoor/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/engineering) -"ED" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" + icon_state = "test_floor4" }, /area/golden_arrow/prep_hallway) -"EF" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, +"vG" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/dorms) -"EI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bathunisex{ - pixel_y = 29 +/area/golden_arrow/hangar) +"vJ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/cryo_cells) -"EJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/area/golden_arrow/hangar) +"vK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 8 }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"EK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"EN" = ( -/obj/structure/barricade/metal{ +"vN" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"EO" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"EQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"vO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_y = 9; + pixel_x = -7 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; +/obj/item/device/camera_film{ pixel_y = 4 }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"vQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"vS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"vT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/dorms) -"EX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/target{ + name = "punching bag"; + pixel_y = 16; + layer = 3.1 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"EZ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +"vV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop{ + density = 1; + icon_state = "pipe_d"; + name = "refueling pump"; + desc = "A pump used for refueling the dropship."; + pixel_x = -4; + pixel_y = -5; + layer = 2.7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/siding{ + icon_state = "siding2" }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"Fa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"wa" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "black"; + dir = 1 }, -/area/golden_arrow/canteen) -"Fe" = ( +/area/golden_arrow/hangar) +"wb" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/bed/bedroll{ + pixel_x = -2; + color = "#333333"; + name = "gym mat"; + buckle_lying = null; + can_buckle = 0; + foldabletype = null; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_one) -"Ff" = ( -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"wd" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"we" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Fg" = ( -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Fi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light{ - dir = 8 +/area/golden_arrow/hangar) +"wf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/box/bodybags, /turf/open/floor/almayer{ - icon_state = "sterile_green" + icon_state = "dark_sterile" }, /area/golden_arrow/medical) -"Fj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = -23; - pixel_y = -11 - }, -/obj/item/facepaint/black, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Fl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"Fu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"wg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Fw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "E" }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"Fy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"Fz" = ( -/obj/structure/closet/crate/trashcart, +/area/golden_arrow/hangar) +"wj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"FE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"FI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"FK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"wn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"FN" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"FP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"FR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, /turf/open/floor/almayer, -/area/golden_arrow/dorms) -"FS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"FT" = ( +/area/golden_arrow/hangar) +"wp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"FV" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, +/area/golden_arrow/hangar) +"wu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "S" }, -/area/golden_arrow/canteen) -"FW" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/cryo_cells) -"Gf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 +"wv" = ( +/obj/structure/cable{ + layer = 2.36; + pixel_y = 12; + pixel_x = -3 }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 +/obj/structure/cable{ + layer = 2.36; + pixel_y = 12; + pixel_x = -1 }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 +/obj/structure/cable{ + layer = 2.36; + pixel_y = 12; + pixel_x = 1 }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 +/obj/structure/cable{ + layer = 2.36; + pixel_y = 12; + pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; + pixel_x = -3 }, -/area/golden_arrow/dorms) -"Gg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; pixel_x = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/cable{ + icon_state = "0-2"; + layer = 2.36; + pixel_y = -3; + pixel_x = 3 }, -/area/golden_arrow/cryo_cells) -"Gi" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 14; - pixel_y = -28 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"ww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/golden_arrow/prep_hallway) -"Gk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"wx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "SW-out" }, -/area/golden_arrow/canteen) -"Gl" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/prep_hallway) -"Gq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Gs" = ( +"wB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, /area/golden_arrow/hangar) -"Gu" = ( +"wC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/hangar) +"wD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gy" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Gz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"GA" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 + icon_state = "test_floor4" }, +/area/golden_arrow/cryo_cells) +"wF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"GG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"wG" = ( +/obj/structure/cargo_container/wy/mid{ + pixel_y = 5 }, +/obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"GK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 +/area/golden_arrow/hangar) +"wH" = ( +/obj/vehicle/powerloader{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/golden_arrow/hangar) +"wJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - id = "Delta_1"; - name = "\improper Bathroom" +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/shared_office) +"wL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"GL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -11; + pixel_y = 14 + }, +/obj/item/tool/hand_labeler{ + pixel_y = 2; + pixel_x = -3 + }, +/obj/item/spacecash/c10{ + pixel_x = 11; + pixel_y = 2; + layer = 2.7 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"wQ" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"wR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"wV" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, -/area/golden_arrow/canteen) -"GN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"wW" = ( +/obj/structure/prop{ + name = "\improper cozy case"; + desc = "A rather cozy case you can sit on. The label says it's full of pillows - though it's probably empty."; + icon_state = "case"; + icon = 'icons/obj/structures/crates.dmi'; + can_buckle = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"wX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Storage Bay One Blast Door" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/golden_arrow/hangar) -"GO" = ( +"wY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/synth_storage{ - pixel_x = -20 +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"xa" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/prep_hallway) -"GQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/golden_arrow/hangar) +"xc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"GU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"GV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/platoon_commander_rooms) -"GY" = ( +"xd" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"Hc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - dir = 4; - name = "Lower Deck Waste Tank Control" +/obj/item/stack/medical/bruise_pack{ + pixel_y = 7; + pixel_x = -12 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/item/stack/medical/ointment{ + pixel_y = 12; + pixel_x = 2 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Hd" = ( -/obj/structure/sign/banners/united_americas_flag{ - pixel_y = 30 + icon_state = "dark_sterile" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/area/golden_arrow/medical) +"xf" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 9 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Platoon Sergeant" +/obj/item/reagent_container/food/snacks/cracker{ + pixel_y = 7; + pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/cracker{ + pixel_y = 9 }, -/area/golden_arrow/dorms) -"Hh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"Hj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_y = 29 +"xl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, -/area/golden_arrow/platoon_sergeant) -"Hk" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/accessory/storage/droppouch, -/obj/item/clothing/accessory/storage/droppouch, /turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"Hm" = ( -/obj/structure/bed/chair{ - dir = 4 + icon_state = "black"; + dir = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Hu" = ( +/area/golden_arrow/hangar) +"xp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "W"; + pixel_x = -1; pixel_y = 1 }, -/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/golden_arrow/firingrange) -"Hv" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 +/area/golden_arrow/cryo_cells) +"xs" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/hangar) +"xu" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/structure/machinery/computer/ares_console{ pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"xx" = ( +/obj/structure/sign/banners/maximumeffort{ + pixel_y = -5; + desc = "A large banner strung up on the wall intended to give the marines a boost in confidence." }, +/turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) -"Hw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;40" - }, +"xy" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_two) -"Hx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/aesthetic, +/area/golden_arrow/hangar) +"xz" = ( +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"HG" = ( +/area/golden_arrow/hangar) +"xA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"HH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"HK" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/cryo_cells) -"HQ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"xB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/golden_arrow/hangar) -"HR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/golden_arrow/hangar) -"HS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"xC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/dam/crane/cargo{ + dir = 4; + desc = "Standard cargo crane used by the USCM. Looks like this one has replacement parts for the Tripoli on it. You probably couldn't name half of these." }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"HT" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"HV" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, +"xF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"HX" = ( +"xI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + layer = 3.3 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 4 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xN" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Ib" = ( +"xP" = ( +/obj/structure/machinery/door/poddoor/railing, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xU" = ( +/obj/structure/toilet{ + dir = 1 + }, /obj/structure/barricade/metal{ - dir = 8 + dir = 8; + pixel_x = -1 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/metal{ + dir = 4; + pixel_x = 1 }, -/obj/structure/sign/safety/one{ - pixel_y = 22 +/obj/structure/barricade/metal{ + dir = 8; + pixel_y = 8; + pixel_x = -1 }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"Ii" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/barricade/metal{ + dir = 4; + pixel_y = 8; + pixel_x = 1 }, +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Is" = ( +"xV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"It" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/golden_arrow/engineering) -"Iw" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Iy" = ( -/obj/structure/computer3frame, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"IC" = ( +/area/golden_arrow/hangar) +"xY" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xZ" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"yb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"ID" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/platoon_sergeant) -"IE" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/warning_cone{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_two) -"IH" = ( -/obj/structure/barricade/metal{ - dir = 8 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/golden_arrow/firingrange) -"IP" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"IR" = ( +/area/golden_arrow/hangar) +"yc" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"IS" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/engineering) -"IT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/prop/almayer/hangar_stencil, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/hangar) -"IU" = ( +/area/golden_arrow/cryo_cells) +"ye" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"IW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"IX" = ( +"yg" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/briefing) -"IZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"yh" = ( +/obj/structure/largecrate/supply/supplies/flares{ + layer = 2.9; + pixel_x = -7 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/golden_arrow/hangar) -"Jc" = ( +"yr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Jg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/platoon_commander_rooms) -"Jj" = ( +/area/golden_arrow/medical) +"yx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/golden_arrow/firingrange) -"Jk" = ( +/area/golden_arrow/hangar) +"yB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + layer = 3.3 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"yG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"yK" = ( +/obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"Jn" = ( +/area/golden_arrow/hangar) +"yN" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 +/obj/item/prop/tableflag{ + pixel_x = -9; + pixel_y = 2 }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 +/obj/item/folder/black{ + icon_state = "folder_black_white"; + pixel_y = 14; + pixel_x = 2 }, -/obj/item/tool/hand_labeler{ - pixel_y = 14 +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_y = 3; + pixel_x = 5 }, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Jp" = ( -/obj/structure/machinery/conveyor{ - dir = 9 +/area/golden_arrow/shared_office) +"yO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/facepaint/green{ + pixel_y = 12; + pixel_x = 2 }, -/area/golden_arrow/supply) -"Jq" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/obj/item/facepaint/black{ + pixel_x = -7; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/facepaint/brown{ + pixel_x = -2; + pixel_y = 1 }, -/area/golden_arrow/hangar) -"Jv" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"yQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"yR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"yS" = ( +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"yT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"JD" = ( +/area/golden_arrow/hangar) +"yW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 8 }, /turf/open/floor/almayer, +/area/golden_arrow/engineering) +"yX" = ( +/turf/open/floor/plating, /area/golden_arrow/hangar) -"JI" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black"; + dir = 4 }, /area/golden_arrow/hangar) -"JJ" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 +"yZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/chaff_launcher{ + pixel_y = 9; + pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/prop/almayer/flare_launcher{ + pixel_y = 19; + pixel_x = 5 }, -/area/golden_arrow/medical) -"JL" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"JP" = ( +/obj/item/prop/almayer/handheld1{ + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"za" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"JT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +"zf" = ( +/obj/structure/bed/chair{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/golden_arrow/hangar) -"JU" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/area/golden_arrow/briefing) +"zi" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/area/golden_arrow/medical) -"JZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "blackcorner"; + dir = 1 }, /area/golden_arrow/hangar) -"Kb" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"Kd" = ( -/obj/structure/surface/table/almayer, +"zj" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/cable/heavyduty{ + icon_state = "2-4" }, -/area/golden_arrow/canteen) -"Ke" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"zk" = ( +/obj/structure/gun_rack/m41, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -5; + pixel_y = 18 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"zq" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"zs" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/briefing) +"zw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/golden_arrow/platoonprep) +"zx" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"zy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zz" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_y = 3 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Ki" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ +"zC" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - health = 80 + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"zD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Kl" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, +/area/golden_arrow/hangar) +"zG" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/platoon_sergeant) -"Kp" = ( -/obj/structure/largecrate/supply/motiondetectors, -/obj/structure/largecrate/supply/explosives/grenades/less{ - icon_state = "case"; - pixel_y = 10; - pixel_x = 3 +/area/golden_arrow/cryo_cells) +"zH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_one) -"Ku" = ( +/area/golden_arrow/prep_hallway) +"zI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;39"; req_one_access = list(); - req_one_access_txt = "8;12;40" + name = "squad one sergeant locker" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"Kv" = ( -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Kx" = ( +/area/golden_arrow/platoonprep) +"zJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "SE-out"; + pixel_x = 1 }, -/area/golden_arrow/hangar) -"KD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; pixel_x = -1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"KH" = ( -/obj/vehicle/powerloader, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, +"zL" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/golden_arrow/dorms) -"KL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/golden_arrow/hangar) +"zP" = ( +/obj/structure/machinery/medical_pod/autodoc{ + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/firingrange) -"KM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/barricade/handrail{ - dir = 4 +/area/golden_arrow/medical) +"zS" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/canteen) -"KO" = ( -/turf/open/floor/almayer, /area/golden_arrow/hangar) -"KP" = ( +"zV" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/trash/plate{ + pixel_y = 4; + pixel_x = -4 }, +/turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"KQ" = ( +"zX" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"zY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "cargo" }, -/area/golden_arrow/platoon_sergeant) -"KU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/hangar) +"Aa" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, /turf/open/floor/almayer{ + dir = 4; icon_state = "cargo_arrow" }, -/area/golden_arrow/prep_hallway) -"KY" = ( +/area/golden_arrow/cryo_cells) +"Af" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "SW-out" }, +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"KZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/area/golden_arrow/hangar) +"Ah" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer{ + icon_state = "dark_sterile" }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/area/golden_arrow/medical) +"Ai" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 38 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 38 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 +/obj/structure/sign/safety/ammunition{ + pixel_y = 26 }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" }, +/area/golden_arrow/hangar) +"Aj" = ( +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;39"; + req_one_access = list(); + name = "squad one smartgunner locker" + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"La" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/golden_arrow/platoonprep) +"An" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/wy_chips_pepper{ + pixel_y = 5; + pixel_x = -5 }, /turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Ld" = ( -/obj/structure/window/reinforced{ +/area/golden_arrow/hangar) +"Ao" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"As" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -2; - pixel_y = 4 + icon_state = "pipe-c" }, -/obj/structure/prop/invuln/lattice_prop{ +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Au" = ( +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 + icon_state = "cargo_arrow" }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/area/golden_arrow/hangar) +"Av" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_y = 11; + pixel_x = -5 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/obj/item/storage/box/bodybags{ + pixel_y = 3; + pixel_x = -2 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Smartgunner" +/obj/item/reagent_container/spray/cleaner{ + pixel_y = 18; + pixel_x = 10 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/dorms) -"Lf" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Lg" = ( -/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, +/area/golden_arrow/medical) +"Aw" = ( +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = -8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_x = 2 + }, +/obj/structure/cable/heavyduty{ + icon_state = "node"; + pixel_x = -3 + }, +/obj/structure/girder/displaced, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Lh" = ( -/obj/structure/sign/poster{ - pixel_y = -8; - pixel_x = -25; - icon_state = "poster15"; - name = "pulse rifle pinup"; - desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." +"Ay" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/platoon_commander_rooms) +"AC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/squad_two) -"Ll" = ( -/obj/structure/ship_ammo/minirocket/incendiary, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, /area/golden_arrow/hangar) -"Ln" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" +"AG" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = -6; + pixel_x = 2 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"Lo" = ( -/obj/structure/machinery/light{ - dir = 4 +"AK" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"AL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ls" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ - density = 0 - }, +"AO" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/landinglight/ds1, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"Lx" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/area/golden_arrow/hangar) +"AQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/command/capt{ + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"AU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"LC" = ( +/area/golden_arrow/cryo_cells) +"AX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AY" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"AZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -12; + pixel_y = 7 }, -/area/golden_arrow/supply) -"LE" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/item/tool/pen{ + pixel_x = -14; + pixel_y = 4 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"LF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, +"Ba" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"Bf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Bg" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_one) -"LH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/area/golden_arrow/hangar) +"Bh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/hangar) -"LJ" = ( -/turf/open/floor/almayer/uscm/directional{ +/area/golden_arrow/shared_office) +"Bk" = ( +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Bl" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 8 }, -/area/golden_arrow/briefing) -"LK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/golden_arrow/squad_one) -"LL" = ( -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"LQ" = ( +/area/golden_arrow/engineering) +"Br" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 8; + pixel_x = 15; + pixel_y = 2 + }, +/obj/item/stool, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Bs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"LS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"Bv" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Vehicle Bay Two Blast Door"; + id = "apc2blastdoor" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Bx" = ( +/obj/structure/prop{ + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "8-9"; + color = "#b30000"; + pixel_y = -15; + pixel_x = 4; + layer = 2.9; + name = "cable" + }, +/obj/structure/prop{ + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "1-4"; + color = "#b30000"; + name = "cable"; + pixel_x = -9 + }, +/obj/structure/prop{ + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "8-10"; + color = "#b30000"; + name = "cable"; + pixel_x = 21 }, -/area/golden_arrow/canteen) -"LT" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin14" + }, +/area/golden_arrow/hangar) +"By" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Bz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"LZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Mc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/golden_arrow/hangar) +"BC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Md" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Me" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/squad_two) -"Mf" = ( -/obj/effect/decal/cleanable/cobweb{ +"BD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/item/notepad, -/obj/item/maintenance_jack, -/obj/structure/closet, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = 5; + pixel_y = 7 }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/storage/photo_album, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"BH" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/synthcloset) -"Mi" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/cryo_cells) +"BJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "mono" }, /area/golden_arrow/cryo_cells) -"Mj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"BL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/medical) -"Ml" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad{ - pixel_x = -7; - pixel_y = 2 +/obj/structure/machinery/door_control{ + pixel_y = -19; + id = "synthbay"; + name = "storage bay door-control" }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = 2 +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"BP" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; + dir = 6 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/area/golden_arrow/hangar) +"BQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"Mn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"Mu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +/area/golden_arrow/hangar) +"BR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/prop/dam/crane, +/obj/structure/prop{ + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + name = "Damaged FS/ACS-9 cooling system"; + desc = "A cooling system for the Tripoli. It produces additional cooling reducing delays between launch. The pipes are crooked and bent, hoses are sliced open, and that's not even mentioning the bullet holes. Looks to be an older model as well."; + density = 1; + pixel_y = 16; + layer = 3.1 }, -/area/golden_arrow/engineering) -"Mz" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"BT" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "86"; + name = "\improper Tripoli" }, +/area/golden_arrow/hangar) +"BU" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/almayer/comp_open{ + pixel_y = 6; + pixel_x = 2 }, -/area/golden_arrow/firingrange) -"MB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Ca" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "S"; + layer = 3.3 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Cc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, +/turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"MC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber, +"Cd" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/hangar) -"MI" = ( +/area/golden_arrow/platoonprep) +"Ce" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"MJ" = ( -/obj/structure/machinery/light{ - dir = 4 +"Cg" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, -/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black" }, -/area/golden_arrow/dorms) -"MK" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/platoon_commander_rooms) -"ML" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 +/area/golden_arrow/hangar) +"Ch" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Cj" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/area/golden_arrow/supply) -"MN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"MW" = ( -/obj/structure/pipes/vents/pump{ +"Ck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"Cm" = ( +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Cn" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/poddoor/railing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Co" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"MZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"Cp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Cq" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/golden_arrow/supply) +"Cu" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/almayer, /area/golden_arrow/dorms) -"Na" = ( -/obj/structure/machinery/light{ +"Cv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"Cw" = ( +/obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "cargo" }, -/area/golden_arrow/cryo_cells) -"Ne" = ( +/area/golden_arrow/briefing) +"Cy" = ( /turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" + icon_state = "test_floor5" }, -/area/golden_arrow/briefing) -"Nf" = ( -/turf/closed/wall/almayer/white, -/area/golden_arrow/medical) -"Ng" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/golden_arrow/synthcloset) +"CA" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Nk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = -14 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"No" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 9; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/trash/cigbutt{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_y = 15; + pixel_x = -4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"Np" = ( -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"Nr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/prop_gun/anti_tank, /turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Nx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/dorms) +"CC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/obj/structure/machinery/power/smes/buildable, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, +/area/golden_arrow/hangar) +"CE" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/medical) +"CG" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"Nz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"CI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm{ + dir = 1 }, -/area/golden_arrow/engineering) -"NB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 +/area/golden_arrow/hangar) +"CJ" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/cryo_cells) -"ND" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29; - layer = 3 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"CK" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "35"; + name = "\improper Tripoli" }, -/obj/structure/gun_rack/m41, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_y = 22; - pixel_x = 9 +/area/golden_arrow/hangar) +"CL" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"NE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ +/area/golden_arrow/cryo_cells) +"CM" = ( +/obj/structure/closet/firecloset, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; pixel_y = 16 }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"NI" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - density = 0; - pixel_x = -30 + icon_state = "cargo" }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/area/golden_arrow/cryo_cells) +"CP" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 3 }, -/area/golden_arrow/synthcloset) -"NO" = ( -/obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"NT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/hangar) +"CQ" = ( +/turf/closed/shuttle/midway{ + icon_state = "94"; + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/area/golden_arrow/hangar) +"CV" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ + name = "\improper Tripoli" }, -/area/golden_arrow/canteen) -"NU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() +/obj/item/tool/screwdriver{ + pixel_y = 5; + pixel_x = -4; + layer = 3.03; + icon_state = "screwdriver5" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/trash/eat{ + pixel_x = 10 }, -/area/golden_arrow/engineering) -"NV" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"CW" = ( +/obj/structure/ship_ammo/minirocket, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"CX" = ( +/obj/structure/gun_rack/m41, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"Da" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"NZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"Dj" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/area/golden_arrow/engineering) -"Ob" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Dl" = ( +/obj/structure/shuttle/part/dropship1/transparent/engine_left_exhaust{ + name = "\improper Tripoli" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Dp" = ( +/turf/closed/shuttle/dropship1{ + icon_state = "97"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Dt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/briefing) -"Oc" = ( +/area/golden_arrow/hangar) +"Dv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Od" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/area/golden_arrow/platoonprep) +"Dz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" }, -/area/golden_arrow/briefing) -"Of" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/firingrange) -"Oj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Ol" = ( -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 5; - pixel_y = 10 + icon_state = "black"; + dir = 4 }, -/obj/structure/janitorialcart, -/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"DA" = ( +/turf/closed/wall/almayer, /area/golden_arrow/engineering) -"Op" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"Os" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Oy" = ( -/obj/structure/machinery/light{ +"DB" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/cable{ + icon_state = "1-2" }, -/area/golden_arrow/firingrange) -"Oz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"OA" = ( /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"OC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 3 + icon_state = "cargo" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/briefing) +"DC" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -30; + pixel_y = 31 }, -/area/golden_arrow/platoon_commander_rooms) -"OG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/vending/dinnerware, +/obj/item/ashtray/glass{ + pixel_x = -3; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/golden_arrow/cryo_cells) +"DD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"OH" = ( -/obj/effect/decal/cleanable/dirt, +"DE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"OI" = ( +"DF" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"DI" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"DJ" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"DL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/obj/item/tool/wrench, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_one) -"OJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/platoonarmory) +"DM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"ON" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"DN" = ( +/obj/structure/shuttle/part/dropship1/transparent/nose_top_left{ + name = "\improper Tripoli" }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"OU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"OX" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, +"DO" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, /area/golden_arrow/briefing) -"OY" = ( -/obj/structure/ladder{ - height = 2; - id = "req1" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"OZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, +"DP" = ( +/obj/structure/machinery/power/terminal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Pc" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"DQ" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoonprep) +"DY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/item/tool/kitchen/tray{ - pixel_x = 16; - pixel_y = -10 - }, -/obj/item/storage/box/cups{ - pixel_x = 11; - pixel_y = -9 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"Pe" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ea" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Pf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Ph" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Pl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"Eb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/cryo_cells) -"Pm" = ( -/obj/structure/largecrate/supply/explosives/grenades/less{ - icon_state = "case" +/area/golden_arrow/medical) +"Ef" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/obj/structure/largecrate/supply/motiondetectors{ - pixel_y = 10 +/area/golden_arrow/hangar) +"Eg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/squad_two) -"Pp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad One Armoury"; - req_one_access_txt = "8;12;39" +/area/golden_arrow/hangar) +"Eh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_x = -8; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "dark_sterile" }, -/area/golden_arrow/squad_one) -"Pr" = ( +/area/golden_arrow/medical) +"Ek" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"El" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/structure/cargo_container/wy/mid{ + pixel_y = -17; + opacity = 0 + }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "cargo" }, -/area/golden_arrow/medical) -"Ps" = ( -/obj/item/stack/sheet/metal{ - amount = 50 +/area/golden_arrow/hangar) +"Em" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"En" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/closet/crate/trashcart{ + pixel_y = 11 + }, +/obj/item/prop/colony/usedbandage, +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 6; pixel_y = 6 }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13 }, -/area/golden_arrow/engineering) -"Pt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pill_bottle, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"Ep" = ( +/obj/effect/decal/siding{ + icon_state = "siding10" }, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"Px" = ( -/obj/effect/decal/cleanable/dirt, +"Er" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_one_access_txt = "8;12;39;40"; + req_access = list() + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_y = 21; + pixel_x = 10 + }, /turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Py" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/area/golden_arrow/platoonprep) +"Et" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Weapons Bay Two Blast Door"; + id = "bay2door" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, /area/golden_arrow/hangar) -"PA" = ( -/obj/structure/closet/crate/supply, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/turf/open/floor/almayer{ - icon_state = "plate" +"Ev" = ( +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/area/golden_arrow/squad_one) -"PF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = -3; + pixel_x = 9 }, -/area/golden_arrow/prep_hallway) -"PG" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 +/obj/item/storage/box/donkpockets{ + pixel_y = 22; + pixel_x = 4 }, +/obj/structure/surface/table/almayer, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/squad_two) -"PI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/cryo_cells) +"Ew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B{ + pixel_x = 14; + layer = 2.01 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/ashtray/plastic{ + pixel_y = -3; + pixel_x = 10 }, -/area/golden_arrow/firingrange) -"PL" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Ez" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/engineering) -"PQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/golden_arrow/cryo_cells) +"EA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer{ + dir = 4; icon_state = "cargo_arrow" }, -/area/golden_arrow/platoon_sergeant) -"PS" = ( +/area/golden_arrow/hangar) +"ED" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"EE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"EG" = ( +/turf/open/space/basic, +/area/space) +"EH" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/golden_arrow/firingrange) -"PW" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Private Briefing Room"; - req_access = list(); - req_one_access_txt = "12;19;32" +/area/golden_arrow/hangar) +"EK" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "cargolock"; + name = "\improper Cargo Elevator Blast Door" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/golden_arrow/briefing) -"PY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/golden_arrow/supply) +"EL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"EM" = ( +/obj/structure/prop{ + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "4-5"; + color = "#b30000"; + pixel_x = 5; + name = "cable" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"PZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/shuttle/dropship{ + icon_state = "rasputin14" }, -/obj/structure/surface/table/almayer, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 7 +/area/golden_arrow/hangar) +"EP" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"Qc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Overwatch" +/area/golden_arrow/hangar) +"EQ" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit{ + locked = 1 }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -8; - pixel_y = 12 +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Qe" = ( -/obj/structure/surface/table/almayer, +/area/golden_arrow/hangar) +"ER" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"Qi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/conference_room{ - pixel_y = 29 +/area/golden_arrow/prep_hallway) +"ES" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"ET" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"EU" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/prep_hallway) -"Qk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/golden_arrow/engineering) +"EV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ql" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 +"EY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"EZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/prep_hallway) -"Qq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +/area/golden_arrow/cryo_cells) +"Fb" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -18 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Fd" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"Qt" = ( +/area/golden_arrow/hangar) +"Fe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = -6; - pixel_y = 1 +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/supply) -"Qu" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/area/golden_arrow/platoonprep) +"Ff" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/golden_arrow/hangar) +"Fg" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Qw" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_two) -"Qx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/area/golden_arrow/shared_office) +"Fi" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/mirror{ - pixel_x = 28 +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Fk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Qz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Fl" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 7; + pixel_y = 14 }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 5 }, -/area/golden_arrow/engineering) -"QD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 6 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"QE" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"QI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = -7; - pixel_y = 9 +"Fm" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"QJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"QL" = ( +/area/golden_arrow/hangar) +"Fn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S"; + layer = 3.3 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"QM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"QN" = ( -/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"QO" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"QP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, +"Fo" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander" + }, +/obj/item/clothing/under/marine/officer/boiler, +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/supply) -"QQ" = ( -/obj/structure/toilet{ +/area/golden_arrow/cryo_cells) +"Fp" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_commander_rooms) -"QS" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/platoon_sergeant) -"QT" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ +/area/golden_arrow/briefing) +"Fq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, /area/golden_arrow/cryo_cells) -"QW" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 +"Fu" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"QX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 18; + layer = 3.6; + density = 0 }, -/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/platoon_sergeant) -"Ra" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/golden_arrow/hangar) +"Fw" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"FA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = -3 + }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/cryo_cells) -"Rc" = ( +/area/golden_arrow/medical) +"FB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ dir = 1; - name = "\improper Supply Office" + icon_state = "cargo_arrow" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/prep_hallway) +"FC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/area/golden_arrow/supply) -"Rd" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/supply) -"Rg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E" }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Rh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"FE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/platoon_sergeant) -"Ri" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"FJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Two Blast Door" }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "test_floor4" }, -/area/golden_arrow/firingrange) -"Rl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 +/area/golden_arrow/hangar) +"FM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32 }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 7; - pixel_y = -2 +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"FN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 +/obj/structure/cable{ + icon_state = "2-8" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"FP" = ( +/turf/closed/shuttle/midway{ + icon_state = "25"; + name = "\improper Tripoli" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/area/golden_arrow/hangar) +"FQ" = ( +/turf/closed/shuttle/midway{ + icon_state = "77"; + name = "\improper Tripoli" }, -/area/golden_arrow/canteen) -"Rr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, /area/golden_arrow/hangar) -"Rt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"FS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Rv" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/canteen) -"Rx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Ry" = ( +"FT" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -4; - pixel_y = 32; - serial_number = 11 +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;40"; + req_one_access = list(); + name = "squad two sergeant locker" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_one) -"RD" = ( -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"RK" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/golden_arrow/platoonprep) +"FU" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, /area/golden_arrow/hangar) -"RM" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"FV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/engineering) -"RN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ - pixel_x = -5; - pixel_y = 10 +/obj/structure/cable/heavyduty{ + icon_state = "1-8" }, -/obj/item/stack/sheet/glass{ - amount = 50 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"FX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case{ + pixel_y = 11 }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 4; + pixel_y = 15; + layer = 3.11 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"FY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "test_floor4" }, -/area/golden_arrow/engineering) -"RO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;40"; - req_one_access = list() +/area/golden_arrow/platoonprep) +"FZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap/deluxe{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Gb" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.97 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"RP" = ( +/area/golden_arrow/hangar) +"Gg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"RT" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"RW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"Gi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/prop{ + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "lz_detector"; + name = "\improper Damaged AN/AVD-60 LZ detector"; + desc = "An electronic device linked to the dropship's camera system that lets you observe your landing zone. This thing probably never even worked."; + density = 1; + layer = 3.1 }, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"RY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"Sc" = ( +/area/golden_arrow/engineering) +"Gk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/cryo_cells) -"Sd" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/area/golden_arrow/platoonprep) +"Gp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Gq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 }, -/area/golden_arrow/dorms) -"Si" = ( -/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 1; + icon_state = "cargo_arrow" }, -/area/golden_arrow/cryo_cells) -"Sj" = ( +/area/golden_arrow/hangar) +"Gs" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Sl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 11; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Sn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, /area/golden_arrow/engineering) -"So" = ( +"Gz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Sq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"GA" = ( +/turf/closed/shuttle/elevator, +/area/golden_arrow/supply) +"GD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/golden_arrow/hangar) +"GG" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Su" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "test_floor5" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/area/golden_arrow/synthcloset) +"GH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" }, -/area/golden_arrow/canteen) -"Sw" = ( -/obj/structure/machinery/shower{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Sy" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"SB" = ( +/area/golden_arrow/platoonprep) +"GI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"SC" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - pixel_x = 10; - pixel_y = 3 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = -6; - pixel_y = 5 +/obj/structure/surface/rack, +/obj/item/book/manual/robotics_cyborgs{ + pixel_y = 4 }, +/obj/item/tool/weldingtool/hugetank, +/obj/item/tool/wirecutters, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"SE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/target, +/area/golden_arrow/synthcloset) +"GM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/area/golden_arrow/firingrange) -"SI" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/power/apc/almayer{ dir = 8 }, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"SL" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/dorms) +"GP" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/golden_arrow/hangar) -"SO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/dorms) +"GQ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/catwalk{ + pixel_x = 12; + pixel_y = -9 + }, +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"GU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"SR" = ( +/area/golden_arrow/hangar) +"GW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Ha" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/supply/supplies/mre{ + layer = 3.1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"ST" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/flare{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/device/flashlight/flare{ - pixel_x = 5; - pixel_y = 5 - }, +"Hc" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"SV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book/theartofwar, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"SY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/area/golden_arrow/hangar) +"He" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/golden_arrow/prep_hallway) -"Tb" = ( -/obj/item/toy/deck, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Tc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/turf/closed/wall/almayer/white, -/area/golden_arrow/medical) -"Td" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" }, -/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Tg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"Hf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/area/golden_arrow/cryo_cells) +"Hh" = ( +/obj/structure/sink{ + pixel_y = 24; + layer = 3.1 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/mirror{ + pixel_y = 35; + pixel_x = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Hi" = ( +/obj/structure/cargo_container/arious/mid, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Hj" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_y = 9; + pixel_x = -11 }, -/area/golden_arrow/dorms) -"Tj" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_y = 9; + pixel_x = 14 }, -/obj/structure/filingcabinet{ - density = 0; +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_y = 24; pixel_x = 8; - pixel_y = 16 + layer = 3.1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/golden_arrow/platoon_sergeant) -"Tk" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/area/golden_arrow/hangar) +"Hk" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"Hl" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 3; + opacity = 0 + }, +/obj/structure/cargo_container/kelland/left{ + pixel_y = 22; + opacity = 0 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Hm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/window/reinforced{ +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"Hn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable{ + pixel_y = 10 + }, +/obj/item/storage/briefcase/inflatable{ + pixel_y = 5; + pixel_x = 3 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Hp" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/golden_arrow/medical) +"Hs" = ( +/obj/structure/bed/chair{ dir = 8; - layer = 3.3; - pixel_y = 4 + pixel_y = 3 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"Hv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Hw" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/golden_arrow/platoon_commander_rooms) +"HA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/dorms) -"To" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/golden_arrow/hangar) +"HD" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "38"; + name = "\improper Tripoli" }, +/area/golden_arrow/hangar) +"HF" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" + icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"Tr" = ( -/obj/structure/machinery/alarm/almayer{ +"HH" = ( +/obj/structure/machinery/light{ dir = 1 }, +/obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" }, /area/golden_arrow/cryo_cells) -"Tu" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 +"HJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 +/obj/item/storage/fancy/cigar/matchbook{ + pixel_y = 6; + pixel_x = -1 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/golden_arrow/platoonprep) +"HK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"HL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"Tx" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/area/golden_arrow/cryo_cells) +"HM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"HN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 + }, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Ty" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_one) -"Tz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8 +"HO" = ( +/obj/structure/shuttle/part/dropship1/left_outer_wing_connector{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"HP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"TC" = ( +/area/golden_arrow/hangar) +"HR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"HS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"TD" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" }, -/obj/item/stack/cable_coil{ - pixel_x = 7 +/area/golden_arrow/hangar) +"HT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 +/obj/structure/cable/heavyduty{ + icon_state = "2-8" }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/obj/structure/cable/heavyduty{ + icon_state = "0-4" }, -/turf/open/floor/plating, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"HW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"TI" = ( +"HY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/golden_arrow/squad_one) -"TK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"HZ" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoonarmory) +"Ia" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 }, -/area/golden_arrow/engineering) -"TN" = ( -/turf/closed/wall/almayer/reinforced, -/area/golden_arrow/engineering) -"TO" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"TP" = ( +/area/golden_arrow/platoonarmory) +"Ib" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/structure/prop/almayer/hangar_stencil, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"TT" = ( +/area/golden_arrow/briefing) +"Id" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"TW" = ( -/obj/structure/machinery/recharge_station, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Ie" = ( +/obj/effect/attach_point/fuel/midway, +/turf/closed/shuttle/midway/transparent{ + icon_state = "28"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Ig" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/golden_arrow/synthcloset) -"TY" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 12 +/area/golden_arrow/hangar) +"Ii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Ij" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/canteen) -"Ub" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"Uf" = ( +/area/golden_arrow/hangar) +"Il" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/engineering) -"Uh" = ( /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "plate" }, -/area/golden_arrow/briefing) -"Ui" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/canteen) -"Uj" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/golden_arrow/hangar) +"Im" = ( +/obj/item/storage/box/guncase/pumpshotgun/special{ + pixel_y = 4 }, -/area/golden_arrow/platoon_sergeant) -"Uk" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ +/obj/item/storage/box/guncase/flamer/special{ + pixel_y = 10; + layer = 3.1 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"In" = ( +/obj/item/prop/almayer/comp_open{ + pixel_y = 4; + pixel_x = 40 + }, +/obj/structure/prop{ + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "4-5"; + color = "#b30000"; pixel_x = 5; - pixel_y = 7 + pixel_y = 2; + layer = 2.8; + name = "cable" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"Um" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - pixel_x = -30 +/turf/open/shuttle/dropship{ + icon_state = "rasputin14" }, +/area/golden_arrow/hangar) +"Ir" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoonprep) +"It" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, /turf/open/floor/almayer{ - icon_state = "test_floor5" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/synthcloset) -"Uv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/cryo_cells) +"Iu" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/area/golden_arrow/canteen) -"UI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"UK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m4ra/pve{ - pixel_y = 8 +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Iv" = ( +/obj/structure/ladder{ + id = "engisouth" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Iw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "dark_sterile" }, -/area/golden_arrow/platoon_sergeant) -"UN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 13 +/area/golden_arrow/medical) +"Ix" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, -/area/golden_arrow/canteen) -"UO" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 1 }, +/area/golden_arrow/hangar) +"Iz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"UT" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/area/golden_arrow/prep_hallway) +"IB" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 }, -/area/golden_arrow/prep_hallway) -"UX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"IC" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/engineering) +"IE" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" }, -/obj/effect/decal/cleanable/blood/oil, +/area/golden_arrow/cryo_cells) +"IF" = ( +/obj/structure/machinery/door/poddoor/railing, /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/hangar) -"Va" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; +/area/golden_arrow/engineering) +"IG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/safety/terminal{ + pixel_y = -26; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Vc" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/cryo_cells) -"Ve" = ( -/obj/structure/sink{ - pixel_y = 24 +/area/golden_arrow/prep_hallway) +"IH" = ( +/turf/closed/shuttle/elevator{ + dir = 4 }, -/obj/structure/mirror{ - pixel_y = 32 +/area/golden_arrow/supply) +"II" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"IJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 +/obj/structure/cable/heavyduty{ + icon_state = "2-4" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/cable{ + layer = 2.36 }, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/area/golden_arrow/cryo_cells) -"Vj" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"IM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_y = 11 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -5; + pixel_y = -9 }, -/area/golden_arrow/engineering) -"Vp" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/dorms) -"Vq" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) -"Vr" = ( +/area/golden_arrow/platoonprep) +"IO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, +/area/golden_arrow/hangar) +"IV" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs/perspective, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, /area/golden_arrow/briefing) -"Vu" = ( +"IW" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Supply Bay" +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "black"; + dir = 4 }, -/area/golden_arrow/supply) -"Vv" = ( +/area/golden_arrow/hangar) +"IX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"IZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"Ja" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Jb" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Jc" = ( +/obj/structure/bed/bedroll{ + pixel_x = -2; + color = "#333333"; + name = "gym mat"; + buckle_lying = null; + can_buckle = 0; + foldabletype = null; + pixel_y = -3; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "cargo_arrow" }, /area/golden_arrow/hangar) -"Vz" = ( +"Jd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Ji" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "First Platoon Ready Bay Blast Door"; + closed_layer = 3.3; + layer = 3.3; + open_layer = 3.3; + id = "squadblastdoor" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/area/golden_arrow/dorms) -"VG" = ( /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "test_floor4" }, -/area/golden_arrow/firingrange) -"VJ" = ( -/obj/structure/ladder{ - height = 1; - id = "req1" +/area/golden_arrow/platoonarmory) +"Jk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" }, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"Jm" = ( +/obj/structure/machinery/power/smes/buildable, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 }, /turf/open/floor/almayer{ - icon_state = "test_floor5" + icon_state = "test_floor4" }, -/area/golden_arrow/supply) -"VK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;39"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/golden_arrow/engineering) +"Jo" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony{ + pixel_y = 33 }, -/area/golden_arrow/squad_one) -"VL" = ( -/obj/structure/closet/secure_closet/platoon_sergeant, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"VQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"VT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 - }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 - }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, /area/golden_arrow/supply) -"VX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"Jp" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, +/area/golden_arrow/hangar) +"Jt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, /area/golden_arrow/briefing) -"Wf" = ( +"Jx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/structure/cable/heavyduty{ + icon_state = "2-8" }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Wg" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"JB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "test_floor4" + }, +/area/golden_arrow/cryo_cells) +"JC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/platoon_commander_rooms) -"Wj" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "cargo_arrow" }, -/area/golden_arrow/dorms) -"Wl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/area/golden_arrow/hangar) +"JE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "squadarmory"; + name = "\improper Gear Lockers" }, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Wm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/area/golden_arrow/platoonprep) +"JF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 }, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Wo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/area/golden_arrow/engineering) +"JG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/supply) -"Wp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/golden_arrow/hangar) +"JH" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "89"; + name = "\improper Tripoli" }, +/area/golden_arrow/hangar) +"JI" = ( +/obj/structure/machinery/faxmachine/uscm/command/capt, +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"Wr" = ( -/obj/structure/machinery/floodlight/landing, +/area/golden_arrow/platoon_commander_rooms) +"JJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ws" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"JK" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Wu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"JL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/hangar) -"Wv" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/structure/largecrate/supply/supplies/flares{ + layer = 3.1 + }, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"Wy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"JM" = ( +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 }, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"WA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/golden_arrow/platoonarmory) +"JQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/largecrate, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"WG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/supply) -"WK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"WP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/area/golden_arrow/dorms) +"JR" = ( +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = -3; + pixel_y = 10 }, -/area/golden_arrow/briefing) -"WY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"JV" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + name = "non-functional maintenance airlock"; + layer = 2.1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/airlock{ + pixel_y = 1; + pixel_x = 8 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Xa" = ( +/area/golden_arrow/hangar) +"JZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stool{ + pixel_y = 12; + pixel_x = -1 }, -/area/golden_arrow/cryo_cells) -"Xb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/yellow, -/obj/item/book/manual/engineering_construction, /turf/open/floor/almayer{ dir = 5; icon_state = "plating" }, /area/golden_arrow/engineering) -"Xc" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Xd" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Xj" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, +"Kc" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -20 + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, /area/golden_arrow/supply) -"Xs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Xu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Firing Range" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"Kf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Kg" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/area/golden_arrow/firingrange) -"Xv" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/platoon_commander_rooms) -"Xw" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + dir = 8; + icon_state = "cargo_arrow" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/area/golden_arrow/engineering) +"Kh" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/canteen) -"Xy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/golden_arrow/hangar) +"Ki" = ( +/obj/structure/closet/secure_closet, +/obj/structure/machinery/prop{ + desc = "This stylized recruitment poster for the USCM depicts a the head of a screaming eagle breaking into orbit, surrounded by flames. Death from above."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster41"; + name = "USCM recruitment poster"; + layer = 3.5; + pixel_y = 34; + pixel_x = -1 }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Kk" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Km" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Kn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Ko" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/dorms) +"Kp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"Xz" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"XI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"Kx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"XJ" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/briefing) -"XL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = 12 +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = 24 +/area/golden_arrow/hangar) +"Ky" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -7; - pixel_y = 14 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Kz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/golden_arrow/cryo_cells) -"XN" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"KA" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "23"; + name = "\improper Tripoli" }, -/area/golden_arrow/engineering) -"XP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 7; - pixel_y = -28 +/area/golden_arrow/hangar) +"KB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/reagent_dispensers/ammoniatank, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/golden_arrow/engineering) -"XQ" = ( +/obj/effect/decal/cleanable/cobweb2/dynamic, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/area/golden_arrow/prep_hallway) -"XR" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/ceramic_plate{ - pixel_y = 19 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"KE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"KG" = ( +/obj/structure/machinery/prop{ + density = 1; + icon_state = "pipe_d"; + name = "refueling pump"; + desc = "A pump used for refueling the dropship."; + pixel_y = -5; + layer = 2.7 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 23 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/golden_arrow/canteen) -"XV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/hangar) +"KN" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Ya" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" + icon_state = "dark_sterile" }, -/area/golden_arrow/squad_two) -"Yc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; +/area/golden_arrow/medical) +"KP" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "29"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"KQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/secure{ pixel_y = 10 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_one) -"Yd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/item/folder/black_random, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"Ye" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/area/golden_arrow/hangar) +"KR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/golden_arrow/engineering) -"Yh" = ( +/area/golden_arrow/hangar) +"KS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Yj" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/hangar) -"Yk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"Yl" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - pixel_x = -30 + icon_state = "dark_sterile" }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/area/golden_arrow/medical) +"KT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/golden_arrow/synthcloset) -"Ym" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"Yp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"KU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Ys" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 5; - pixel_y = 23 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/golden_arrow/cryo_cells) +"KV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KW" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/canteen) -"Yv" = ( +/area/golden_arrow/medical) +"La" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Yw" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/golden_arrow/hangar) -"Yx" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 19 +/area/golden_arrow/briefing) +"Lc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Ld" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 21 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/trash/ceramic_plate{ - pixel_x = -5; - pixel_y = 23 +/area/golden_arrow/hangar) +"Le" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = -1 }, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/golden_arrow/canteen) -"YA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +/area/golden_arrow/medical) +"Lf" = ( +/turf/open/shuttle/elevator, +/area/golden_arrow/supply) +"Lg" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -7; + pixel_y = 4 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" + icon_state = "dark_sterile" }, -/area/golden_arrow/briefing) -"YB" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/engineering) -"YG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/area/golden_arrow/medical) +"Ll" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "mono" }, /area/golden_arrow/cryo_cells) -"YK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"Lm" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Ln" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/closet/secure_closet, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Lo" = ( +/turf/closed/shuttle/elevator/gears, +/area/golden_arrow/supply) +"Lq" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/canteen) -"YO" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, +/area/golden_arrow/cryo_cells) +"Lr" = ( /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "test_floor4" }, -/area/golden_arrow/engineering) -"YP" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/briefing) -"YQ" = ( +/area/golden_arrow/hangar) +"Lu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"YX" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Zb" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +"Lx" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/golden_arrow/squad_two) -"Zd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/cable{ + icon_state = "2-4" }, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"Zf" = ( +/area/golden_arrow/shared_office) +"Lz" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; + dir = 4 + }, +/area/golden_arrow/hangar) +"LA" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"LD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17; + pixel_y = -15 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/golden_arrow/canteen) -"Zk" = ( -/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "cargo_arrow" }, -/area/golden_arrow/prep_hallway) -"Zl" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/golden_arrow/hangar) +"LH" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/squad_two) -"Zw" = ( -/obj/structure/largecrate/supply/generator, +/area/golden_arrow/hangar) +"LI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"LJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, /turf/open/floor/almayer{ + dir = 10; icon_state = "cargo" }, -/area/golden_arrow/engineering) -"ZB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 6 +/area/golden_arrow/hangar) +"LK" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "black"; + dir = 8 + }, +/area/golden_arrow/hangar) +"LL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/golden_arrow/platoon_sergeant) -"ZC" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/squad_one) -"ZI" = ( -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"ZJ" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/synthcloset) -"ZL" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/golden_arrow/hangar) -"ZM" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"LM" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/golden_arrow/canteen) -"ZQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/firingrange) -"ZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/chem_master, /turf/open/floor/almayer{ - icon_state = "sterile_green" + icon_state = "blackcorner"; + dir = 8 }, -/area/golden_arrow/medical) -"ZU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/hangar) +"LQ" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/supply) -"ZV" = ( +/area/golden_arrow/engineering) +"LS" = ( +/obj/structure/cargo_container/wy/left{ + pixel_y = -17; + opacity = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/toy/plush/therapy/red{ + desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days."; + force = 15; + layer = 4.1; + name = "Discharged Huggs"; + pixel_y = 32; + throwforce = 15; + pixel_x = 5 + }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" }, -/area/golden_arrow/cryo_cells) -"ZX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/engineering{ +/area/golden_arrow/hangar) +"LU" = ( +/obj/structure/platform{ dir = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/golden_arrow/engineering) - -(1,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(2,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(3,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(4,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(5,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(6,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(7,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(8,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} +/area/golden_arrow/briefing) +"LV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"LX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"LY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + network = list("Golden Arrow","Vehicle","Midway"); + pixel_x = 17; + dir = 8 + }, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + dir = 8; + icon_state = "shuttle"; + layer = 2.97; + name = "Tactical Map Display"; + pixel_x = 17; + pixel_y = 14 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway"; + icon_state = "cameras_old"; + dir = 8; + pixel_x = 17; + pixel_y = -14 + }, +/obj/structure/surface/table/reinforced/almayer_B{ + pixel_x = 14; + layer = 2.01 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Ma" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Md" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Mf" = ( +/obj/structure/machinery/computer/supply_drop_console/limited/alternate{ + density = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Mh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Mn" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "80"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Ms" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Mt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Mv" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Mw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"My" = ( +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;40"; + req_one_access = list(); + name = "squad two smartgunner locker" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoonprep) +"MB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"MC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"MD" = ( +/obj/item/prop/magazine/book/starshiptroopers{ + layer = 4.1; + pixel_y = 47 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"MF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"MG" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"MJ" = ( +/obj/structure/shuttle/part/dropship1/transparent/lower_left_wing{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"MK" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"MM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"MQ" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"MR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"MT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"MV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"MX" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"MY" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"MZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Na" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/tool/soap{ + pixel_y = 12; + pixel_x = 7 + }, +/obj/item/tool/soap/nanotrasen{ + pixel_y = 6; + pixel_x = -7 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Nb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Ne" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"Ng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Nj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 23; + pixel_x = -5; + id = "weapons_conny"; + name = "weapons locker shutter control"; + req_one_access_txt = "19;12" + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 23; + pixel_x = 7; + id = "equipment_conny"; + name = "equipment locker shutter control"; + req_one_access_txt = "19;12" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"Nk" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/storage{ + pixel_x = -18; + pixel_y = -7 + }, +/obj/structure/sign/safety/two{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Nn" = ( +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 28; + id = "apc1blastdoor"; + name = "vehicle bay blast door control" + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 28; + id = "apcbayrailing1"; + name = "vehicle bay railing control"; + pixel_x = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"No" = ( +/obj/effect/attach_point/fuel/midway{ + pixel_x = -32 + }, +/turf/closed/shuttle/midway/transparent{ + icon_state = "33"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Np" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Nq" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/golden_arrow/hangar) +"Nt" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Nv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Ny" = ( +/obj/structure/surface/table/almayer, +/obj/item/notepad/black, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/prop/tableflag{ + pixel_x = 12; + pixel_y = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"NA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"NF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"NG" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"NH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"NI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"NJ" = ( +/obj/structure/cargo_container/arious/leftmid, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"NK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"NM" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "32"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"NO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"NQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"NR" = ( +/obj/structure/largecrate/supply/weapons/m56d{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/structure/largecrate/supply/weapons/m56d{ + pixel_x = 9; + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"NS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 14; + pixel_x = 5 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/trash/cigbutt{ + pixel_y = 10; + pixel_x = 1; + randpixel = 0 + }, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"NW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"NZ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Oa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ob" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Of" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/marine/officer/boiler, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Og" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Oh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"Ol" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Two Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Oo" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Op" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/bed/bedroll{ + pixel_y = -4; + color = "#333333"; + name = "gym mat"; + buckle_lying = null; + can_buckle = 0; + foldabletype = null; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Or" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/prop/tableflag/uscm{ + pixel_y = -1; + pixel_x = -12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Ot" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"Ou" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ov" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Oy" = ( +/turf/closed/shuttle/midway{ + icon_state = "73"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Oz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"OB" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonarmory) +"OD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoon_commander_rooms) +"OK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/space/basic, +/area/space) +"OL" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1; + name = "non-functional maintenance airlock" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"OP" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"OQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OU" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"OV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"OW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"OX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Pd" = ( +/turf/closed/shuttle/midway{ + icon_state = "42"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Pe" = ( +/obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons{ + name = "\improper Tripoli" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Pi" = ( +/obj/structure/cargo_container/wy/left{ + pixel_y = 5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Pj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/medical) +"Pp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_y = 5; + pixel_x = -1; + layer = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Pr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"Pu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"Py" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/tool/wet_sign{ + pixel_y = 14; + pixel_x = -14 + }, +/obj/item/tool/wet_sign{ + pixel_y = 10; + pixel_x = -17 + }, +/obj/item/tool/wet_sign{ + pixel_y = 6; + pixel_x = -13 + }, +/obj/item/tool/wet_sign{ + pixel_y = 2; + pixel_x = -15 + }, +/obj/item/tool/wet_sign{ + pixel_y = -2; + pixel_x = -13 + }, +/obj/item/tool/wet_sign{ + pixel_y = 16; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"PA" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"PF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"PI" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"PN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"PO" = ( +/obj/structure/ladder{ + id = "engisouth"; + height = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"PP" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"PR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"PS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"PT" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/engineering) +"PW" = ( +/obj/structure/cargo_container/wy/right{ + pixel_y = 5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"PX" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/golden_arrow/supply) +"PZ" = ( +/obj/structure/shuttle/part/dropship1/transparent/outer_left_weapons{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Qg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Qh" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access_txt = "8;12;39;40"; + req_one_access = list() + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Qi" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/golden_arrow/hangar) +"Qj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Qk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Qm" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Qn" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Qp" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Qr" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/golden_arrow/cryo_cells) +"Qt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Qu" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Qv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"Qw" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Qx" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Qz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"QA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"QB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"QC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"QD" = ( +/turf/closed/shuttle/midway{ + icon_state = "67"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"QE" = ( +/turf/open/shuttle/elevator/grating, +/area/golden_arrow/supply) +"QG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/hardpoint/locomotion/apc_wheels, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"QH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"QJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"QK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"QL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"QN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"QO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"QP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"QS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"QW" = ( +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"QX" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonprep) +"QY" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"QZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers"; + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonprep) +"Rb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Rd" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Ri" = ( +/obj/structure/closet, +/obj/item/maintenance_jack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"Rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/wy/right{ + opacity = 0 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ro" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/clothing/head/cmcap{ + pixel_x = 1; + pixel_y = -3 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Rp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Rt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 4 + }, +/area/golden_arrow/hangar) +"Rx" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; + pixel_y = 14; + pixel_x = -12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"Rz" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"RA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"RD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonprep) +"RF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"RG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"RH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"RI" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"RO" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/golden_arrow/hangar) +"RR" = ( +/obj/effect/decal/siding, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"RS" = ( +/obj/structure/machinery/autodoc_console, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"RT" = ( +/obj/structure/shuttle/part/dropship1/transparent/engine_right_exhaust{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"RU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Vehicle Bay One Blast Door"; + id = "apc1blastdoor" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"RY" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"RZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"Sb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Se" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Sf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Sg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Si" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/golden_arrow/supply) +"Sk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list(); + pixel_y = 24; + density = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/medical) +"Sl" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ + name = "\improper Tripoli" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Sn" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Sp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Sq" = ( +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Su" = ( +/obj/structure/sign/safety/ladder{ + pixel_y = 29 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/ladder{ + id = "enginorth"; + height = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Sv" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods{ + pixel_y = 16; + pixel_x = -13 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Sw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Sx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Sy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Sz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"SE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"SH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"SI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad One Equipment Locker"; + id = "equipment_conny" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonarmory) +"SK" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 25; + pixel_x = -3; + randpixel = 0 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/trash/cigbutt{ + pixel_y = 5; + pixel_x = 4; + randpixel = 0 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_y = 23; + pixel_x = 9; + layer = 3.3 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_y = 8; + pixel_x = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoonprep) +"SL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"SM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"SN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"SP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad One Equipment Locker"; + id = "equipment_conny" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonarmory) +"SR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"SS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"ST" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"SU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"SV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/briefing) +"SW" = ( +/turf/closed/shuttle/midway{ + icon_state = "31"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"SX" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer{ + icon_state = "black" + }, +/area/golden_arrow/hangar) +"SY" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"Ta" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Tb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"Td" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Tg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Th" = ( +/turf/open/floor/almayer/uscm{ + icon_state = "logo_directional1"; + dir = 10 + }, +/area/golden_arrow/hangar) +"Tl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Tp" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Tq" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"Ts" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Tt" = ( +/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Tu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup{ + pixel_y = -10; + pixel_x = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"TB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TD" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_commander_rooms) +"TE" = ( +/obj/item/stack/catwalk{ + pixel_x = 4 + }, +/obj/item/stack/catwalk{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"TG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = -10; + pixel_x = 5 + }, +/obj/item/smartgun_battery{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/prop/magazine{ + icon_state = "poster8"; + name = "Soldier Of Fortune: Issue March 2182"; + desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares."; + pixel_y = 15; + pixel_x = 7 + }, +/obj/item/clipboard{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoonprep) +"TI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"TJ" = ( +/obj/structure/ladder{ + id = "enginorth" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"TK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"TL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"TP" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/golden_arrow/hangar) +"TQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"TR" = ( +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 28; + id = "apc2blastdoor"; + name = "vehicle bay blast door control" + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 28; + id = "apcbayrailing2"; + name = "vehicle bay railing control"; + pixel_x = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"TU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"TW" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"TY" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -16; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Uc" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Uf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "squadarmory"; + name = "\improper Gear Lockers" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonprep) +"Ui" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -15; + pixel_y = 9 + }, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_y = 10; + pixel_x = -13 + }, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ul" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = 15 + }, +/obj/structure/largecrate/random/case{ + pixel_y = -5 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + layer = 3.1; + pixel_y = 14 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Um" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"Uo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Ur" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Us" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"Uu" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "blackcorner" + }, +/area/golden_arrow/hangar) +"Uw" = ( +/obj/structure/machinery/autolathe, +/obj/item/stack/sheet/mineral/phoron/small_stack{ + pixel_y = 15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Ux" = ( +/obj/structure/shuttle/part/dropship1/transparent/middle_right_wing{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"UB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"UE" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_y = 24; + pixel_x = 8; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"UF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"UG" = ( +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"UH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"UI" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 17" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"UJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open{ + pixel_y = 9; + pixel_x = -6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"UK" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"UN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"UQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"US" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"UY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"UZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/dorms) +"Va" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"Vb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/largecrate/supply/ammo{ + pixel_y = 11; + name = "smoke grenades case"; + fill_from_loc = 1 + }, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Vd" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/golden_arrow/hangar) +"Ve" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Vg" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/largecrate/random/case/small{ + pixel_y = 14; + anchored = 1; + density = 0 + }, +/obj/structure/prop{ + layer = 2.1; + icon = 'icons/obj/items/items.dmi'; + icon_state = "sheet-wood"; + name = "wooden rack"; + desc = "A wooden rack fitted to the wall."; + pixel_y = 35 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Vh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"Vi" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"Vj" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Vm" = ( +/obj/structure/bed/bedroll{ + pixel_y = -4; + color = "#006db0"; + name = "floor mat"; + buckle_lying = null; + can_buckle = 0; + foldabletype = null; + desc = "A mechanic's mat." + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/tool/weldingtool{ + pixel_y = 21 + }, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Vo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Vw" = ( +/obj/structure/shuttle/part/dropship1/transparent/nose_top_right{ + name = "\improper Tripoli" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Vy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"VA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/tool/hand_labeler{ + pixel_y = 13; + pixel_x = 1 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 19; + pixel_y = -1 + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 28; + id = "squadarmory"; + name = "gear locker shutter control"; + req_one_access_txt = "19;12" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"VB" = ( +/turf/closed/shuttle/elevator/freight, +/area/golden_arrow/supply) +"VC" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Squad Two Weapons Locker"; + id = "weapons_conny"; + pixel_y = -4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonarmory) +"VD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"VI" = ( +/obj/structure/machinery/door_control{ + id = "cargolock"; + name = "GM cargo lock control"; + pixel_y = 11; + pixel_x = -7 + }, +/obj/structure/machinery/door_control{ + id = "bay1door"; + name = "GM north weapon bay control"; + pixel_y = 11; + pixel_x = 8 + }, +/obj/structure/machinery/door_control{ + id = "bay2door"; + name = "GM south weapon bay control"; + pixel_y = 1; + pixel_x = 8 + }, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"VK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"VM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"VN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"VP" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_closed{ + pixel_x = -14; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/coffee/marine, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_y = 16; + pixel_x = -13 + }, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"VS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"VU" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -7; + job = "Platoon Sergeant" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Platoon Corpsman" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"VV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 9; + pixel_y = 29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"VZ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/golden_arrow/platoonprep) +"Wa" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Wc" = ( +/obj/item/tool/screwdriver{ + pixel_y = 7; + pixel_x = -4; + layer = 3.03; + icon_state = "screwdriver3" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/golden_arrow/hangar) +"Wd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"We" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Wf" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Wg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Wh" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/cryo_cells) +"Wj" = ( +/obj/structure/fence, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "First Platoon Ready Bay Blast Door"; + closed_layer = 3.3; + layer = 3.3; + open_layer = 3.3; + id = "squadblastdoor" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoonarmory) +"Wk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonprep) +"Wn" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Wp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Wr" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Ws" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Wt" = ( +/obj/structure/barricade/handrail, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Wu" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 38 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Wv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_y = 7 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Ww" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Wx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Wz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"WA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"WB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"WC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"WD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"WF" = ( +/turf/closed/shuttle/midway{ + icon_state = "62"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"WG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"WK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"WL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"WM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 28; + id = "squadblastdoor"; + name = "hangar blast door control"; + req_one_access_txt = "19;12" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonarmory) +"WO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"WP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Vehicle Bay Two Blast Door"; + id = "apc2blastdoor" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"WT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"WU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"WX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Xc" = ( +/obj/structure/prop{ + name = "\improper uncomfy case"; + desc = "A regular case you'd sit on. The label says it's full of steel sheets. Probably empty now."; + icon_state = "case"; + icon = 'icons/obj/structures/crates.dmi'; + can_buckle = 1; + layer = 3.6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Xd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Xe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Xh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Emergency Infirmary"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"Xi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Xj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"Xm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/golden_arrow/cryo_cells) +"Xn" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Xo" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Xp" = ( +/obj/item/reagent_container/food/drinks/milk{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/milk, +/obj/structure/closet/secure_closet{ + icon_broken = "fridgebroken"; + icon_closed = "fridge"; + icon_locked = "fridge1"; + icon_off = "fridge1"; + icon_opened = "fridgeopen"; + icon_state = "fridge1"; + name = "beverage fridge" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Xu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Xv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Xx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Xy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Xz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"XD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"XE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"XI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_closed{ + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"XK" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "26"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"XM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/structure/cable{ + layer = 2.36 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) +"XN" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "squadarmory"; + name = "\improper Gear Lockers" + }, +/turf/closed/wall/almayer, +/area/golden_arrow/medical) +"XO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"XR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"XS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"XT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/obj/item/storage/box/cups{ + pixel_x = -1; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"XU" = ( +/obj/structure/curtain/red, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"XW" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 8 + }, +/area/golden_arrow/hangar) +"XZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/case, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/golden_arrow/hangar) +"Yb" = ( +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/obj/structure/largecrate/supply/explosives/grenades/less{ + icon_state = "case"; + pixel_y = 10; + pixel_x = 20; + layer = 3.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"Ye" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonarmory) +"Yf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Yg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonarmory) +"Yi" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Yj" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/stairs/perspective, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Yk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"Yn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Yo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/engineering) +"Yr" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoonprep) +"Ys" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Yt" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Yu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Yv" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/synthcloset) +"Yw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Yx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"YA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"YH" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + layer = 3.1; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"YJ" = ( +/turf/closed/shuttle/midway{ + icon_state = "104"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"YK" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/golden_arrow/shared_office) +"YM" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"YP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"YR" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/trash/cigbutt{ + pixel_y = 10; + pixel_x = -7 + }, +/obj/item/trash/eat{ + pixel_x = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"YS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"YT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"YU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"YV" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 8; + name = "\improper Chemistry Subsection"; + req_one_access = list(); + req_one_access_txt = "8;12" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"YW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"YY" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/briefing) +"YZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"Zb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Weapons Bay One Blast Door"; + id = "bay1door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Ze" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"Zf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms"; + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/dorms) +"Zg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoonprep) +"Zh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"Zi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Zj" = ( +/turf/closed/shuttle/midway{ + icon_state = "92"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Zk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Zo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Zp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"Zs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Zt" = ( +/obj/structure/machinery/door/poddoor/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"Zv" = ( +/turf/closed/shuttle/midway{ + icon_state = "64"; + name = "\improper Tripoli" + }, +/area/golden_arrow/hangar) +"Zx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 8 + }, +/area/golden_arrow/hangar) +"Zz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/siding{ + icon_state = "siding6" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"ZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"ZB" = ( +/obj/structure/largecrate/random/case/double{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = -7; + pixel_x = 6; + layer = 3.1 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 14; + layer = 3.1; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"ZE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) +"ZF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"ZI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ZJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"ZK" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/structure/largecrate/supply/explosives/grenades/less{ + icon_state = "case"; + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; + pixel_y = 14; + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"ZM" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/protein_pack{ + pixel_y = 9; + pixel_x = 3 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) +"ZN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"ZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ZT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"ZU" = ( +/obj/structure/shuttle/part/dropship1/transparent/lower_right_wing{ + name = "\improper Tripoli" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"ZV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" + }, +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 1 + }, +/area/golden_arrow/hangar) +"ZW" = ( +/obj/item/stack/cable_coil{ + pixel_y = 13; + pixel_x = 7 + }, +/obj/effect/decal/siding{ + icon_state = "siding8" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"ZY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" + }, +/turf/open/floor/almayer{ + icon_state = "black"; + dir = 1 + }, +/area/golden_arrow/hangar) + +(1,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(2,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(3,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(4,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(5,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(6,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(7,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(8,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} (9,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (10,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (11,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (12,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (13,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (14,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (15,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (16,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (17,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (18,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (19,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (20,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (21,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (22,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (23,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (24,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (25,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (26,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (27,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +Wh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (28,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +wu +AK +kL +AK +kL +ik +AK +kL +AK +kL +mR +zx +dF +AK +kL +AK +kL +nl +AK +kL +AK +kL +Hf +Wh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (29,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +EZ +sk +BH +hM +sk +AU +sk +BH +hM +sk +HL +mP +WK +Aa +IE +It +It +ON +Aa +IE +It +It +UY +Wh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (30,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Ww +eI +cb +cb +eI +Rp +eI +cb +cb +xp +ty +dA +mp +Wg +jU +Wg +fh +pi +Wg +Wg +jU +Wg +qI +Wh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (31,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +aN +Bk +og +Bk +Bk +Bk +Bk +Bk +og +yQ +jo +bx +bx +bx +bx +bx +bx +bx +bx +bx +bx +vb +Wh +Wh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (32,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +od +Sb +du +NA +Bk +xN +NA +NA +kw +yQ +aN +bx +an +We +bx +We +GM +bx +iu +RY +bx +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (33,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +aN +aN +hq +aN +Xo +oi +ne +aN +Og +Yw +aN +bx +oo +CA +gg +YR +hn +Qu +Xy +Wx +Qg +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (34,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +og +aN +Ez +aN +og +og +og +bl +br +jw +og +bx +eL +hQ +aJ +SE +pg +PS +zX +vO +bi +vb +EG +EG +vb +vb +vb +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (35,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +kD +aN +bm +aN +oU +og +oU +aN +bm +QH +kD +bx +vf +Xy +Pr +Hs +vZ +lw +MQ +Hk +bP +Ko +OK +OK +Ko +hx +eo +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (36,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +og +NA +YS +cg +og +og +og +ar +YS +NA +og +bx +We +MD +uW +eo +Rd +Wr +JQ +Cu +GP +vb +EG +EG +vb +eo +eo +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (37,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +wV +wV +wV +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Fo +NA +YS +Bk +VU +og +VU +NA +YS +NA +Fo +bx +ut +bp +Zh +mT +Oo +bx +tL +rg +NZ +vb +EG +EG +vb +vb +vb +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (38,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +IC +IC +IC +Su +Yo +PO +IC +IC +IC +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +og +NA +YS +Kf +og +og +og +gm +YS +NA +og +bx +lg +eo +uM +eo +lQ +bx +Of +eo +gk +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (39,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +bd +uJ +Uw +uq +Oc +bb +hT +qr +JF +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Wh +Wh +Wh +nu +QH +fa +Xm +oU +og +oU +Xm +fa +aN +nu +bx +Ln +KE +rA +lB +We +bx +ET +Tu +UQ +vb +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (40,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +ei +Ii +LQ +mj +Zo +ex +Wt +oM +fV +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +so +gF +og +og +og +yc +sX +og +og +og +TQ +Hm +og +og +bx +bx +bx +UZ +Zf +bx +bx +bx +cQ +bx +vb +uh +uh +uh +uh +uh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (41,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +Hn +PR +Gs +Ys +Ys +Ys +gX +PR +dW +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +en +Ou +Kz +VN +wD +BJ +Qr +KU +CL +aN +Xm +Ll +sW +cO +cO +Rz +og +zH +be +EL +UK +PP +EL +Fk +nX +Zt +er +Cm +uE +oB +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (42,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +fR +yW +em +yS +yS +yS +fx +xf +Zi +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +eF +Qw +xU +og +og +ie +Bk +su +dw +su +Bk +jW +Bk +Bk +Bk +QH +og +zj +mZ +UN +UN +mZ +Ao +vQ +jJ +vF +Yk +UN +gR +oB +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (43,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +IC +IC +IC +IC +Tl +BU +OP +yS +yS +yS +IF +gt +DA +IC +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +fI +HF +xU +og +rr +Ze +Np +nw +gS +DI +As +Em +dZ +Na +FZ +qu +og +jg +Cm +CE +CE +CE +CE +CE +CE +aI +uh +uh +uh +uh +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (44,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Qw -Qw -Qw -Qw -Qw -Qw -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +jn +Bl +eR +DA +DA +pD +ui +Ts +rS +Ts +lR +PR +pr +hp +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +fI +HF +xU +og +rr +jW +Bk +DI +DI +ZM +hS +bm +Bk +Bk +NA +aN +og +OU +kQ +Hp +dj +ek +pV +MY +CE +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (45,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Qw -ot -Lh -pB -Pm -Qw -Cr -Cr -bl -bl -bl -bl -bl -bl -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(46,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -Cr -Cr -Cr -Cr -Cr -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -sC -pt -pt -pt -Qw -ND -Fg -Px -CC -Qw -Cr -Cr -bl -Oy -SE -zv -Hu -ek -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +Py +SL +di +di +ug +Zo +LQ +oP +LQ +CG +Sp +wj +cc +Gi +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Wh +Wh +Wh +Wh +HH +bm +Bk +Uc +Uc +db +hS +Xu +sW +YH +YH +zq +og +QP +Cm +Hp +fO +Eb +iQ +kT +Lg +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(46,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +lV +Co +wd +lV +DA +po +jP +Lc +yZ +ez +tD +yW +Wv +dg +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Xp +bm +NA +Bk +Bk +Bk +hS +Qn +og +og +og +og +og +Iz +EL +CE +En +HM +KW +FA +bK +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (47,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Ln -wz -gz -wK -gz -Pt -tV -ca -ml -wz -Ll -wK -Ll -wz -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -Xz -Xz -sC -sC -VL -sC -sC -wJ -VQ -qA -zV -KQ -qA -dl -Bh -qA -zK -pW -iC -Me -Zl -DE -DR -Di -Qw -Cr -Cr -bl -VG -hD -zv -zP -VG -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +Jm +GQ +DP +tX +IC +IC +IC +IC +IC +IC +EU +nI +IC +IC +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +dL +bm +NA +mO +Ro +Qm +hL +Fq +aN +og +pF +UK +Cm +YU +Cm +CE +CE +YV +CE +CE +CE +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (48,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Xd -wz -Xd -wz -Xd -wz -Xd -ca -ml -wz -Ll -wz -Ll -wz -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -sC -sC -sC -Ls -KQ -sC -QX -rH -dr -wV -dr -tr -kI -Hm -DY -qA -FS -XI -oh -Me -Me -Me -Hw -Me -Qw -Qw -Qw -bl -VG -Ri -zv -Yk -VG -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +ke +mc +uP +tX +IC +Yv +vw +GG +Yv +IC +vK +UH +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +HH +pB +HK +tB +zV +gp +Nb +uK +cM +uY +FB +IJ +rY +QS +Cm +Hp +Av +jt +tJ +kW +Tq +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (49,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -wz -jl -JZ -JZ -JZ -fe -wz -ca -Pt -jl -JZ -SR -SR -wx -Pt -ca -Cr -Cr -Cr -Cr -Cr -sC -SC -Kv -sC -sC -Uj -sC -Tj -SI -Kv -yt -Kv -yY -Yd -Iw -BO -qA -og -XI -IU -Me -BA -xB -Yp -gd -ST -Df -Me -Me +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +IC +IC +IC +IC +IC +Yv +DJ +ro +Ri +IC +Kg +iR +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +rr +Bk +Bk +Kk +eg +Da +Bk +Bk +cJ +JB +er +QP +EL +DD +EL +Hp +gc jt -Jj -BD -Is -BC -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +hP +nM +gz +aI +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (50,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Yw -Yw -Yw -ca -Ln -So -KO -KO -Rr -Kx -tV -ca -ml -So -KO -KO -KO -Kx -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -fW -dr -vA -lS -lS -ft -gQ -Ap -uO -qA -Qu -pF -Fj -Jn -BO -qA -Oj -TC -wp -Me -lQ -Fg -Yp -Fg -Fg -gd -tS -Me -VG -hD -zv -zP -VG -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Yv +Yv +XI +Sg +aY +sL +mj +Jd +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +rr +Bk +NA +mO +tW +Qm +Bk +Bk +QH +zx +Cm +xB +Yu +df +rT +Xh +IZ +NK +Zp +Le +KS +lA +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (51,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -sc -MN -wz -ca -Xd -UX -Rr -Ea -KO -Kx -Xd -ca -ml -UX -Rr -Ea -KO -kV -ml -ca -Cr -Cr -Cr -Cr -Cr -sC -gI -BK -sC -mc -KQ -bw -KQ -QS -gA -qA -Rh -Kv -Qe -Cg -qQ -Cu -ED -TC -eo -nb -vF -Fg -IE -ty -Fg -Fg -Ku -Me -PS -ce -zv -FK -PS -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Yv +xZ +Cy +gr +BL +IC +fb +ak +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +og +NA +Bk +Kk +BD +Qm +Bk +NA +QH +zx +if +WC +Cm +Cm +mN +HR +fX +Iw +NH +KN +wf +zP +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (52,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -wz -Dc -wz -ca -ca -ca -Yw -Yw -Yw -ca -ca -ca -ca -ca -Yw -Yw -Yw -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ca -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -ZJ -qA -Ng -fh -Tz -PQ -ID -zM -TO -KU -OU -Ya -mR -hC -mf -Fy -DR -tS -Me -Ib -EN -Co -IH -qE -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Yv +qi +Bs +Br +GI +IC +Fi +wj +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +og +DC +Lq +aN +EY +QH +fg +QH +kq +og +jD +QP +EL +CE +CE +CE +vE +hJ +KW +Eh +oh +CE +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (53,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -wz -Dc -HQ -ca -ca -Tu -wz -ZL -ZL -ZL -ZL -hk -ZL -BW -ZL -ZL -ZL -wz -wz -wz -wz -ZL -wz -wz -ca -ca -ZL -CN -rk -ZJ -wN -Yl -Um +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Yv +Yv +Yv +Yv +Yv +IC +VV +PR +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Wh +Wh +Wh +lW +Yn +py +og +og +og +og +bN +QP +LI +CE +nb +XN +Pj +yr NI -gn -ZJ -hN -Kv -Kv -Kv -Dg -qA -Qi -TC -Gi -Me -Zb -Fg -Nr -pf -sV -Yp -Db -Me -tf -hM -zv -hM -tf -bl -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +xd +ns +RI +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (54,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -ca -ca -lB -IW -IW -by -GN -kU -GN -by -JP -JP -IW -by -CK -kU -AK -EX -JP -IW -Kx -ca -ca -ZL -mm -ax -ZJ -nF -eT -hq -Ep -No -ZJ -Hj -Kv -Kv -DY -gM -qA -rA -XI -wp -Me -PG -gd -dX -pB -Fg -TT -Me -Of -hQ -wX -ZQ -wX -KL -Kb -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +IC +rF +pr +np +pr +Kn +IC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +Ev +HF +rQ +HF +Fl +og +og +CM +Bf +RZ +rk +CE +nb +CE +Sk +Qv +Ah +pb +XR +RS +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (55,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -ug -wz -So -KO -Nk -nN -eU -MN -qi -Xd -hF -Lo -KO -Xd -qi -he -eU -gD -Rr -KO -pD -ug -wz -ZL -AQ -xh -ZJ -TW -yJ -ba -jy -Mf -ZJ -ZB -KQ -UK -Kl -qA -qA -Fw -XI -jj -Me -Me -js -Qw -qD -cA -RO -Me -Of -uE -BD -Mz -nL -BD -eh -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +eq +MF +Yo +IC +Yo +nI +IC +EG +EG +EG +EG +EG +UI +UI +UI +UI +UI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +fl +HF +rQ +HF +qT +og +og +Va +TB +LV +YW +CE +nb +aI +aI +aI +aI +aI +aI +aI +aI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (56,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Qk -pl -pl -Gs -FP -zy -JD -Ym -qi -Dc -Wu -Xd -DM -Yj -KH -Xd -qi -Dc -qi -hA -zy -zy -GQ -pl -pl -pl -yO -wz -ZJ -ZJ -ey -ZJ -ZJ -ZJ -ZJ -qA -qA -qA -qA -qA -jc -Jc -nH -GG -Zk -Me -Me -Me -Me -Me -Me -Me -Of -PI -Xu -Of -Of -bl -bl -bl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +Mf +JZ +wF +IC +wV +qm +IC +EG +EG +EG +EG +EG +UI +gb +UI +UI +UI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +Wh +zG +aA +vN +nW +li +og +og +xx +Ms +Iz +Qx +CE +nb +aI +Cq +GA +GA +GA +GA +PX +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (57,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -KO -KO -MI -Rr -Rr -Bf -ua -Dc -qi -Xd -Bw -Yj -KH -Xd -qi -Dc -qi -Xd -KO -KO -Yh -KO -uG -KO -Dc -wz -oK -wp -gS -GO -iN -iN -iN -vL -AY -wp -wp -cU -lo -Eu -XI -Wl -uu -WY -iN -wp -iN -wp -iN -wp -tb -xo -RY -iN -oh -Ay -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(58,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -Ke -al -TP -Rr -QW -Xd -qi -Xs -eU -qw -zy -SL -BP -qw -eU -Td -qi -Xd -TD -KO -sy -Ph -IT -KO -Qk -lm -iG -SO -Fu -SY -iK -iK -SO -zM -iK -iK -SO +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +IC +Qz +PT +IC +sR +sR +IC +EG +EG +EG +EG +EG +UI +UI +UI +UI +UI +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +DQ +DQ +DQ +DQ +DQ +DQ +Ir +Ir +Ir +Ir +Ir +Ir +Vi +og +Hv +Iz +LI +aI +aI +aI +IH +Kc +hN +hN +Kc +Lo +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(58,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +IC +IC +IC +IC +IC +pW +Xi +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +DQ +FT +My +Ir +Aj +zI +Ir +qW +IM +Fe +nn +Ir +Vi +og +Cm +Iz +bF +fL +EK SY -SO -iK -wn -iK -SO -so -SO -iK -iK -XV -XV -iK -iK -Wy -Ad -Op -CA -Ay -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +mY +hN +Lf +aG +hN +IH +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (59,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -KO -pD -ZL -Rg -KO -rM -dP -qi -Wr -qi -Xd -KO -Rr -Rr -Xd -qi -lh -km -Xd -KO -KO -pD -wz -Ws -zD -Dc -ZL -oK -ms -ms -iN -pZ -pZ -iN -wp -wp -iN -iN -sN -Va -Wm -XI -gq -Va -iL -iN -wp -iN -iN -iN -wp -wp -pZ -ms -wp -iN -Ay -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +DQ +DQ +Uf +rd +Ir +rd +rd +Ir +rd +rd +rd +rd +Ir +Ir +Ir +MT +Iz +Ca +nX +EK +Wd +rm +QE +Lf +Lf +QE +IH +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (60,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -yZ -Dc -KO -Vv -HV -cp -HV -nT -JI -Py -HV -fl -aB -EZ -HV -Wv -aB -EZ -HV -Wv -HS -EZ -cl -jO -aB -nd -KO -Dc -oe -XJ -kg -qu -XJ -kg -qu -Vp -Vp -Vp -Vp -Vp -Vp -Zk -Jc -TC -GG -jc -ZC -ZC -ZC -ZC -ZC -ZC -Ty -Gl -pt -pt -Gl -Gl -Gl -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +DQ +uc +rI +rI +Nk +VK +Yr +aM +rI +rI +rI +Yr +Fb +Yr +Ir +ra +Iz +bF +nX +EK +Wd +rm +QE +Lf +aG +QE +IH +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (61,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -cL -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -bQ -KO -Dc -ad -XJ -YA -Od -Sy -mk -vk -Vp -KZ -gL -sk -uH -Vp -Vp -wd -XQ -KD -ZC -ZC -Yc -Ty -cz -VK -yA -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +zs +zs +zs +zs +zs +zs +zs +zs +oj +Vg +bc +KC +yR +Dv +qD +aW +qD +qD +Vh +Xb +sb +dN +iq +Us +ER +bF +NG +EK +Ne +rm +QE +Lf +aG +hN +VB +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (62,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -nm -RT -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dB -aN -Dc -eY -XJ -As -As -Vr -Vr -As -Vp -am -JL +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +jK +Dj +IV +Fp +Cw +Cw +Cw +Sz +YY +qx Tb -KK -JL -Vp -OG -XI -iN -ZC -TI -cs -af -cT -cT -xf -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +dr +Ir +JE +JE +JE +JE +JE +Ir +VA +bI +iJ +FY +er +ji +mr +TD +TD +TD +qK +Jo +hN +QE +vt +Lo +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (63,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -AP +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +bS +QW +Or +TW +lq +kI +DB +Ta +me +Zg +Td mW -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dA -lg -Dc -eY -ag -As -Np -Np -rJ -As -Vp -EF -JL -aO -yw -Vz -Vp -xm -XI -wp -ZC -Fe -cT -cD -aJ -iE -xx -pJ -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +Ir +Er +Qh +fo +Qh +fo +Ir +tP +HT +cx +zw +aS +ZT +Cm +eW +Ay +TD +Si +GA +GA +GA +GA +qJ +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (64,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -ZL -OJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -AG -lg -Dc -eY -ag -As -qT -LJ -fg -Vr -Vp -Tk -wl -vU -sR -MZ -sg -SY -TO -yT -Pp -LF -nG -PZ -Dx -UI -cT -lV -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +TY +QW +DO +Mh +kh +La +ZJ +Ib +YY +mH +bI +wL +Ir +JE +JE +JE +JE +JE +Ir +yO +ww +iJ +il +er +Oh +Cm +eW +Ay +TD +TD +TD +TD +TD +hl +hl +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (65,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -KO -cL -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -gh -aN -Dc -eY -XJ -Vr -rl -ol -rV -Vr -Vp -Hd -wl -FE -wl -xX -Wj -ED -TC -eo -QJ -qa -cT -cR -Uk -cT -cT -zk -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +IB +Xz +Ny +LU +Cw +Cw +Cw +Sx +YY +hG +XM +cx +XE +Xj +DF +Sy +Xj +RA +Oz +cx +GH +QX +FY +er +FN +IG +eW +Ay +eW +Ov +mz +eW +TD +VI +hl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(66,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -yZ -Dc -KO -RT -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -Lg -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dB -zD -Qk -MC -XJ -dv -rr -OX -sm +(66,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +Jt +Iu +Yj +yg +Cw +SV +zf uA -Vp -rX -wl -FI -Bo -ld -Vp -ys -XI -Gi -ZC -zZ -cT -sf -cT -cT -cs -lV -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +YY +Yr +Gk +Cd +rI +FM +Yr +Yr +gV +RH +Wf +Yr +Wk +Yr +eW +Hw +Hw +fp +eW +eW +eW +xu +Xx +pR +TD +TD +TD +TD +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (67,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -KO -mW -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -LH -aN -Dc -eY -XJ -Vr -Np -Np -rJ -As -Vp -Ld -pw -Wf -pw -nj -Vp -kX -vp -Ql -ZC -Ry -LK -sf -oQ +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +zs +zs +zs +zs +zs +zs +zs +YY +YY +YY +VZ +RD +QZ +VZ +Ir +qP +SK +TG +HJ +do +YK +jB +YK +eW +Yi +tx OI -rI -Ty -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +tl +JI +iW +AZ +gT +rV +eW +Ki +hB +TD +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (68,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -ZL -OJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -AG -lg -Dc -eY -ag -FT -FT -FT -sv -vB -Vp -EQ -Bg -FE -wl -EQ -Vp -Oj -XI -iN -ZC -ZC -ZC -mD -ZC -Ty -Ty -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +bk +bk +da +wQ +Ye +OB +bf +bk +bk +do +YK +YK +do +Lx +Bh +Fg +eW +cX +lY +ZN +uk +BC +iW +uk +vu +MC +XU +tl +sr +TD +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (69,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -to -cL -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -gh -lg -Dc -eY -ag -WP -WP -WP -WP -Jk -Vp -yx -Bo -UO -wl -yj -Vp -FS -XQ -PF -ZC -cy -ha -Wp -Ei -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +Im +km +pI +Ot +Ck +Ot +Ba +SI +JR +do +NQ +ZE +AQ +nP +nS +yN +eW +nj +uk +fK +Cc +MZ +al +pU +QA +QK +eW +Hh +kg +TD +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (70,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -AP -RT -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dB -lg -Dc -eY -XJ -WP -WP -WP -WP -KY -Vp -Tg -wl -FR -wl -ur -Vp -UT -XI -wp -ZC -yL -xf -cT -cV -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(71,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -mW -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dJ -dA -zD -Dc -bf -XJ -aI -VX -VX -VX -vN -Vp -Sd -Cb -Gf -MJ -br -Vp -aQ -XI -wp -ZC -Bu -WK -PA -Kp -Ty -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(72,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -yZ -Dc -KO -Ke -Tx -ct -qI -rf -ON -Jq -ar -Lx -Tx -JT -qI -Lx -Tx -Jq -ar -Lx -ON -JT -ar -vS -Tx -mB -aN -Dc -eY -XJ -WP -WP -WP -WP -KY -Ui -Ui -Ui -Ui -Ui -Ui -Ui -ZM -Fa -ZM -Ui -HK -HK -HK -HK -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(73,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Qk -zy -YQ -AL -IZ -zy -pl -pl +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +CX +nJ +qk +Cv +au +Cv +qk +SP +ZK +do +NS +Jk pl -zy -Oz -aN -KO -KO -KO -Ea -Ea -KO -aN -KO -KO -KO -pD -ZL -So -aN -Dc -eY -ag -WP -WP -WP -WP -KY -Ui -Ui -YK -Jv -NO -QI -XR -Xw -NT -KM -Ui -HK -HK -Ax -Ax -Ax -HK -Pf -KP -HK -Ii -nR -QT -nR -rb -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -"} -(74,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -Xy -fx -bq -JZ -JZ -SR -SR -pO -Rt -OH -SR -fx -SR -Cl -JZ -JZ -ff -SR -SR -je -Vv -SR -pG -lg -Dc -eY -ag -Eo -Ob -Ob -Ob -oL -Ui -nK -Cf -ik -bR -Rl -Kd -Cs -NT -UN -qR -HK -Xc -YG -yF -yF -LQ -fX -ti -To -BY -BY -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +wJ +Pu +YZ +eW +LY +Ew +cj +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(75,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -KO -hS -hS -vb -bo -bo -hS -hS -ay -Dc -Rg -Nf -Nf -Bj -cS -Bj -Bj -Nf -Bj -Bj -Nf -Bj -Bj -Nf -lg -Dc -eY -XJ -fy -fL -sS -sS -bS -Ui -oM -CF -dO -Os -Rx -Ys +(71,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +CX +nJ +HY +wQ +ga +wQ +Yg +eX +UG +do +rP +rP +rP +rP +rP +rP +TD +dz +dz +dz +dz +fP +oy +fP +kb +fP +TU +fP +dz +AY +dz +lp +oy +nE +kb +pa +TU +nE +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(72,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +bk +gn +Nj +wQ +ga +wQ +Um +gn +bk +kb +gh LS -NT -TY -qR -HK -Xc -QD -ZV -Mi -ZV -rh -gg -To -bh -RD -cr -LL -LL -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +JL +cZ +vx +wp +yb +Vb +dz +AY +dz +Ef +ki +Ef +kb +Ef +jY +QB +dz +AY +dz +Ef +jY +Ef +kb +Ef +jY +QB +dz +AY +dz +iY +jC +cZ +VD +yx +jC +jT +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(76,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ou -eH -ZL -Dc -ZL -hS -CZ -aT -Qc -Bz -Mc -bo -eu -Dc -ie -Nf -JU +(73,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +zk +VC +QJ Cv +ga +wQ +oI +ha +Yb +kb +ju +El +Bg +bC +jY +tK +xy +fi +dz +AY +dz +xI +yB +cI +yB +yB +yB +pz +dz +AY +dz +xI +cI +yB +yB +yB +yB +pz +dz +AY +dz +Hj +UE +BQ +VD +tK +xy +wH +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(74,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +CX +jA +qk +wQ +MG Cv -dd -bL -Nf -fY -hW -Fi -jf -oJ -Nf -zJ -Dc -bf -XJ -Vr -Np -Uh -Np -As -Ui -Pc -FV -Zf -Zf -Zf -Zf -sO -QM -TY -qR -HK -Xc -QD -ZV -HK -Tr -Xa -NV -HK -kr -qm -eL -qm -qf -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +qk +ha +Rx +kb +dz +rX +Ha +XO +kG +QL +Ea +Ea +dz +AY +dz +jM +qz +VD +CW +VD +qz +jI +dz +AY +dz +xV +qz +jY +qz +VD +qz +OD +dz +AY +dz +NR +JG +Vo +kG +QL +JG +JG +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(77,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -hS -um -QO -SV -Bz -GV -bD -HR -pR -Rg -Nf -uF -OA -OA -dm -Mj -Nf -gG -OA -OA -jg -Cw -Nf -KO -Ey -lg -me -GY -Np -Np -rJ -As -Ui -yM -Dl -Zf -Zf -Zf -Zf -Zf -QM -TY -qR -HK -HK +(75,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +Im +hh +Jx +Ot +aP +Ot +mI +rG +JM +kb +qZ +Hl +Au +jr +LX +Lu +tb +wH +dz +AY +dz za -Si -HK -Na -dG -di -HK -HK -HK -HK -HK -HK -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +qz +VD +kH +jY +qz +cR +dz +AY +dz +za +qz +jY +CW +Xe +CW +tt +dz +AY +dz +ZB +Bg +Ij +RG +Lu +xy +Ef +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(78,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -ZL -hS -BZ -Bz -iA -Bz -LZ -hS -HH -Dc -Rg -Nf -cH -cJ -OA -dt -ea -fO -Pr -PY -Pr -jG -xz -jV -lm -ly -ZL -XJ -yv -As -Ne -tT +(76,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +HZ +kn +Ia +ur +rl IX -Ui -Gz -Dw -Gk -Os -Sl -Yx -lG -QM -TY -qR -HK -Xc -kq -Vc -HK -XL -fJ -NB -HK -QT -nR -Ii -nR -rb +qN +fZ +bk +kb +dz +nf +on +xA +Gg +WU +oX +Nv +dz +AY +dz +KB +th +bE +uD +YP +YP +YT +dz +AY +dz +MV +YP +YP +uD +YP +th +YT +dz +AY +dz +Ul +iP +FS +sz +Ur +Ea +Nv +dz +EG +EG +dz +sY +sY +DE +sY +sY +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(77,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +WM +vs sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +vs +DL +bk +kb +kb +dz +dz +Sn +fN +EA +fN +fN +dz +dz +AY +dz +dz +Sn +fN +EA +fN +fN +dz +dz +dz +dz +dz +Sn +fN +EA +cl +cl +dz +dz +AY +dz +dz +cl +cl +EA +fN +fN +dz +dz +EG +EG +dz +fN +fN +EA +fN +fN +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(79,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ca -ZL -Dc -bf -hS -Bz -Bz -Bz -LE -tv -hS -pD -Dc -Rg -Nf +(78,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +HZ +Wj +Wj +Ji +Wj +Wj +bk +TJ +LD +Iv +dz +wX +wX +dO +wX +wX +dz +AY +AY +AY +dz +Zb +Zb +jO +Zb +Zb +dz +uQ +jj +ud +dz +Et +Et ov -OA -OA -OA -eJ -Nf -ho -iy -ho -jU -JJ -Nf -cB -lE -wz -XJ -XJ -XJ -PW -XJ -XJ -Ui -tX -Uv -GL -Pe -Su -rx -up -Bq -TY -qR -HK -Xc -kq -ZV -zt -ZV -xM -ti -To -BY -BY -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +Et +Et +dz +AY +AY +AY +dz +FJ +FJ +Ol +FJ +FJ +dz +EG +EG +EG +dz +eY +eY +aD +eY +eY +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +"} +(79,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +dz +dz +dz +lL +fM +Uo +fM +PI +kb +nU +bh +nU +dz +jH +ey +JC +fM +FU +dz +dz +dz +dz +dz +Wu +ey +Vy +fM +fM +dz +Qk +Cp +rH +dz +Ai +fM +JC +fM +ey +dz +dz +dz +dz +dz +Xn +ey +JC +fM +IO +dz +dz +dz +dz +dz +Xn +fM +VS +ey +IO +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (80,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ZL -Dc -ZL -hS -hS -wc -hS -hS -hS -hS -iX -Er -Rg -Nf -ZR -QE -cZ -dE -Mj -Nf -hG -jb -hG -jb -FN -Nf -KO -Dc -wz -XJ -XJ -As -mk -uw -As -Ui -Ui -DF -oH -NO -Ub -XR -dn -QM -ub -Ui -HK -Xc -QD -ZV -Mi -ZV -rh -Sq -To -ZI -ZI -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +aH +vy +lu +Jp +le +qt +ST +TL +wg +FC +FC +PF +ST +sy +ST +XD +ST +ST +sy +Mw +ST +Bz +vg +Jp +vg +cT +ST +ST +sy +ST +ST +jd +Ef +xc +Ef +wx +ST +ST +sy +ST +ST +tA +vg +lu +vg +cT +ST +ST +sy +Qt +Qt +Bz +Nt +Jp +nO +cT +ST +ST +sy +ST +Qt +ee +kb +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (81,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -ZL -Xs +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +cE +cE +qL +Wa +RF +Wa +aZ +zD +Wp +KR +yT +yT +AL +bq QN -MK -MK -Xv -iR -Bz -qU -hS -RK -Er -vP -Nf -Nf -Nf -Nf -Nf -Nf -Nf -Nf -Tc -Nf -Nf -Nf -Nf -KO -Dc -bf -YP -ni -ry -ry -Np -rJ -As -Rv -Ui -Ui -Ui -Ui -Ui -ZM -Aw -ZM -Ui -HK -HK -hR -Vc -HK -AA -Xa -NV -HK -eL -qm -kr -qm -qf -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +bq +qG +DM +cE +Ws +cE +cE +cE +cE +cE +Wa +II +cE +Wa +Sw +Wa +Wa +os +QB +Cp +zL +hF +sY +sY +bg +Xd +Xd +AX +QY +Wa +Wa +Rb +Xd +Xd +bg +sY +sY +hI +Wa +Wa +cE +II +hC +Xd +bg +sY +hI +lu +lu +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (82,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -ca -Yw -Yw -Yw -MK -MK -BZ -iR -Bz -OC -hS -pD -Er -Rg -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -gE -aw -Dc -ZL -YP -nM -Eb -Eb -nY -Np -As -sI -Ki -xK -Sw -HK -FW -eR -bb -dG -xQ -HK -EO -QD -Si -HK -nV -Xa -di -HK -HK -HK -HK -HK -HK -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +dz +dz +dz +tT +cE +pN +ux +cE +Wa +Ff +Wa +os +hy +OL +lu +by +VD +jG +VD +Cn +dS +ES +vq +ES +zD +zD +ES +ES +ES +Kp +zD +ES +vq +ES +zD +Ja +eD +Ek +Ig +TI +ES +ES +vq +ES +ES +aX +Kp +zD +zD +uI +ES +ES +vq +ES +ES +vo +lj +zD +zD +Kp +Ja +ES +vq +Id +vo +DM +SN +kb +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (83,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -vt -iR -Bz -Jg -hS -bu -Dc -Rg -gE -gE -Xj -Qt -gE -Hk -OZ -yU -yU -ZU -Fl -lA -Vu -kw -qc -Gq -YP -oa -qv -qv -Np -wS -YP -sI -Ki -Hv -Sw -HK -gH -QD -bb -dG -Sc -BM -Br -QD -ZV -HK -Vc -Xa -NV -HK -QT -nR -Ii -nR -rb -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ni +Pi +NJ +SU +zS +MR +Wa +aB +Wa +Xc +cE +Wa +Ff +cE +os +hy +JV +lu +TK +uU +Xe +VD +xP +vn +zF +zF +zF +NF +NF +fe +fe +zF +VM +NF +zF +zF +zF +NF +td +Mt +Oa +Xv +oV +WT +WT +WT +WT +WT +yG +AG +WB +cE +iw +WT +WT +WT +WT +WT +yG +Wa +Wa +Wa +Wa +iw +WT +WT +WT +zJ +FE +tG +UF +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (84,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ni +wG +Hi +SU +ZA +MR +cE +va +wW +Wa +Wa +Wa +Ff +WA +gs +Se +gA +hU +QO +PN +PN +PN +bj +FV +Xd +Xd sY -iR -Bz -dH -hS -pD -Dc -Rg -gE -iQ -Cn -VT -gE -ML -ny -SB -nx -de -sa -QP -bZ -Er -Rr -Rt -YP -qh -Vr -Vr -Vr -YP -YP -sI -Ve -HG -Pl -GK -Gg -sU -Ra -dG -Sc -Mn -Sc -QD -ZV -zt -ZV -xM -rZ -To -Lf -Lf -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +sY +sY +sY +sY +Xd +Xd +sY +sY +sY +sY +SM +Wa +Wa +KV +cE +Wa +hC +Xd +sY +sY +sY +sY +Xd +sY +sY +sY +sY +sY +sY +dp +vd +fn +sY +Km +Xd +Xd +sY +sY +sY +sY +rv +RG +ol +xy +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (85,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -MK -hS -MB -hS -hS -oW -Dc -Rg -gE -sX -tA -gE -gE -ML -ny -uS +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ni +PW +cW +SU +ZA +MR +Wa +Rj +jV +Wa +cE +Wa +ul +OQ +wC +PA +Fw +CC +gw +rz +Fw +tc +gw +rz +oa +ru +YM +rz +Fw +tc +gw +PA +Fw +tc +YM +PA +SH +cB +Wa +Wa +FX +Wa +cE +nH +xz +lu +cC +lu +lu +lu +lu +cC +lu +lu +lu ng -TN -EB -EB -ye -Qq -TN -Qq -YB -YB -YB -YB -YP -YP -YP -sI -HK -ip -HK -HK -EI -mY -zn -Bi -Sc -EK -Sc -fo -IC -IC -IC -IC -Bi -To -BY -YX -cr -BY -BY -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +lu +cC +cC +cC +lu +lu +lu +lu +cC +lu +xz +Ve +gZ +Fn +uo +uv +SS +Ce +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (86,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -NE -DB -Wg -hS -pD -Dc -Rg -gE -Wo -iF -Rc -Md -kO -vg -RW -LC -TN -Fz -AH -AH -Gv -LT -Gv -Hc -lK -kF -YB -Cr -Cr -Cr -sI -DX -HX -Qx -HK -Sc -Sc -HK -Br -Br -HK -lc -CJ -Br -HK -Br -Br -rd -HK -eL -qm -kr -qm -qf -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +Wn +lj +lj +bt +Tg +Gq +DM +cE +cE +Qj +Wa +Wa +ul +OQ +eT +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Fm +jN +Wa +Wa +Pp +Wa +Wa +os +lu +bX +Sq +Sq +MM +Sq +Sq +Sq +Sq +Sq +Sq +ZW +Sv +Sq +Sq +Sq +Sq +Sq +Sq +Sq +MM +Ep +lu +Ve +RG +ol +xy +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (87,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +JJ +Wa +Wa +as +zS +mf +zY +zD +WO +lj +JW +zD +nY +OQ MK -oA -QQ -gp -hS -pD -Dc -vP -gE -qz -Zd -gE -WA -DC -DC -RW -mZ -TN -CX -IP -gf -Bd -CP -PL -hy -AH -ZX -YB -Cr -Cr -Cr -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -sI -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nk +jN +cE +KG +jy +Wa +cE +os +cC +RR +yX +xC +yX +Rc +fF +yX +ml +tn +MJ +Vm +CV +hf +Ie +jx +Dl +yX +mv +yX +yX +gu +zz +jp +Ky +WX +xy +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (88,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -MK -MK -MK -MK -wi -Td -Rg -gE -co -OY -gE -gE -Cy -sa -nD -gE -TN -TN -gW -It -TN -TN -wI -Gv -IP -jN -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +HS +Wa +VD +jY +VD +oR +QC +OQ +NO +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nx +cB +cE +Wa +Ui +Wa +Wa +os +cC +RR +yX +yX +yX +Rc +PZ +eh +dM +QD +WF +qH +ef +CK +KP +KA +RT +ft +hX +Rc +yX +vV +mG +HP +Md +Ma +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (89,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -MK -Yw -Yw -Yw -kS -kS -kS -kS -kS -oC -kS -oC -kS -TN -Ol -zI -jD -bO -TN -vo -Gv -IP -Iy -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +Wa +cE +Wa +Wa +cE +cE +Wa +as +xa +MR +ZF +Wa +cE +Wa +Wa +Wa +Ff +OQ +bT +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +qU +sM +jY +bR +Qp +bR +VD +os +cC +RR +yX +yX +yX +yX +Tt +kU +fj +Kh +Qi +lo +Pd +Pd +bG +mx +de +vm +HO +cY +yX +Lm +cC +Zs +FE +tG +xy +xa +mf +Wa +cE +Wa +Wa +Wa +Wa +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (90,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -xJ -Oc -zA -gx -TN -CX -La -us -gt -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +Wa +cE +Wa +Wa +cE +cE +Wa +as +KJ +MR +ZF +Wa +cE +Wa +Wa +cE +Ff +OQ +eT +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nL +cB +bR +Th +xs +BP +bR +nH +lu +RR +yX +DN +gL +Zj +BT +iA +nZ +uC +RO +mV +sH +XZ +ly +sH +mq +Rc +yX +yX +yX +Lm +lu +we +RG +ol +xy +xa +mf +Wa +cE +cE +cE +cE +cE +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (91,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -zY -zG -Ff -Gy -TN -kH -kB -RP -hL -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +cE +Wa +Wa +Wa +oR +XS +XS +Wz +wB +Zk +xJ +zF +GW +zF +zF +VM +HA +lE +AO +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +ED +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Ld +jN +Qp +iX +CI +Lz +Qp +nH +xz +RR +yX +aF +Dp +Nq +EP +EQ +EM +In +Aw +mE +sH +sH +sH +sH +eS +yX +yX +yX +yX +Lm +xz +we +gZ +Fn +uo +oD +mA +lj +lj +DY +cE +cE +Wa +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (92,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -TN -TN -TN -TN -TN -TN -Hh -NU -YB -YB -YB -YB -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +Wa +Wa +cE +Wa +Wa +cE +cE +as +xa +mf +ZF +Wa +rJ +Wa +Wa +cE +Ff +OQ +Hc +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nx +jN +bR +ev +GD +tM +bR +os +lu +RR +yX +Vw +kl +CQ +JH +Mn +Bx +px +oF +He +sH +TP +sH +sH +eS +yX +yX +yX +yX +Lm +lu +Ve +RG +ol +tb +xa +mf +cE +Wa +Wa +Wa +Wa +Wa +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (93,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -fm -fm -fm -fm -fm -TN -yc -Sn -Vq -YB -RN -tB -RM -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +Wa +Wa +cE +cE +cE +cE +Wa +as +xa +MR +ZF +Wa +ZO +Wa +Wa +Wa +Ff +OQ +bT +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Cj +cB +VD +bR +Qp +bR +VD +nH +lu +RR +yX +yX +yX +yX +Pe +FQ +Wc +eP +Vd +mg +jl +jl +SW +FP +YJ +nR +hu +pw +yX +Lm +lu +jp +Ky +WX +tb +xa +mf +Wa +Wa +Wa +Wa +cE +cE +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (94,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -kS -kS -kS -gT -kS -gT -kS -TN -TN -TN -TN -TN -TN -TN -Nz -rt -XP -YB -bB -EJ -zL -oo -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +HS +cE +HW +VD +jY +xY +nY +OQ +sJ +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Fm +cB +Wa +Wa +qv +Wa +Wa +os +lu +RR +yX +yX +fF +yX +lO +ld +Oy +uz +Zv +hd +Sl +HD +NM +XK +Dl +Rc +jS +sF +yX +Lm +cC +GU +Md +Ma +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (95,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -VJ -co -kS -gT -kS -gT -kS -TN -kh -qW -GU -Ml -AO -EA -yc -aq -Uf -Bv -Vj -Xb -Bt -fp -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +Gp +Wa +Wa +as +zS +mf +LJ +Xd +OF +sY +Xd +sY +hs +OQ +xF +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +Fm +cB +Wa +Wa +UJ +Wa +Wa +os +lu +RR +Rc +yX +yX +yX +yX +yX +hE +Ux +ZU +yX +fH +hD +No +pX +RT +yX +kf +yX +yX +gu +lu +Zs +FE +aV +xy +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (96,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -eB -uo -WG -kS -gT -kS -gT -kS -TN -Ce -fv -Sj -TK -MW -QL -IR -cG -fF -gW -Vj -cw -Bt -Ps -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +CJ +US +MX +hg +uv +Gq +eJ +jE +iZ +yK +aE +QB +MB +OQ +Hc +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +yX +nk +jN +Wa +Wa +VP +Wa +cE +os +lu +mU +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Ch +Zz +lu +Ve +RG +ol +tb +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (97,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -CS -vK -aA -kS -gT -kS -gT -kS -TN -vc -il -wa -sE -Nx -sE -Ye -Sn -uX -YB -dj -fF -uQ -pS -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ni +iE +ni +SU +zS +mf +os +yh +hZ +VD +vG +QB +MB +OQ +Gz +ir +vJ +hK +OV +ir +lc +TE +OV +ir +vJ +oz +pZ +Dt +sU +Fd +pZ +Dt +vJ +Fd +pZ +ir +lh +cB +Wa +Wa +An +cE +Wa +os +xz +lu +cC +cC +lu +cC +lu +lu +lu +lu +lu +CP +lu +lu +cC +lu +lu +lu +Vj +lu +cC +lu +xz +Ve +gZ +Fn +uo +uv +SS +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (98,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -yg -aX -kS -gT -kS -gT -kS -TN -Qz -il -wa -oO -AC -HT -ah -wa -yo -YB -yy -mo -an -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ni +ni +ni +SU +ZA +MR +os +Yt +Ng +By +Lr +Ef +MB +Rn +YA +YA +cm +YA +ZI +sq +EV +sN +YA +cm +cm +cm +YA +YA +YA +YA +YA +YA +YA +cm +YA +YA +YA +wn +Wa +Wa +Wa +cE +Wa +xl +YA +YA +YA +cm +YA +YA +cm +cm +cm +YA +YA +YA +YA +YA +cm +cm +BR +EE +YA +cm +cm +YA +YA +tS +RG +ol +tb +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} -(99,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -mb -kS -kS -gT -kS -gT -kS -TN -NZ -il -Sn -jS -vG -ds -hU -wa -Hx -YB -YB -YB -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +(99,1,1) = {" +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ni +ni +ni +SU +ZA +MR +os +dm +he +Jb +Lr +Ef +MB +zy +zF +zF +fe +VM +VM +mJ +wv +mJ +VM +VM +fe +fe +fe +NF +VM +fe +fe +zF +VM +VM +fe +fe +fe +VM +KT +mu +WD +sY +wR +sY +Xd +sY +Xd +Xd +AX +cE +Wa +Wa +Rb +sY +Xd +Xd +Xd +sY +hI +cE +cE +cE +Wa +hC +sY +sY +sY +uB +Ky +WX +Tp +zS +Bg +gC +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (100,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -NZ -il -Sn -sE -zl -sE -wH -Sn -XN -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +wY +dz +dz +sZ +ep +iZ +yK +Lr +QB +cu +zD +ES +qQ +ES +zD +vS +ES +kG +ES +sg +zD +ES +kG +ES +zD +zD +ES +ES +ES +vS +zD +ES +kG +ES +zD +uI +Ig +Ek +Ig +TI +ES +ES +kG +ES +ES +aX +vS +zD +lj +Ja +Id +Id +kG +ES +ES +aX +zD +zD +zD +Sf +uI +ES +kG +ES +aX +WL +Af +kb +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (101,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -Rd -Rd -kS -gT -kS -gT -kS -TN -TN -TN -Mu -TN -TN -TN -Qq -TN -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +gx +YA +Ob +YA +YA +YA +cf +Wa +Wa +Sw +Wa +Wa +Yf +Wa +Wa +kr +Wa +Wa +Wa +Sw +Wa +cE +Wa +Wa +Wa +Wa +qn +Wa +cE +Ws +Wa +Wa +nH +tv +Cp +nq +vT +WT +Xv +gi +WT +je +yG +Yf +cE +Wa +iw +WT +WT +Ky +WT +WT +yG +Wa +Wa +Wa +ye +iw +WT +Ky +WT +yG +lu +LA +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (102,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -kS -kS -kS -gT -kS -gT -kS -kS -YB -Vq -Yv -if -IS -YO -cj -Vq -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +cC +HN +lu +EH +Yx +qq +qw +qw +Il +LL +qw +ba +kP +cC +ny +qq +LL +LL +Il +LL +LL +ba +AD +EH +Yx +gq +LL +LL +Il +LL +LL +vl +ss +vz +QB +OW +Op +LL +Il +LL +LL +SR +hW +lu +ny +gB +LL +LL +Il +LL +LL +uS +cC +LH +lu +am +LL +LL +Il +LL +LL +SR +kb +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (103,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -Rd -kS -or -or -fq -kS -Jp -or -or -YB -bg -kk -Gu -Gu -Gu -vJ -oX -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +dz +dz +dz +Xn +cl +ta +cl +IO +dz +dz +dz +dz +dz +Xn +cl +EA +fN +IO +dz +dz +dz +dz +dz +Xn +fN +EA +fN +FU +dz +XT +kY +bQ +dz +Fu +wb +EA +Jc +IO +dz +dz +dz +dz +dz +ds +cl +EA +fN +IO +dz +dz +dz +dz +dz +Xn +fN +EA +cl +IO +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (104,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -kS -kS -kS -kS -kS -kS -kS -kS -kS -kS -YB -ro -rq -jQ -GA -dg -aG -Zw -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +zC +zC +rU +zC +zC +dz +EG +EG +EG +dz +tV +tV +tU +tV +tV +dz +EG +EG +EG +dz +st +st +RU +st +st +dz +vD +iC +af +dz +Bv +Bv +WP +Bv +Bv +dz +EG +EG +EG +dz +zC +zC +rU +zC +zC +dz +EG +EG +EG +dz +zC +zC +rU +zC +zC +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (105,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -YB -YB -YB -YB -YB -YB -YB -YB -YB -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +ey +ey +Vy +ey +ey +dz +EG +EG +EG +dz +ey +ey +Vy +ey +ey +dz +EG +dz +dz +dz +Eg +ey +Vy +ey +ey +dz +dz +dz +dz +dz +vv +fM +Vy +fM +fM +dz +dz +dz +EG +dz +ey +ey +Vy +ey +ey +dz +EG +EG +EG +dz +ey +ey +Vy +ey +ey +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (106,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +AC +AC +ku +AC +AC +dz +EG +EG +EG +dz +AC +AC +ku +AC +AC +dz +EG +dz +Nn +qt +Qt +Qt +sy +Qt +ST +ee +cC +dz +TR +oS +Qt +ST +sy +Qt +ST +Bz +cC +dz +EG +dz +AC +AC +ku +AC +AC +dz +EG +EG +EG +dz +AC +AC +ku +AC +AC +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (107,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +lu +Uu +Dz +Dz +Kx +iU +Dz +pe +cC +dz +cC +eN +IW +yY +Rt +IW +IW +pe +cC +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (108,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +aj +lv +ki +VD +VD +jY +jY +Ix +ts +dz +WG +vp +VD +VD +VD +VD +jY +ZV +JK +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (109,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +UB +lv +jY +cC +lu +lu +jY +Ix +cC +dz +cC +vp +VD +lu +cC +lu +Xe +ZV +ci +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (110,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +KQ +lv +VD +cC +lu +lu +VD +Ix +Gb +dz +cC +vp +VD +lu +cC +lu +jY +ZV +jk +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (111,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +QG +lH +VD +cC +lk +cC +VD +wa +cC +dz +cC +sc +Xe +cC +lu +lu +jY +lm +lu +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (112,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +nv +SX +VD +cC +lu +lu +ew +cv +cC +dz +rZ +Cg +VD +cC +lu +lu +jY +lK +lu +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (113,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +cC +SX +VD +lu +lu +lu +VD +ZY +cC +dz +kc +Cg +VD +lu +lu +lu +jY +mo +lu +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (114,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +NW +SX +VD +VD +jY +VD +jY +xn +ts +dz +mX +Cg +VD +VD +VD +jY +jY +lK +Mv +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (115,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +cC +LM +pO +LK +LK +LK +gd +dH +cC +dz +cC +uH +Zx +XW +XW +XW +XW +zi +cC +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (116,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +co +lu +lu +cC +lu +cC +cC +cC +cC +dz +OX +cC +cC +cC +lu +lu +cC +cC +cC +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (117,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (118,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (119,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -aS -aS -aS -aS -aS -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (120,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -aS -gB -aS -aS -aS -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (121,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -aS -aS -aS -aS -aS -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (122,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (123,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (124,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (125,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (126,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (127,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (128,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (129,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (130,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (131,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (132,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (133,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (134,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (135,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (136,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (137,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (138,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (139,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (140,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (141,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (142,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (143,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (144,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (145,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (146,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (147,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (148,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (149,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} (150,1,1) = {" -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr -Cr +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG +EG "} diff --git a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm new file mode 100644 index 0000000000..ab5d87ee73 --- /dev/null +++ b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm @@ -0,0 +1,31959 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/machinery/light, +/obj/structure/target{ + name = "ready line Ronald" + }, +/obj/item/clothing/suit/storage/marine/heavy/smooth, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"af" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"ag" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"ah" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"al" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"am" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"an" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"aq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"ar" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"aw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 9; + pixel_y = 29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"ax" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ay" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 12; + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"aA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"aB" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"aG" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"aI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"aJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/item/prop/magazine/book/borntokill, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"aN" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"aO" = ( +/obj/item/prop/colony/game, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"aQ" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"aS" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 17" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"aT" = ( +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + network = list("Golden Arrow","Vehicle","Midway"); + pixel_x = -17 + }, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + dir = 4; + icon_state = "shuttle"; + layer = 2.97; + name = "Tactical Map Display"; + pixel_x = -17; + pixel_y = 14 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"aX" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"ba" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/stool, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/synthcloset) +"bb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"bf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"bh" = ( +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"bl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/firingrange) +"bo" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"bq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"br" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"bu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bw" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"by" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"bB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"bD" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"bL" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman"; + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/knife, +/obj/item/device/radio/headset/almayer/marine, +/obj/item/clothing/under/marine/medic, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"bO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"bQ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"bR" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"bS" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"bZ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"ca" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"ce" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"cj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"cl" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"co" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"cp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"cr" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"cs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"ct" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"cw" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"cy" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1, +/obj/item/ammo_magazine/rifle/m41aMK1/heap{ + desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contained High-Explosive Armor-Piercing bullets. It also has some... notches on the side..?"; + current_rounds = 0; + pixel_y = 6; + pixel_x = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"cz" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"cA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;40"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"cB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"cD" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/storage/box/co2_knife{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"cG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"cH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"cJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"cL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"cR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"cS" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Platoon Medic Office"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"cT" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"cU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"cV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/pumpshotgun/special, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"cZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"dd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"de" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"dg" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"di" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"dj" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"dl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/coffee{ + pixel_x = -19 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"dn" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"ds" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/item/tool/wirecutters{ + pixel_y = -6 + }, +/obj/item/device/multitool{ + pixel_x = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"dt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"dv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"dA" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"dB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"dE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"dG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"dH" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"dJ" = ( +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"dO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"dP" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"dX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"ea" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"eh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = -5 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"ek" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"eo" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"eu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ey" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/synthcloset) +"eB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"eH" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"eJ" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"eL" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"eR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"eT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"eU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"eY" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/hangar) +"fe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ff" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"fg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional{ + dir = 10 + }, +/area/golden_arrow/briefing) +"fh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"fl" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"fm" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"fo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"fp" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"fq" = ( +/obj/structure/machinery/conveyor{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"ft" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"fv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"fx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"fy" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"fF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"fJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"fL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"fO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"fW" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"fX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"fY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"gd" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"gf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"gg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"gh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/synthcloset) +"gp" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"gq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"gt" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"gx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"gz" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"gA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gB" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"gD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"gE" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/supply) +"gG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"gH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"gI" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 + }, +/obj/item/weapon/straight_razor{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"gM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"gS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"gT" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"gW" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"ha" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"he" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"hk" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ho" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"hq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"hy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"hA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"hC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/smartgun_battery{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/effect/spawner/random/powercell{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"hD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"hF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"hG" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"hL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/sign/safety/electronics{ + pixel_x = 31; + pixel_y = 6 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 31; + pixel_y = -6 + }, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"hM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"hN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"hQ" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"hR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"hS" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_commander_rooms) +"hU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/warning_cone, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"hW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"ie" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"if" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"ik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"il" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"ip" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/cryo_cells) +"iy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"iA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"iC" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -25 + }, +/obj/structure/sign/safety/west{ + pixel_x = 3; + pixel_y = -25 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"iE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"iF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"iG" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"iK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"iL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"iN" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"iQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"iR" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"iX" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"jc" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/prep_hallway) +"je" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"jg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"jj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"jl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"js" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"jt" = ( +/obj/structure/target, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"jy" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/station_alert{ + dir = 8; + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/synthcloset) +"jD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"jG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"jN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"jO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"jQ" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"jS" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"jU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"jV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"kg" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"kh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"kk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"km" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"kq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"kr" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"kw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"kB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"kF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"kH" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"kI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"kO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"kS" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"kU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"kV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"kX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"lc" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/obj/item/tool/soap{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/tool/soap{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/tool/soap, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"ld" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"lg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"lh" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"lm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"lo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"ly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"lB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"lE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"lG" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"lK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"lQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"lS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"lV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;39" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"mb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/supply) +"mc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"me" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Briefing Room"; + req_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"mf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"mk" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"ml" = ( +/obj/structure/ship_ammo/minirocket, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"mm" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"mo" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"ms" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"mB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"mD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;39" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_one) +"mR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"mW" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"mY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"mZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"nb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad Two Armoury"; + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_two) +"nd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ng" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"ni" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"nj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Smartgunner" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Smartgunner" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"nm" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"nx" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"ny" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"nD" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"nF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"nG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"nH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"nK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"nL" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"nM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -16; + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"nN" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"nR" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"nT" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/cargo_container/wy/right, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"nV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"nY" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"oa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"oe" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"og" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"oh" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"ol" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional{ + dir = 8; + icon_state = "logo_c" + }, +/area/golden_arrow/briefing) +"oo" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"or" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"ot" = ( +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"ou" = ( +/turf/open/floor/almayer_hull{ + dir = 1; + icon_state = "outerhull_dir" + }, +/area/golden_arrow/hangar) +"ov" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"oA" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"oC" = ( +/obj/structure/plasticflaps, +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"oH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"oJ" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"oK" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"oL" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"oM" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"oO" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"oQ" = ( +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/gunoil, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"oW" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"oX" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"pf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/heap/empty, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"pl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"pt" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"pB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"pD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"pF" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"pG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"pJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_one) +"pO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"pR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"pS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"pW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"pZ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"qa" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_one) +"qc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"qf" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"qh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"qi" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"qm" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"qu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"qv" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"qw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"qz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"qA" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_sergeant) +"qD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"qE" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/machinery/light, +/obj/structure/sign/safety/two{ + pixel_y = -22 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"qI" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"qQ" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoon_sergeant) +"qR" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"qT" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/golden_arrow/briefing) +"qU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"qW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"rb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"rd" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"rf" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"rh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"rk" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"rl" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/golden_arrow/briefing) +"ro" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"rq" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"rr" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 5 + }, +/area/golden_arrow/briefing) +"rt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"rx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"ry" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"rA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -1; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"rH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"rI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 28; + pixel_y = 5; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = 32; + serial_number = 16 + }, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"rJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"rM" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional, +/area/golden_arrow/briefing) +"rX" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Squad Sergeant" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Squad Sergeant" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"rZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"sa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"sc" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"sf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"sg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/dorms) +"sk" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"sm" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/area/golden_arrow/briefing) +"so" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"sv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"sy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"sC" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_sergeant) +"sE" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"sI" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/cryo_cells) +"sN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"sO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"sR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"sS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"sU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"sV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"sX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"sY" = ( +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander"; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_state = "cabinetdetective_locked"; + icon_opened = "cabinetdetective_open"; + icon_off = "cabinetdetective_broken"; + has_cryo_gear = 0 + }, +/obj/item/clothing/under/marine/officer/boiler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"tb" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = -24; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -24; + pixel_y = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"tf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"ti" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"to" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"tr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"tv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"ty" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pdt_kit{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = 9; + pixel_x = 8 + }, +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = 9; + pixel_x = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"tA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"tB" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"tS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"tT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"tV" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"tX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"ua" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"ub" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"ug" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"um" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/faxmachine/uscm/command/capt, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"uo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"up" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"ur" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"us" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"uu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"uw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"uA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"uE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"uF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"uG" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"uH" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"uO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 11; + pixel_y = 5 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"uQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"uS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"uX" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"vb" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + layer = 2.0; + pixel_x = 12 + }, +/turf/closed/wall/almayer, +/area/golden_arrow/platoon_commander_rooms) +"vc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"vg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"vk" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"vo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"vp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"vt" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"vA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"vB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"vF" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_two) +"vG" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pouch/electronics{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"vJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"vK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"vL" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"vN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"vP" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"vS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"vU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"wa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"wc" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"wd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"wi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wl" = ( +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"wn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"wx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/item/device/walkman{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"wI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"wJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/magazine/book/bladerunner, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 2; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"wK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"wN" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/item/book/manual/robotics_cyborgs{ + pixel_y = 8 + }, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/synthcloset) +"wS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"wV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"wX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"xf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"xh" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"xm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"xo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"xx" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"xz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"xB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 6 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"xJ" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"xK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"xM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"xQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/galley{ + pixel_x = -19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"xX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/dorms) +"yc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"ye" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/engineering) +"yg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"yj" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"yo" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"ys" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"yt" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"yv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"yw" = ( +/obj/item/toy/deck/uno, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"yx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"yy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"yA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;39"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"yF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"yJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"yL" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/obj/structure/gun_rack/m41, +/obj/item/ashtray/plastic{ + pixel_y = 14; + pixel_x = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"yM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"yO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"yT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"yU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"yY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"yZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"za" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"zk" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;39" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"zl" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"zn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"zt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"zv" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"zy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"zD" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"zG" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zI" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/mop{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"zK" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 7; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"zL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"zM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"zP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"zV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"zY" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Ad" = ( +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ap" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"As" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Aw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/canteen) +"Ax" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Ay" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/prep_hallway) +"AA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"AC" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/item/stack/catwalk{ + pixel_x = 12; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"AG" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"AH" = ( +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"AK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"AL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"AO" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"AP" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 + }, +/obj/structure/sign/safety/manualopenclose{ + layer = 2.11; + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AQ" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"AY" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Bd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Bf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Bg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Bh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Bi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Bj" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/almayer, +/area/golden_arrow/medical) +"Bo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Bq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Br" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Bt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Bu" = ( +/obj/item/ammo_magazine/sentry{ + layer = 3.01 + }, +/obj/item/defenses/handheld/sentry, +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Bv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "Damage Control Locker"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Bw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_y = -29 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Bz" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"BA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -3 + }, +/obj/item/storage/toolbox{ + pixel_y = -5 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"BC" = ( +/obj/structure/target, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"BD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"BK" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"BM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"BO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"BP" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"BW" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"BY" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"BZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Cb" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Ce" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Cf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"Cg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Cl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/hangar) +"Cn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Co" = ( +/obj/structure/barricade/plasteel{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"Cr" = ( +/turf/open/space/basic, +/area/space) +"Cs" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Cu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Sergeants Room"; + req_one_access_txt = "12;32" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"Cv" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"Cw" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"Cy" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"CA" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"CC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/explosive/grenade/smokebomb{ + pixel_y = 14; + pixel_x = -5 + }, +/obj/item/explosive/grenade/smokebomb{ + pixel_y = 11; + pixel_x = -9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"CF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"CJ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + name = "Weyland-Yutani premium shampoo"; + desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"CK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"CN" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"CP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"CS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/computer/supply_drop_console/limited/alternate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"CX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"CZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer, +/area/golden_arrow/squad_two) +"Dc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Df" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 10 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Dg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Di" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = -9; + pixel_x = 8; + name = "spent snailshot"; + layer = 2.7 + }, +/obj/item/storage/box/guncase/pumpshotgun/special, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Dl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Dw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Dx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"DB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"DC" = ( +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"DE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"DF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"DM" = ( +/obj/structure/machinery/power/apc/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"DR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"DX" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"DY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Ea" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Eb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Ei" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Eo" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Ep" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Er" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Eu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ey" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"EA" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"EB" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"ED" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"EF" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"EI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"EJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"EK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"EN" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"EO" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"EQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"EX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"EZ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Fa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/canteen) +"Fe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Ff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Fg" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Fi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"Fj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -23; + pixel_y = -11 + }, +/obj/item/facepaint/black, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Fl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"Fu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Fw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Fy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"Fz" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"FE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"FI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"FK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"FN" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"FP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"FR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"FS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"FT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"FV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"FW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Gf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Gg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Gi" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 14; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Gk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Gl" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/prep_hallway) +"Gq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Gs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Gu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gy" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Gz" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"GA" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"GG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"GK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/cryo_cells) +"GL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"GN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"GO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/synth_storage{ + pixel_x = -20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"GQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"GU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"GV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/golden_arrow/platoon_commander_rooms) +"GY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"Hc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Lower Deck Waste Tank Control" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Hd" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Platoon Sergeant" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Hh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Hj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_y = 29 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Hk" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"Hm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Hu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/target, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"Hv" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Hw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_two) +"Hx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/aesthetic, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"HG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"HH" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HK" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/cryo_cells) +"HQ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/golden_arrow/hangar) +"HS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HT" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"HV" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"HX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ib" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/one{ + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"Ii" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"Is" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"It" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Iw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Iy" = ( +/obj/structure/computer3frame, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"IC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"ID" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"IE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_two) +"IH" = ( +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/firingrange) +"IP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"IR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"IS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"IT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"IU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"IW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"IX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"IZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Jc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Jg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"Jj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"Jk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Jn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/hand_labeler{ + pixel_y = 14 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Jp" = ( +/obj/structure/machinery/conveyor{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/supply) +"Jq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Jv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"JD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JI" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"JJ" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/medical) +"JL" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"JP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"JT" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"JU" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"JZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Kb" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"Kd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Ke" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Ki" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Kl" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Kp" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/structure/largecrate/supply/explosives/grenades/less{ + icon_state = "case"; + pixel_y = 10; + pixel_x = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Ku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Kv" = ( +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Kx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"KD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"KH" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"KL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"KM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"KO" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"KP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"KQ" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"KU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"KY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"KZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"La" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"Ld" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Smartgunner" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Lf" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Lg" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"Lh" = ( +/obj/structure/sign/poster{ + pixel_y = -8; + pixel_x = -25; + icon_state = "poster15"; + name = "pulse rifle pinup"; + desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Ll" = ( +/obj/structure/ship_ammo/minirocket/incendiary, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Ln" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Lo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ls" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ + density = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Lx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"LC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"LE" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"LF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_one) +"LH" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"LJ" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/golden_arrow/briefing) +"LK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"LL" = ( +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"LQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"LS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"LT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"LZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Mc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Md" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Me" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/squad_two) +"Mf" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/synthcloset) +"Mi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Mj" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"Ml" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Mn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"Mu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Mz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/firingrange) +"MB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_commander_rooms) +"MC" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"MI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"MJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"MK" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_commander_rooms) +"ML" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"MN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"MW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"MZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/dorms) +"Na" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ne" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"Nf" = ( +/turf/closed/wall/almayer/white, +/area/golden_arrow/medical) +"Ng" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Nk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"No" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Np" = ( +/turf/open/floor/almayer, +/area/golden_arrow/briefing) +"Nr" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/prop_gun/anti_tank, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Nx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Nz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"NB" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"ND" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29; + layer = 3 + }, +/obj/structure/gun_rack/m41, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_y = 22; + pixel_x = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"NE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"NI" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"NO" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"NT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"NU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"NV" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"NZ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"Ob" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"Of" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/firingrange) +"Oj" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Ol" = ( +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/structure/janitorialcart, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Op" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"Os" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Oy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"Oz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OA" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"OC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_commander_rooms) +"OG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"OI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"OJ" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ON" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"OU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_two) +"OX" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/golden_arrow/briefing) +"OY" = ( +/obj/structure/ladder{ + height = 2; + id = "req1" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"OZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Pc" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = -10 + }, +/obj/item/storage/box/cups{ + pixel_x = 11; + pixel_y = -9 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"Pe" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Pf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Ph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Pl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Pm" = ( +/obj/structure/largecrate/supply/explosives/grenades/less{ + icon_state = "case" + }, +/obj/structure/largecrate/supply/motiondetectors{ + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Pp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad One Armoury"; + req_one_access_txt = "8;12;39" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_one) +"Pr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"Ps" = ( +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 + }, +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"Pt" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Py" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"PA" = ( +/obj/structure/closet/crate/supply, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"PF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"PG" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"PI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/firingrange) +"PL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"PQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/golden_arrow/platoon_sergeant) +"PS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"PW" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Private Briefing Room"; + req_access = list(); + req_one_access_txt = "12;19;32" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/briefing) +"PY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/medical) +"PZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Qc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch" + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Qe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Qi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/conference_room{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Qk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Ql" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"Qq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/engineering) +"Qt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"Qu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Qw" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_two) +"Qx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Qz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"QD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"QE" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"QI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"QJ" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/squad_one) +"QL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"QM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"QN" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"QO" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"QP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"QQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"QS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"QT" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/cryo_cells) +"QW" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"QX" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Ra" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Rc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Office" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"Rd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"Rg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Rh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Ri" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"Rl" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Rr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Rv" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/canteen) +"Rx" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Ry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -4; + pixel_y = 32; + serial_number = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"RD" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"RK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"RM" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"RN" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"RO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;40"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"RP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"RT" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"RW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"RY" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"Sc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/cryo_cells) +"Sd" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Si" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Sj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Sl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Sn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"So" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Sq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Su" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Sw" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Sy" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"SB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"SC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/classic{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"SE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/golden_arrow/firingrange) +"SI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"SL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"SO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"SR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/flare{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/device/flashlight/flare{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"SV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book/theartofwar, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"SY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"Tb" = ( +/obj/item/toy/deck, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/closed/wall/almayer/white, +/area/golden_arrow/medical) +"Td" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Tg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"Tj" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"Tk" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"To" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/cryo_cells) +"Tr" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Tu" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Tx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Ty" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_one) +"Tz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"TC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TD" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"TI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"TK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"TN" = ( +/turf/closed/wall/almayer/reinforced, +/area/golden_arrow/engineering) +"TO" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"TP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"TT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"TW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/synthcloset) +"TY" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/canteen) +"Ub" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"Uf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Uh" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/briefing) +"Ui" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/canteen) +"Uj" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/platoon_sergeant) +"Uk" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Um" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"Uv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"UI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"UK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"UN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/canteen) +"UO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"UT" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/prep_hallway) +"UX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Va" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Vc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Ve" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/soap, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Vj" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Vp" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) +"Vq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"Vr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Vu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/supply) +"Vv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/dorms) +"VG" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"VJ" = ( +/obj/structure/ladder{ + height = 1; + id = "req1" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/supply) +"VK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;39"; + req_one_access = list() + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"VL" = ( +/obj/structure/closet/secure_closet/platoon_sergeant, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"VQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"VT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"VX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/briefing) +"Wf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"Wg" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/platoon_commander_rooms) +"Wj" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/dorms) +"Wl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Wm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Wo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"Wp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"Wr" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Ws" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Wu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Wv" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Wy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"WA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"WG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/supply) +"WK" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"WP" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/briefing) +"WY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Xa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"Xb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Xc" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Xd" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Xj" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/supply) +"Xs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/hangar) +"Xu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Firing Range" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/firingrange) +"Xv" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/golden_arrow/platoon_commander_rooms) +"Xw" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Xy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"Xz" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"XI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/prep_hallway) +"XJ" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/briefing) +"XL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"XN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/engineering) +"XP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 7; + pixel_y = -28 + }, +/obj/structure/reagent_dispensers/ammoniatank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) +"XQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/prep_hallway) +"XR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/ceramic_plate{ + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"XV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) +"Ya" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/squad_two) +"Yc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_one) +"Yd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/item/folder/black_random, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Ye" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/engineering) +"Yh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Yj" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/hangar) +"Yk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/golden_arrow/firingrange) +"Yl" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/golden_arrow/synthcloset) +"Ym" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/hangar) +"Yp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"Ys" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Yv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"Yw" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/hangar) +"Yx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 19 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -5; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"YA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/golden_arrow/briefing) +"YB" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/engineering) +"YG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"YK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/canteen) +"YO" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"YP" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/briefing) +"YQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"YX" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Zb" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Zf" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/canteen) +"Zk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/prep_hallway) +"Zl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/squad_two) +"Zw" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/golden_arrow/engineering) +"ZB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/platoon_sergeant) +"ZC" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/squad_one) +"ZI" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"ZJ" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/synthcloset) +"ZL" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) +"ZM" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/golden_arrow/canteen) +"ZQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/firingrange) +"ZR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/golden_arrow/medical) +"ZU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/supply) +"ZV" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/golden_arrow/cryo_cells) +"ZX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/engineering{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/engineering) + +(1,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(2,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(3,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(4,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(5,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(6,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(7,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(8,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(9,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(10,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(11,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(12,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(13,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(14,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(15,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(16,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(17,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(18,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(19,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(20,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(21,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(22,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(23,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(24,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(25,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(26,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(27,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(28,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(29,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(30,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(31,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(32,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(33,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(34,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(35,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(36,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(37,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(38,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(39,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(40,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(41,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(42,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(43,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(44,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Qw +Qw +Qw +Qw +Qw +Qw +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(45,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Qw +ot +Lh +pB +Pm +Qw +Cr +Cr +bl +bl +bl +bl +bl +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(46,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +Cr +Cr +Cr +Cr +Cr +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +sC +pt +pt +pt +Qw +ND +Fg +Px +CC +Qw +Cr +Cr +bl +Oy +SE +zv +Hu +ek +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(47,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Ln +wz +gz +wK +gz +Pt +tV +ca +ml +wz +Ll +wK +Ll +wz +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +Xz +Xz +sC +sC +VL +sC +sC +wJ +VQ +qA +zV +KQ +qA +dl +Bh +qA +zK +pW +iC +Me +Zl +DE +DR +Di +Qw +Cr +Cr +bl +VG +hD +zv +zP +VG +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(48,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Xd +wz +Xd +wz +Xd +wz +Xd +ca +ml +wz +Ll +wz +Ll +wz +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +sC +sC +sC +Ls +KQ +sC +QX +rH +dr +wV +dr +tr +kI +Hm +DY +qA +FS +XI +oh +Me +Me +Me +Hw +Me +Qw +Qw +Qw +bl +VG +Ri +zv +Yk +VG +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(49,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +wz +jl +JZ +JZ +JZ +fe +wz +ca +Pt +jl +JZ +SR +SR +wx +Pt +ca +Cr +Cr +Cr +Cr +Cr +sC +SC +Kv +sC +sC +Uj +sC +Tj +SI +Kv +yt +Kv +yY +Yd +Iw +BO +qA +og +XI +IU +Me +BA +xB +Yp +gd +ST +Df +Me +Me +jt +Jj +BD +Is +BC +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(50,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Yw +Yw +Yw +ca +Ln +So +KO +KO +Rr +Kx +tV +ca +ml +So +KO +KO +KO +Kx +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +fW +dr +vA +lS +lS +ft +gQ +Ap +uO +qA +Qu +pF +Fj +Jn +BO +qA +Oj +TC +wp +Me +lQ +Fg +Yp +Fg +Fg +gd +tS +Me +VG +hD +zv +zP +VG +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(51,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +sc +MN +wz +ca +Xd +UX +Rr +Ea +KO +Kx +Xd +ca +ml +UX +Rr +Ea +KO +kV +ml +ca +Cr +Cr +Cr +Cr +Cr +sC +gI +BK +sC +mc +KQ +bw +KQ +QS +gA +qA +Rh +Kv +Qe +Cg +qQ +Cu +ED +TC +eo +nb +vF +Fg +IE +ty +Fg +Fg +Ku +Me +PS +ce +zv +FK +PS +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(52,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +wz +Dc +wz +ca +ca +ca +Yw +Yw +Yw +ca +ca +ca +ca +ca +Yw +Yw +Yw +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +qA +Ng +fh +Tz +PQ +ID +zM +TO +KU +OU +Ya +mR +hC +mf +Fy +DR +tS +Me +Ib +EN +Co +IH +qE +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(53,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +wz +Dc +HQ +ca +ca +Tu +wz +ZL +ZL +ZL +ZL +hk +ZL +BW +ZL +ZL +ZL +wz +wz +wz +wz +ZL +wz +wz +ca +ca +ZL +CN +rk +ZJ +wN +Yl +Um +NI +gn +ZJ +hN +Kv +Kv +Kv +Dg +qA +Qi +TC +Gi +Me +Zb +Fg +Nr +pf +sV +Yp +Db +Me +tf +hM +zv +hM +tf +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(54,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +ca +ca +lB +IW +IW +by +GN +kU +GN +by +JP +JP +IW +by +CK +kU +AK +EX +JP +IW +Kx +ca +ca +ZL +mm +ax +ZJ +nF +eT +hq +Ep +No +ZJ +Hj +Kv +Kv +DY +gM +qA +rA +XI +wp +Me +PG +gd +dX +pB +Fg +TT +Me +Of +hQ +wX +ZQ +wX +KL +Kb +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(55,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +ug +wz +So +KO +Nk +nN +eU +MN +qi +Xd +hF +Lo +KO +Xd +qi +he +eU +gD +Rr +KO +pD +ug +wz +ZL +AQ +xh +ZJ +TW +yJ +ba +jy +Mf +ZJ +ZB +KQ +UK +Kl +qA +qA +Fw +XI +jj +Me +Me +js +Qw +qD +cA +RO +Me +Of +uE +BD +Mz +nL +BD +eh +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(56,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Qk +pl +pl +Gs +FP +zy +JD +Ym +qi +Dc +Wu +Xd +DM +Yj +KH +Xd +qi +Dc +qi +hA +zy +zy +GQ +pl +pl +pl +yO +wz +ZJ +ZJ +ey +ZJ +ZJ +ZJ +ZJ +qA +qA +qA +qA +qA +jc +Jc +nH +GG +Zk +Me +Me +Me +Me +Me +Me +Me +Of +PI +Xu +Of +Of +bl +bl +bl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(57,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +KO +KO +MI +Rr +Rr +Bf +ua +Dc +qi +Xd +Bw +Yj +KH +Xd +qi +Dc +qi +Xd +KO +KO +Yh +KO +uG +KO +Dc +wz +oK +wp +gS +GO +iN +iN +iN +vL +AY +wp +wp +cU +lo +Eu +XI +Wl +uu +WY +iN +wp +iN +wp +iN +wp +tb +xo +RY +iN +oh +Ay +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(58,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +Ke +al +TP +Rr +QW +Xd +qi +Xs +eU +qw +zy +SL +BP +qw +eU +Td +qi +Xd +TD +KO +sy +Ph +IT +KO +Qk +lm +iG +SO +Fu +SY +iK +iK +SO +zM +iK +iK +SO +SY +SO +iK +wn +iK +SO +so +SO +iK +iK +XV +XV +iK +iK +Wy +Ad +Op +CA +Ay +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(59,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +KO +pD +ZL +Rg +KO +rM +dP +qi +Wr +qi +Xd +KO +Rr +Rr +Xd +qi +lh +km +Xd +KO +KO +pD +wz +Ws +zD +Dc +ZL +oK +ms +ms +iN +pZ +pZ +iN +wp +wp +iN +iN +sN +Va +Wm +XI +gq +Va +iL +iN +wp +iN +iN +iN +wp +wp +pZ +ms +wp +iN +Ay +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(60,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +yZ +Dc +KO +Vv +HV +cp +HV +nT +JI +Py +HV +fl +aB +EZ +HV +Wv +aB +EZ +HV +Wv +HS +EZ +cl +jO +aB +nd +KO +Dc +oe +XJ +kg +qu +XJ +kg +qu +Vp +Vp +Vp +Vp +Vp +Vp +Zk +Jc +TC +GG +jc +ZC +ZC +ZC +ZC +ZC +ZC +Ty +Gl +pt +pt +Gl +Gl +Gl +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(61,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +cL +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +bQ +KO +Dc +ad +XJ +YA +Od +Sy +mk +vk +Vp +KZ +gL +sk +uH +Vp +Vp +wd +XQ +KD +ZC +ZC +Yc +Ty +cz +VK +yA +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(62,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +nm +RT +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +aN +Dc +eY +XJ +As +As +Vr +Vr +As +Vp +am +JL +Tb +KK +JL +Vp +OG +XI +iN +ZC +TI +cs +af +cT +cT +xf +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(63,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +AP +mW +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dA +lg +Dc +eY +ag +As +Np +Np +rJ +As +Vp +EF +JL +aO +yw +Vz +Vp +xm +XI +wp +ZC +Fe +cT +cD +aJ +iE +xx +pJ +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(64,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +ZL +OJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +AG +lg +Dc +eY +ag +As +qT +LJ +fg +Vr +Vp +Tk +wl +vU +sR +MZ +sg +SY +TO +yT +Pp +LF +nG +PZ +Dx +UI +cT +lV +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(65,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +KO +cL +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +gh +aN +Dc +eY +XJ +Vr +rl +ol +rV +Vr +Vp +Hd +wl +FE +wl +xX +Wj +ED +TC +eo +QJ +qa +cT +cR +Uk +cT +cT +zk +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(66,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +yZ +Dc +KO +RT +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +Lg +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +zD +Qk +MC +XJ +dv +rr +OX +sm +uA +Vp +rX +wl +FI +Bo +ld +Vp +ys +XI +Gi +ZC +zZ +cT +sf +cT +cT +cs +lV +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(67,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +KO +mW +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +LH +aN +Dc +eY +XJ +Vr +Np +Np +rJ +As +Vp +Ld +pw +Wf +pw +nj +Vp +kX +vp +Ql +ZC +Ry +LK +sf +oQ +OI +rI +Ty +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(68,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +ZL +OJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +AG +lg +Dc +eY +ag +FT +FT +FT +sv +vB +Vp +EQ +Bg +FE +wl +EQ +Vp +Oj +XI +iN +ZC +ZC +ZC +mD +ZC +Ty +Ty +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(69,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +to +cL +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +gh +lg +Dc +eY +ag +WP +WP +WP +WP +Jk +Vp +yx +Bo +UO +wl +yj +Vp +FS +XQ +PF +ZC +cy +ha +Wp +Ei +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(70,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +AP +RT +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +lg +Dc +eY +XJ +WP +WP +WP +WP +KY +Vp +Tg +wl +FR +wl +ur +Vp +UT +XI +wp +ZC +yL +xf +cT +cV +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(71,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +mW +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dA +zD +Dc +bf +XJ +aI +VX +VX +VX +vN +Vp +Sd +Cb +Gf +MJ +br +Vp +aQ +XI +wp +ZC +Bu +WK +PA +Kp +Ty +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(72,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +yZ +Dc +KO +Ke +Tx +ct +qI +rf +ON +Jq +ar +Lx +Tx +JT +qI +Lx +Tx +Jq +ar +Lx +ON +JT +ar +vS +Tx +mB +aN +Dc +eY +XJ +WP +WP +WP +WP +KY +Ui +Ui +Ui +Ui +Ui +Ui +Ui +ZM +Fa +ZM +Ui +HK +HK +HK +HK +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(73,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Qk +zy +YQ +AL +IZ +zy +pl +pl +pl +zy +Oz +aN +KO +KO +KO +Ea +Ea +KO +aN +KO +KO +KO +pD +ZL +So +aN +Dc +eY +ag +WP +WP +WP +WP +KY +Ui +Ui +YK +Jv +NO +QI +XR +Xw +NT +KM +Ui +HK +HK +Ax +Ax +Ax +HK +Pf +KP +HK +Ii +nR +QT +nR +rb +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(74,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +Xy +fx +bq +JZ +JZ +SR +SR +pO +Rt +OH +SR +fx +SR +Cl +JZ +JZ +ff +SR +SR +je +Vv +SR +pG +lg +Dc +eY +ag +Eo +Ob +Ob +Ob +oL +Ui +nK +Cf +ik +bR +Rl +Kd +Cs +NT +UN +qR +HK +Xc +YG +yF +yF +LQ +fX +ti +To +BY +BY +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(75,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +KO +hS +hS +vb +bo +bo +hS +hS +ay +Dc +Rg +Nf +Nf +Bj +cS +Bj +Bj +Nf +Bj +Bj +Nf +Bj +Bj +Nf +lg +Dc +eY +XJ +fy +fL +sS +sS +bS +Ui +oM +CF +dO +Os +Rx +Ys +LS +NT +TY +qR +HK +Xc +QD +ZV +Mi +ZV +rh +gg +To +bh +RD +cr +LL +LL +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(76,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ou +eH +ZL +Dc +ZL +hS +CZ +aT +Qc +Bz +Mc +bo +eu +Dc +ie +Nf +JU +Cv +Cv +dd +bL +Nf +fY +hW +Fi +jf +oJ +Nf +zJ +Dc +bf +XJ +Vr +Np +Uh +Np +As +Ui +Pc +FV +Zf +Zf +Zf +Zf +sO +QM +TY +qR +HK +Xc +QD +ZV +HK +Tr +Xa +NV +HK +kr +qm +eL +qm +qf +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(77,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +hS +um +QO +SV +Bz +GV +bD +HR +pR +Rg +Nf +uF +OA +OA +dm +Mj +Nf +gG +OA +OA +jg +Cw +Nf +KO +Ey +lg +me +GY +Np +Np +rJ +As +Ui +yM +Dl +Zf +Zf +Zf +Zf +Zf +QM +TY +qR +HK +HK +za +Si +HK +Na +dG +di +HK +HK +HK +HK +HK +HK +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(78,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +ZL +hS +BZ +Bz +iA +Bz +LZ +hS +HH +Dc +Rg +Nf +cH +cJ +OA +dt +ea +fO +Pr +PY +Pr +jG +xz +jV +lm +ly +ZL +XJ +yv +As +Ne +tT +IX +Ui +Gz +Dw +Gk +Os +Sl +Yx +lG +QM +TY +qR +HK +Xc +kq +Vc +HK +XL +fJ +NB +HK +QT +nR +Ii +nR +rb +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(79,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ca +ZL +Dc +bf +hS +Bz +Bz +Bz +LE +tv +hS +pD +Dc +Rg +Nf +ov +OA +OA +OA +eJ +Nf +ho +iy +ho +jU +JJ +Nf +cB +lE +wz +XJ +XJ +XJ +PW +XJ +XJ +Ui +tX +Uv +GL +Pe +Su +rx +up +Bq +TY +qR +HK +Xc +kq +ZV +zt +ZV +xM +ti +To +BY +BY +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(80,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ZL +Dc +ZL +hS +hS +wc +hS +hS +hS +hS +iX +Er +Rg +Nf +ZR +QE +cZ +dE +Mj +Nf +hG +jb +hG +jb +FN +Nf +KO +Dc +wz +XJ +XJ +As +mk +uw +As +Ui +Ui +DF +oH +NO +Ub +XR +dn +QM +ub +Ui +HK +Xc +QD +ZV +Mi +ZV +rh +Sq +To +ZI +ZI +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(81,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +ZL +Xs +QN +MK +MK +Xv +iR +Bz +qU +hS +RK +Er +vP +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Nf +Tc +Nf +Nf +Nf +Nf +KO +Dc +bf +YP +ni +ry +ry +Np +rJ +As +Rv +Ui +Ui +Ui +Ui +Ui +ZM +Aw +ZM +Ui +HK +HK +hR +Vc +HK +AA +Xa +NV +HK +eL +qm +kr +qm +qf +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(82,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +ca +Yw +Yw +Yw +MK +MK +BZ +iR +Bz +OC +hS +pD +Er +Rg +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +aw +Dc +ZL +YP +nM +Eb +Eb +nY +Np +As +sI +Ki +xK +Sw +HK +FW +eR +bb +dG +xQ +HK +EO +QD +Si +HK +nV +Xa +di +HK +HK +HK +HK +HK +HK +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(83,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +vt +iR +Bz +Jg +hS +bu +Dc +Rg +gE +gE +Xj +Qt +gE +Hk +OZ +yU +yU +ZU +Fl +lA +Vu +kw +qc +Gq +YP +oa +qv +qv +Np +wS +YP +sI +Ki +Hv +Sw +HK +gH +QD +bb +dG +Sc +BM +Br +QD +ZV +HK +Vc +Xa +NV +HK +QT +nR +Ii +nR +rb +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(84,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +sY +iR +Bz +dH +hS +pD +Dc +Rg +gE +iQ +Cn +VT +gE +ML +ny +SB +nx +de +sa +QP +bZ +Er +Rr +Rt +YP +qh +Vr +Vr +Vr +YP +YP +sI +Ve +HG +Pl +GK +Gg +sU +Ra +dG +Sc +Mn +Sc +QD +ZV +zt +ZV +xM +rZ +To +Lf +Lf +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(85,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +MK +hS +MB +hS +hS +oW +Dc +Rg +gE +sX +tA +gE +gE +ML +ny +uS +ng +TN +EB +EB +ye +Qq +TN +Qq +YB +YB +YB +YB +YP +YP +YP +sI +HK +ip +HK +HK +EI +mY +zn +Bi +Sc +EK +Sc +fo +IC +IC +IC +IC +Bi +To +BY +YX +cr +BY +BY +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(86,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +NE +DB +Wg +hS +pD +Dc +Rg +gE +Wo +iF +Rc +Md +kO +vg +RW +LC +TN +Fz +AH +AH +Gv +LT +Gv +Hc +lK +kF +YB +Cr +Cr +Cr +sI +DX +HX +Qx +HK +Sc +Sc +HK +Br +Br +HK +lc +CJ +Br +HK +Br +Br +rd +HK +eL +qm +kr +qm +qf +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(87,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +oA +QQ +gp +hS +pD +Dc +vP +gE +qz +Zd +gE +WA +DC +DC +RW +mZ +TN +CX +IP +gf +Bd +CP +PL +hy +AH +ZX +YB +Cr +Cr +Cr +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +sI +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(88,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +MK +MK +MK +MK +wi +Td +Rg +gE +co +OY +gE +gE +Cy +sa +nD +gE +TN +TN +gW +It +TN +TN +wI +Gv +IP +jN +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(89,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +MK +Yw +Yw +Yw +kS +kS +kS +kS +kS +oC +kS +oC +kS +TN +Ol +zI +jD +bO +TN +vo +Gv +IP +Iy +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(90,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +xJ +Oc +zA +gx +TN +CX +La +us +gt +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(91,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +zY +zG +Ff +Gy +TN +kH +kB +RP +hL +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(92,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +TN +TN +TN +TN +TN +TN +Hh +NU +YB +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(93,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +fm +fm +fm +fm +fm +TN +yc +Sn +Vq +YB +RN +tB +RM +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(94,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +kS +kS +kS +gT +kS +gT +kS +TN +TN +TN +TN +TN +TN +TN +Nz +rt +XP +YB +bB +EJ +zL +oo +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(95,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +VJ +co +kS +gT +kS +gT +kS +TN +kh +qW +GU +Ml +AO +EA +yc +aq +Uf +Bv +Vj +Xb +Bt +fp +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(96,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +eB +uo +WG +kS +gT +kS +gT +kS +TN +Ce +fv +Sj +TK +MW +QL +IR +cG +fF +gW +Vj +cw +Bt +Ps +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(97,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +CS +vK +aA +kS +gT +kS +gT +kS +TN +vc +il +wa +sE +Nx +sE +Ye +Sn +uX +YB +dj +fF +uQ +pS +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(98,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +yg +aX +kS +gT +kS +gT +kS +TN +Qz +il +wa +oO +AC +HT +ah +wa +yo +YB +yy +mo +an +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(99,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +mb +kS +kS +gT +kS +gT +kS +TN +NZ +il +Sn +jS +vG +ds +hU +wa +Hx +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(100,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +NZ +il +Sn +sE +zl +sE +wH +Sn +XN +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(101,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +Rd +Rd +kS +gT +kS +gT +kS +TN +TN +TN +Mu +TN +TN +TN +Qq +TN +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(102,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +kS +kS +kS +gT +kS +gT +kS +kS +YB +Vq +Yv +if +IS +YO +cj +Vq +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(103,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +Rd +kS +or +or +fq +kS +Jp +or +or +YB +bg +kk +Gu +Gu +Gu +vJ +oX +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(104,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +kS +kS +kS +kS +kS +kS +kS +kS +kS +kS +YB +ro +rq +jQ +GA +dg +aG +Zw +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(105,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +YB +YB +YB +YB +YB +YB +YB +YB +YB +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(106,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(107,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(108,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(109,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(110,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(111,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(112,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(113,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(114,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(115,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(116,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(117,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(118,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(119,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +aS +aS +aS +aS +aS +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(120,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +aS +gB +aS +aS +aS +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(121,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +aS +aS +aS +aS +aS +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(122,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(123,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(124,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(125,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(126,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(127,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(128,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(129,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(130,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(131,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(132,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(133,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(134,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(135,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(136,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(137,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(138,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(139,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(140,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(141,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(142,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(143,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(144,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(145,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(146,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(147,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(148,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(149,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} +(150,1,1) = {" +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +Cr +"} diff --git a/maps/map_files/golden_arrow_classic/sprinkles/.gitkeep b/maps/map_files/golden_arrow_classic/sprinkles/.gitkeep new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/maps/map_files/golden_arrow_classic/sprinkles/.gitkeep @@ -0,0 +1 @@ + diff --git a/maps/map_files/rover/rover.dmm b/maps/map_files/rover/rover.dmm index 0d4bc14fd8..ad495d23b9 100644 --- a/maps/map_files/rover/rover.dmm +++ b/maps/map_files/rover/rover.dmm @@ -175,7 +175,7 @@ pixel_y = 34; pixel_x = 8 }, -/obj/structure/gun_rack/m41, +/obj/structure/gun_rack/m41/unloaded, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -3201,7 +3201,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/gun_rack/m41, +/obj/structure/gun_rack/m41/unloaded, /turf/open/floor/almayer{ icon_state = "plate" }, diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm index df47309c7a..e135221e7f 100644 --- a/maps/shuttles/dropship_alamo.dmm +++ b/maps/shuttles/dropship_alamo.dmm @@ -483,7 +483,7 @@ /area/shuttle/drop1/sulaco) "Pf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ - dir = 1; + dir = 2; id = "port_door" }, /turf/open/shuttle/dropship{ diff --git a/maps/shuttles/dropship_cyclone.dmm b/maps/shuttles/dropship_cyclone.dmm index 97fb82caeb..e717f90657 100644 --- a/maps/shuttles/dropship_cyclone.dmm +++ b/maps/shuttles/dropship_cyclone.dmm @@ -539,7 +539,7 @@ /area/shuttle/cyclone) "QA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2/cyclone{ - dir = 1; + dir = 2; id = "port_door" }, /turf/open/shuttle/dropship{ diff --git a/maps/shuttles/dropship_midway.dmm b/maps/shuttles/dropship_midway.dmm index 64b2dab98d..f9f194dc43 100644 --- a/maps/shuttles/dropship_midway.dmm +++ b/maps/shuttles/dropship_midway.dmm @@ -611,7 +611,7 @@ /area/shuttle/midway) "SS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1/midway{ - dir = 1; + dir = 2; id = "port_door" }, /turf/open/shuttle/dropship{ diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm index df64ef84ca..6e2fcfc0c8 100644 --- a/maps/shuttles/dropship_normandy.dmm +++ b/maps/shuttles/dropship_normandy.dmm @@ -351,7 +351,7 @@ /area/shuttle/drop2/sulaco) "En" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 1; + dir = 2; id = "port_door" }, /turf/open/shuttle/dropship{ diff --git a/maps/shuttles/lifeboat-compact.dmm b/maps/shuttles/lifeboat-compact.dmm new file mode 100644 index 0000000000..c5f69f2269 --- /dev/null +++ b/maps/shuttles/lifeboat-compact.dmm @@ -0,0 +1,606 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bP" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "1,2" + }, +/area/shuttle/lifeboat) +"bQ" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "16,0" + }, +/area/shuttle/lifeboat) +"cF" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "1,3" + }, +/area/shuttle/lifeboat) +"dL" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "23,5" + }, +/area/shuttle/lifeboat) +"eu" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "2,4" + }, +/area/shuttle/lifeboat) +"fc" = ( +/turf/open/shuttle/escapepod{ + icon_state = "floor8" + }, +/area/shuttle/lifeboat) +"fh" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "3,5" + }, +/area/shuttle/lifeboat) +"fL" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,4" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"fV" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "7,6" + }, +/area/shuttle/lifeboat) +"fW" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "24,2" + }, +/area/shuttle/lifeboat) +"gV" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "26,1" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"gW" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "24,3" + }, +/area/shuttle/lifeboat) +"hA" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "3,6" + }, +/area/shuttle/lifeboat) +"hF" = ( +/turf/open/shuttle/lifeboat{ + icon_state = "plate" + }, +/area/shuttle/lifeboat) +"hK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat{ + id = "Boat3-D1"; + throw_dir = 1 + }, +/turf/open/shuttle/lifeboat{ + icon_state = "test_floor4" + }, +/area/shuttle/lifeboat) +"iA" = ( +/obj/structure/bed/chair/dropship/passenger/shuttle_chair{ + dir = 1 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"kC" = ( +/turf/template_noop, +/area/space) +"lk" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "3,0" + }, +/area/shuttle/lifeboat) +"ms" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "1,5" + }, +/area/shuttle/lifeboat) +"mI" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "26,2" + }, +/area/shuttle/lifeboat) +"nl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/lifeboat{ + dir = 8 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"nQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ + pixel_x = -23; + pixel_y = 27 + }, +/obj/structure/machinery/cm_vending/sorted/supplies/lifeboat{ + pixel_x = -8; + pixel_y = 27 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"pF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat{ + id = "Boat3-D2"; + throw_dir = 2 + }, +/turf/open/shuttle/lifeboat{ + icon_state = "test_floor4" + }, +/area/shuttle/lifeboat) +"pS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 8 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"pV" = ( +/turf/open/shuttle/lifeboat{ + icon_state = "test_floor4" + }, +/area/shuttle/lifeboat) +"qO" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "25,2" + }, +/area/shuttle/lifeboat) +"rZ" = ( +/obj/structure/bed/chair/dropship/passenger/shuttle_chair{ + dir = 4; + name = "pilot seat" + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"sl" = ( +/turf/closed/shuttle/lifeboat, +/area/shuttle/lifeboat) +"tq" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "24,1" + }, +/area/shuttle/lifeboat) +"tS" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "18,0" + }, +/area/shuttle/lifeboat) +"vd" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "24,5" + }, +/area/shuttle/lifeboat) +"vi" = ( +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"vk" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "1,1" + }, +/area/shuttle/lifeboat) +"vV" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "3,1" + }, +/area/shuttle/lifeboat) +"wi" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,5" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"wC" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "25,5" + }, +/area/shuttle/lifeboat) +"wJ" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "26,3" + }, +/area/shuttle/lifeboat) +"xP" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "24,6" + }, +/area/shuttle/lifeboat) +"yo" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "24,0" + }, +/area/shuttle/lifeboat) +"yT" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "window2" + }, +/area/shuttle/lifeboat) +"Ar" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "2,3" + }, +/area/shuttle/lifeboat) +"AG" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "26,4" + }, +/area/shuttle/lifeboat) +"BG" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,6" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Cn" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "2,1" + }, +/area/shuttle/lifeboat) +"Cw" = ( +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_x = 8; + pixel_y = 27 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"CO" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "7,0" + }, +/area/shuttle/lifeboat) +"Ee" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "2,2" + }, +/area/shuttle/lifeboat) +"Ej" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "23,1" + }, +/area/shuttle/lifeboat) +"FN" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "25,0" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"GV" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "1,4" + }, +/area/shuttle/lifeboat) +"HH" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "25,4" + }, +/area/shuttle/lifeboat) +"Ii" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "6,1" + }, +/area/shuttle/lifeboat) +"Iz" = ( +/turf/closed/shuttle/lifeboat/transparent, +/area/shuttle/lifeboat) +"Js" = ( +/turf/open/shuttle/lifeboat{ + icon_state = "plating_striped" + }, +/area/shuttle/lifeboat) +"Kb" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "24,4" + }, +/area/shuttle/lifeboat) +"Kv" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "25,1" + }, +/area/shuttle/lifeboat) +"LW" = ( +/obj/structure/machinery/cm_vending/sorted/supplies/lifeboat{ + pixel_x = -12; + pixel_y = 27 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"MA" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "22,0" + }, +/area/shuttle/lifeboat) +"MJ" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,3" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"ML" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "6,0" + }, +/area/shuttle/lifeboat) +"MY" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "1,0" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Nm" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,0" + }, +/obj/docking_port/mobile/crashable/lifeboat/compact, +/turf/template_noop, +/area/shuttle/lifeboat) +"Oi" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "6,5" + }, +/area/shuttle/lifeboat) +"Qq" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "26,5" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Rn" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "23,0" + }, +/area/shuttle/lifeboat) +"Ta" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,2" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Tj" = ( +/obj/structure/bed/chair/dropship/passenger/shuttle_chair{ + dir = 4 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"TU" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "0,1" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Up" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "23,6" + }, +/area/shuttle/lifeboat) +"UQ" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "2,6" + }, +/area/shuttle/lifeboat) +"Wa" = ( +/obj/structure/bed/chair/dropship/passenger/shuttle_chair, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"XL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 8 + }, +/turf/open/shuttle/lifeboat, +/area/shuttle/lifeboat) +"XM" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "25,6" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Yb" = ( +/turf/open/shuttle/lifeboat{ + dir = 1; + icon_state = "plating_striped" + }, +/area/shuttle/lifeboat) +"Yf" = ( +/obj/structure/prop/invuln/dropship_parts/lifeboat{ + icon_state = "1,6" + }, +/turf/template_noop, +/area/shuttle/lifeboat) +"Yi" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "2,5" + }, +/area/shuttle/lifeboat) +"YB" = ( +/turf/closed/shuttle/lifeboat{ + icon_state = "6,6" + }, +/area/shuttle/lifeboat) +"YL" = ( +/turf/closed/shuttle/lifeboat/transparent{ + icon_state = "25,3" + }, +/area/shuttle/lifeboat) + +(1,1,1) = {" +BG +wi +fL +MJ +Ta +TU +Nm +"} +(2,1,1) = {" +Yf +ms +GV +cF +bP +vk +MY +"} +(3,1,1) = {" +UQ +Yi +eu +Ar +Ee +Cn +sl +"} +(4,1,1) = {" +hA +fh +Tj +Tj +Tj +vV +lk +"} +(5,1,1) = {" +yT +Wa +vi +fc +vi +iA +Iz +"} +(6,1,1) = {" +yT +Wa +vi +fc +vi +iA +Iz +"} +(7,1,1) = {" +YB +Oi +Cw +hF +vi +Ii +ML +"} +(8,1,1) = {" +fV +fh +LW +hF +vi +vV +CO +"} +(9,1,1) = {" +hK +Yb +vi +fc +vi +Js +pF +"} +(10,1,1) = {" +pV +Yb +vi +fc +vi +Js +pV +"} +(11,1,1) = {" +pV +Yb +vi +fc +vi +Js +pV +"} +(12,1,1) = {" +YB +Oi +vi +hF +vi +Ii +bQ +"} +(13,1,1) = {" +fV +fh +nQ +hF +vi +vV +tS +"} +(14,1,1) = {" +yT +Wa +vi +fc +vi +iA +Iz +"} +(15,1,1) = {" +yT +Wa +vi +fc +vi +iA +Iz +"} +(16,1,1) = {" +YB +Oi +rZ +rZ +rZ +Ii +MA +"} +(17,1,1) = {" +Up +dL +XL +nl +pS +Ej +Rn +"} +(18,1,1) = {" +xP +vd +Kb +gW +fW +tq +yo +"} +(19,1,1) = {" +XM +wC +HH +YL +qO +Kv +FN +"} +(20,1,1) = {" +kC +Qq +AG +wJ +mI +gV +kC +"} diff --git a/tgui/packages/tgui/interfaces/ListInputModal.tsx b/tgui/packages/tgui/interfaces/ListInputModal.tsx index 7cb207c9dc..99023d3c1d 100644 --- a/tgui/packages/tgui/interfaces/ListInputModal.tsx +++ b/tgui/packages/tgui/interfaces/ListInputModal.tsx @@ -8,22 +8,15 @@ import { Window } from '../layouts'; type ListInputData = { init_value: string; items: string[]; - large_buttons: boolean; message: string; timeout: number; title: string; + theme: string; }; export const ListInputModal = (props, context) => { const { act, data } = useBackend(context); - const { - items = [], - message = '', - init_value, - large_buttons, - timeout, - title, - } = data; + const { items = [], message = '', init_value, timeout, title, theme } = data; const [selected, setSelected] = useLocalState( context, 'selected', @@ -103,15 +96,14 @@ export const ListInputModal = (props, context) => { item?.toLowerCase().includes(searchQuery.toLowerCase()) ); // Dynamically changes the window height based on the message. - const windowHeight = - 325 + Math.ceil(message.length / 3) + (large_buttons ? 5 : 0); + const windowHeight = 325 + Math.ceil(message.length / 3); // Grabs the cursor when no search bar is visible. if (!searchBarVisible) { setTimeout(() => document!.getElementById(selected.toString())?.focus(), 1); } return ( - + {timeout && } { diff --git a/tgui/packages/tgui/interfaces/OverwatchConsole.js b/tgui/packages/tgui/interfaces/OverwatchConsole.js index 62d1b6ee0d..c3f33ec023 100644 --- a/tgui/packages/tgui/interfaces/OverwatchConsole.js +++ b/tgui/packages/tgui/interfaces/OverwatchConsole.js @@ -418,11 +418,8 @@ const SquadMonitor = (props, context) => { onClick={() => act('transfer_marine')}> Transfer Marine - }> diff --git a/tools/build/build.js b/tools/build/build.js index c145ed391e..65f88a9b60 100644 --- a/tools/build/build.js +++ b/tools/build/build.js @@ -170,6 +170,35 @@ export const YarnTarget = new Juke.Target({ executes: ({ get }) => yarn("install", get(CiParameter) && "--immutable"), }); +export const TgFontTarget = new Juke.Target({ + dependsOn: [YarnTarget], + inputs: [ + "tgui/.yarn/install-target", + "tgui/packages/tgfont/**/*.+(js|cjs|svg)", + "tgui/packages/tgfont/package.json", + ], + outputs: [ + "tgui/packages/tgfont/dist/tgfont.css", + "tgui/packages/tgfont/dist/tgfont.eot", + "tgui/packages/tgfont/dist/tgfont.woff2", + ], + executes: async () => { + await yarn("tgfont:build"); + fs.copyFileSync( + "tgui/packages/tgfont/dist/tgfont.css", + "tgui/packages/tgfont/static/tgfont.css" + ); + fs.copyFileSync( + "tgui/packages/tgfont/dist/tgfont.eot", + "tgui/packages/tgfont/static/tgfont.eot" + ); + fs.copyFileSync( + "tgui/packages/tgfont/dist/tgfont.woff2", + "tgui/packages/tgfont/static/tgfont.woff2" + ); + }, +}); + export const TguiTarget = new Juke.Target({ dependsOn: [YarnTarget], inputs: [ @@ -283,8 +312,6 @@ export const CleanTarget = new Juke.Target({ dependsOn: [TguiCleanTarget], executes: async () => { Juke.rm("*.{dmb,rsc}"); - Juke.rm("*.mdme*"); - Juke.rm("*.m.*"); Juke.rm("maps/templates.dm"); }, }); diff --git a/tools/build/lib/byond.js b/tools/build/lib/byond.js index 8b6f081c1c..2d186e2254 100644 --- a/tools/build/lib/byond.js +++ b/tools/build/lib/byond.js @@ -139,14 +139,47 @@ export const DreamMaker = async (dmeFile, options = {}) => { throw err; } }; - testOutputFile(`${dmeBaseName}.dmb`); - testOutputFile(`${dmeBaseName}.rsc`); - const runWithWarningChecks = async (dmeFile, args) => { - const execReturn = await Juke.exec(dmeFile, args); + + const testDmVersion = async (dmPath) => { + const execReturn = await Juke.exec(dmPath, [], { + silent: true, + throw: false, + }); + const version = execReturn.combined.match( + `DM compiler version (\\d+)\\.(\\d+)` + ); + if (version == null) { + Juke.logger.error( + `Unexpected DreamMaker return, ensure "${dmPath}" is correct DM path.` + ); + throw new Juke.ExitCode(1); + } + const requiredMajorVersion = 515; + const requiredMinorVersion = 1597; // First with -D switch functionality + const major = Number(version[1]); + const minor = Number(version[2]); if ( - options.warningsAsErrors && - execReturn.combined.match(/\d+:warning: /) + major < requiredMajorVersion || + (major == requiredMajorVersion && minor < requiredMinorVersion) ) { + Juke.logger.error( + `${requiredMajorVersion}.${requiredMinorVersion} DM version required` + ); + throw new Juke.ExitCode(1); + } + }; + + await testDmVersion(dmPath); + testOutputFile(`${dmeBaseName}.dmb`); + testOutputFile(`${dmeBaseName}.rsc`); + const runWithWarningChecks = async (dmPath, args) => { + const execReturn = await Juke.exec(dmPath, args); + const ignoredWarningCodes = options.ignoreWarningCodes ?? []; + const reg = + ignoredWarningCodes.length > 0 + ? new RegExp(`\d+:warning: (?!(${ignoredWarningCodes.join("|")}))`) + : /\d+:warning: /; + if (options.warningsAsErrors && execReturn.combined.match(reg)) { Juke.logger.error(`Compile warnings treated as errors`); throw new Juke.ExitCode(2); } @@ -156,26 +189,11 @@ export const DreamMaker = async (dmeFile, options = {}) => { const { defines } = options; if (defines && defines.length > 0) { Juke.logger.info("Using defines:", defines.join(", ")); - try { - const injectedContent = defines.map((x) => `#define ${x}\n`).join(""); - fs.writeFileSync(`${dmeBaseName}.m.dme`, injectedContent); - const dmeContent = fs.readFileSync(`${dmeBaseName}.dme`); - fs.appendFileSync(`${dmeBaseName}.m.dme`, dmeContent); - await runWithWarningChecks(dmPath, [`${dmeBaseName}.m.dme`]); - fs.writeFileSync( - `${dmeBaseName}.dmb`, - fs.readFileSync(`${dmeBaseName}.m.dmb`) - ); - fs.writeFileSync( - `${dmeBaseName}.rsc`, - fs.readFileSync(`${dmeBaseName}.m.rsc`) - ); - } finally { - Juke.rm(`${dmeBaseName}.m.*`); - } - } else { - await runWithWarningChecks(dmPath, [dmeFile]); } + await runWithWarningChecks(dmPath, [ + ...defines.map((def) => `-D${def}`), + dmeFile, + ]); }; /** diff --git a/tools/ci/download_od.sh b/tools/ci/download_od.sh deleted file mode 100644 index 024f93f928..0000000000 --- a/tools/ci/download_od.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -set -eo pipefail - -if [ -z "${OPENDREAM_VERSION+x}" ]; then - source dependencies.sh -fi - -git clone https://github.com/OpenDreamProject/OpenDream.git ~/OpenDream -cd ~/OpenDream -git checkout tags/v${OPENDREAM_VERSION} -git submodule update --init --recursive diff --git a/tools/ci/run_od.sh b/tools/ci/run_od.sh deleted file mode 100644 index 3eeac59073..0000000000 --- a/tools/ci/run_od.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -set -eo pipefail - -dotnet ~/OpenDream/DMCompiler/bin/Release/net7.0/DMCompiler.dll --suppress-unimplemented colonialmarines.dme diff --git a/tools/ci/setup_od.sh b/tools/ci/setup_od.sh deleted file mode 100644 index 6d2ec17068..0000000000 --- a/tools/ci/setup_od.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -set -eo pipefail - -cd ~/OpenDream - -dotnet restore -dotnet build -c Release